Inheritance: FSO.Client.UI.Framework.UIContainer
Exemplo n.º 1
0
 private void UpdateWallsViewCallback(int mode)
 {
     Remove(SelWallsPanel);
     SelWallsPanel = null;
     Game.LotController.WallsMode = mode;
     UpdateWallsMode();
 }
Exemplo n.º 2
0
        public void SetMode(UCPMode mode)
        {
            var isLotMode  = mode == UCPMode.LotMode;
            var isCityMode = mode == UCPMode.CityMode;

            FirstFloorButton.Visible  = isLotMode;
            SecondFloorButton.Visible = isLotMode;

            LiveModeButton.Visible                = isLotMode;
            BuyModeButton.Visible                 = isLotMode;
            BuildModeButton.Visible               = isLotMode;
            HouseModeButton.Visible               = isLotMode;
            HouseViewSelectButton.Visible         = isLotMode;
            RotateClockwiseButton.Disabled        = isCityMode;
            RotateCounterClockwiseButton.Disabled = isCityMode;

            BackgroundMatchmaker.Visible = isCityMode;
            Background.Visible           = isLotMode;

            UpdateWallsMode();

            if (isCityMode && SelWallsPanel != null)
            {
                Remove(SelWallsPanel);
                SelWallsPanel = null;
            }
        }
Exemplo n.º 3
0
 private void WallsViewPopup(UIElement button)
 {
     if (SelWallsPanel == null)
     {
         SelWallsPanel   = new UISelectHouseView();
         SelWallsPanel.X = 31;
         SelWallsPanel.Y = 48;
         SelWallsPanel.OnModeSelection += new HouseViewSelection(UpdateWallsViewCallback);
         this.Add(SelWallsPanel);
     }
 }
Exemplo n.º 4
0
 void WallsViewPopup(UIElement button)
 {
     if (SelWallsPanel == null)
     {
         SelWallsPanel = new UISelectHouseView
         {
             X = 31,
             Y = 48
         };
         SelWallsPanel.OnModeSelection += new HouseViewSelection(UpdateWallsViewCallback);
         Add(SelWallsPanel);
     }
 }
Exemplo n.º 5
0
 private void WallsViewPopup(UIElement button)
 {
     if (SelWallsPanel == null)
     {
         SelWallsPanel = new UISelectHouseView();
         SelWallsPanel.X = 31;
         SelWallsPanel.Y = 48;
         SelWallsPanel.OnModeSelection += new HouseViewSelection(UpdateWallsViewCallback);
         this.Add(SelWallsPanel);
     }
 }
Exemplo n.º 6
0
 private void UpdateWallsViewCallback(int mode)
 {
     Remove(SelWallsPanel);
     SelWallsPanel = null;
     Game.LotController.WallsMode = mode;
     UpdateWallsMode();
 }
Exemplo n.º 7
0
        public void SetMode(UCPMode mode)
        {
            var isLotMode = mode == UCPMode.LotMode;
            var isCityMode = mode == UCPMode.CityMode;

            FirstFloorButton.Visible = isLotMode;
            SecondFloorButton.Visible = isLotMode;

            LiveModeButton.Visible = isLotMode;
            BuyModeButton.Visible = isLotMode;
            BuildModeButton.Visible = isLotMode;
            HouseModeButton.Visible = isLotMode;
            HouseViewSelectButton.Visible = isLotMode;
            RotateClockwiseButton.Disabled = isCityMode;
            RotateCounterClockwiseButton.Disabled = isCityMode;

            BackgroundMatchmaker.Visible = isCityMode;
            Background.Visible = isLotMode;

            UpdateWallsMode();

            if (isCityMode && SelWallsPanel != null)
            {
                Remove(SelWallsPanel);
                SelWallsPanel = null;
            }
        }