-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathMoveCommand.cs
82 lines (68 loc) · 2.42 KB
/
MoveCommand.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using UnityEngine;
// A basic enum to describe our movement
public enum MoveDirection { up, down, left, right };
class MoveCommand : Command
{
private MoveDirection _direction;
private MoveCommandReceiver _receiver;
private float _distance;
private GameObject _gameObject;
//Constructor
public MoveCommand(MoveCommandReceiver reciever, MoveDirection direction, float distance, GameObject gameObjectToMove)
{
this._receiver = reciever;
this._direction = direction;
this._distance = distance;
this._gameObject = gameObjectToMove;
}
//Execute new command
public void Execute()
{
_receiver.MoveOperation(_gameObject, _direction, _distance);
}
//Undo last command
public void UnExecute()
{
_receiver.MoveOperation(_gameObject, InverseDirection(_direction), _distance);
}
//invert the direction for undo
private MoveDirection InverseDirection(MoveDirection direction)
{
switch (direction)
{
case MoveDirection.up:
return MoveDirection.down;
case MoveDirection.down:
return MoveDirection.up;
case MoveDirection.left:
return MoveDirection.right;
case MoveDirection.right:
return MoveDirection.left;
default:
Debug.LogError("Unknown MoveDirection");
return MoveDirection.up;
}
}
//So we can show this command in debug output easily
public override string ToString()
{
return _gameObject.name + " : " + MoveDirectionString(_direction) + " : " + _distance.ToString();
}
//Convert the MoveDirection enum to a string for debug
public string MoveDirectionString(MoveDirection direction)
{
switch (direction)
{
case MoveDirection.up:
return "up";
case MoveDirection.down:
return "down";
case MoveDirection.left:
return "left";
case MoveDirection.right:
return "right";
default:
return "unkown";
}
}
}