示例#1
0
        public override bool Update(int tick)
        {
            if (tasks != null && tasks.Any())
            {
                if (tasks.First().TaskComplete(this))
                {
                    tasks.RemoveAt(0);

                    if (tasks.Count == 0)
                    {
                        tasks = null;
                    }
                }
                if (tasks != null)
                {
                    tasks.First().StartTask(this);
                }
            }
            if (route.Count > 1)
            {
                //moves the robot with the chest
                this.Move(route[1]);
                if (this.chest != null)
                {
                    _chest.Move(this._x, this._y + 1, this._z);
                }
            }
            return(base.Update(tick));
        }
示例#2
0
 public void AssignChest(Chest chest)
 {
     if (chest.point == this.currentPoint)
     {
         chest.AssignPoint(null);
         this._chest = chest;
         _chest.Move(this._x, this._y + 1, this._z);
         needsUpdate = true;
     }
 }
示例#3
0
 public void AddChest(Chest chest)
 {
     _chests.Add(chest);
     chest.AssignPoint(null);
     chest.Move(this.x, this.y + 0.2m, this.z);
 }