using System; using Ion.Storage; using Ion.Net.Connections; using Ion.Specialized.Utilities; using Ion.HabboHotel.Client; using Ion.HabboHotel.Habbos; using Ion.HabboHotel.Access; using Ion.HabboHotel.Messenger; using Ion.HabboHotel.Achievements; using Ion.HabboHotel.Catalog; namespace Ion.HabboHotel { /// /// Represents a multiuser, virtual hotel where users can create avatars, to chat with other users in spaces set up as 'rooms'. Users have the ability to create their own 'guestroom' as well, and they are able to decorate it with virtual furniture. /// public class HabboHotel { #region Fields private uint mVersion; // Modules private KeyValueDictionary mExternalTexts = null; private KeyValueDictionary mExternalVariables = null; private GameClientManager mClientManager = null; private HabboManager mHabboManager = null; private HabboAuthenticator mAuthenticator = null; private UserRightManager mUserRightManager = null; private AchievementManager mAchievementManager = null; private MessengerManager mMessengerManager = null; private Catalog.Catalog mCatalog; #endregion #region Properties /// /// Gets the version of the game client as a 32 bit unsigned integer. /// public uint Version { get { return mVersion; } } #endregion #region Constructors /// /// Constructs a Habbo Hotel environment and tries to initialize it. /// public HabboHotel() { // Try to parse version IonEnvironment.Configuration.TryParseUInt32("projects.habbo.client.version", out mVersion); // Initialize HabboHotel project modules mExternalTexts = new KeyValueDictionary("external_texts", "xkey", "xvalue"); mExternalVariables = new KeyValueDictionary("external_variables", "xkey", "xvalue"); mClientManager = new GameClientManager(); mHabboManager = new HabboManager(); mAuthenticator = new HabboAuthenticator(); mUserRightManager = new UserRightManager(20); mAchievementManager = new AchievementManager(); mMessengerManager = new MessengerManager(); mCatalog = new Catalog.Catalog(); // Start connection checker for clients mClientManager.StartConnectionChecker(); // Load external texts and external variables mExternalTexts.Reload(); mExternalVariables.Reload(); // Load user rights mUserRightManager.ReloadRights(); // Print that we are done! IonEnvironment.GetLog().WriteLine(string.Format("Initialized project 'Habbo Hotel' for version {0}.", mVersion)); } #endregion #region Methods public void Destroy() { // Clear clients if (GetClients() != null) { GetClients().Clear(); GetClients().StopConnectionChecker(); } IonEnvironment.GetLog().WriteLine(string.Format("Destroyed project 'Habbo Hotel' for version {0}.", mVersion)); } /// /// Returns the game client manager. /// public GameClientManager GetClients() { return mClientManager; } /// /// Returns the Habbo manager. /// public HabboManager GetHabbos() { return mHabboManager; } /// /// Returns the Habbo authenticator. /// public HabboAuthenticator GetAuthenticator() { return mAuthenticator; } /// /// Returns the UserRightManager instance. /// public UserRightManager GetUserRights() { return mUserRightManager; } /// /// Returns the AchievementManager instance. /// public AchievementManager GetAchievements() { return mAchievementManager; } /// /// Returns the MessengerManager instance. /// public MessengerManager GetMessenger() { return mMessengerManager; } /// /// Returns the Catalog instance. /// public Catalog.Catalog GetCatalog() { return mCatalog; } #endregion } }