Esempio n. 1
0
 public SceneManager()
 {
     IsSceneInitialized = false;
     CmdBinder.AddBinding <ChangeSceneCmd>(OnChangeScene);
     CmdBinder.AddBinding <SceneLoadedCmd>(OnSceneLoaded);
     CmdBinder.AddBinding <LoadNextSceneCmd>(OnLoadNextScene);
     Factory.Factory.SetConstructor <SceneView>(ConstructSceneView);
 }
Esempio n. 2
0
        public void Initialize()
        {
            // check for configuration file
            if (!LoadFromConfig())
            {
                CreateDefaultOptions();
            }

            CmdBinder.AddBinding <ApplyOptionsCmd>(OnApplyOptions);
            Framework.PushCommand(new ApplyOptionsCmd());
        }
Esempio n. 3
0
 public Player()
 {
     CmdBinder.AddBinding <PlayerEquipItemRequestCmd <TrinketItem> >(OnEquipItemRequest <TrinketItem>);
     CmdBinder.AddBinding <PlayerEquipItemRequestCmd <WeaponItem> >(OnEquipItemRequest <WeaponItem>);
     CmdBinder.AddBinding <PlayerEquipItemRequestCmd <ArmorItem> >(OnEquipItemRequest <ArmorItem>);
 }
Esempio n. 4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="diskAccess">If diskAccess is false EngineOptions will initialize to it's default values
 /// and never write or read itself from the disk (for web platform)</param>
 public App()
 {
     CmdBinder.AddBinding <ApplyOptionsCmd>(OnApplyOptions);
 }