Exemplo n.º 1
0
        internal override void Execute()
        {
            Level      Level      = this.Device.GameMode.Level;
            GameObject GameObject = Level.GameObjectManager.Filter.GetGameObjectByPreciseId(this.BuildingID);

            if (GameObject != null)
            {
                if (GameObject is Building)
                {
                    Building Building = (Building)GameObject;
                    if (!Building.Constructing)
                    {
                        Logging.Error(this.GetType(), $"Tried to cancel the construction of a building which is not in construction with game ID {this.BuildingID}.");
                    }
                    else
                    {
                        Building.CancelConstruction();
                    }
                }
                else if (GameObject is Trap)
                {
                    Trap Trap = (Trap)GameObject;
                    if (!Trap.Constructing)
                    {
                        Logging.Error(this.GetType(), $"Tried to cancel the construction of a trap which is not in construction with game ID {this.BuildingID}.");
                    }
                    else
                    {
                        Trap.CancelConstruction();
                    }
                }
                else if (GameObject is Obstacle)
                {
                    Obstacle Obstacle = (Obstacle)GameObject;
                    if (!Obstacle.ClearingOnGoing)
                    {
                        Logging.Error(this.GetType(), $"Tried to cancel the clearing of an obstacle which is not in clearing with game ID {this.BuildingID}.");
                    }
                    else
                    {
                        Obstacle.CancelClearing();
                    }
                }
            }
            else
            {
                Logging.Error(this.GetType(), $"Unable to cancel the construction. The game object is null with game Id {this.BuildingID}.");
            }
        }