]> Dogcows Code - chaz/carfire/blob - CarFire/CarFire/CarFire/MovementManager.cs
better player movement (walls are no longer sticky)
[chaz/carfire] / CarFire / CarFire / CarFire / MovementManager.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Microsoft.Xna.Framework;
6
7 namespace CarFire
8 {
9 /// <summary>
10 /// A type for a direction, including diagonals.
11 /// </summary>
12 public enum Direction
13 {
14 Down, // Default direction is down.
15 Left,
16 UpperLeft,
17 Up,
18 UpperRight,
19 Right,
20 LowerRight,
21 LowerLeft,
22 None
23 }
24
25
26 /// <summary>
27 /// A class to manage the motion of objects on a grid of cells.
28 /// Each update you can pass a direction and the manager will move
29 /// the position to that point while also enforcing a speed limit.
30 /// This class does not detect collisions, so care must be taken
31 /// to only pass directions to a walkable cell during an update.
32 /// </summary>
33 public class MovementManager
34 {
35 #region Public Properties
36
37 /// <summary>
38 /// Get the current position in map coordinates. This is the
39 /// smooth, interpolated set of coordinates.
40 /// </summary>
41 public Vector2 Position { get { return mPosition; } }
42
43 /// <summary>
44 /// Get the grid coordinates where the object is at or
45 /// is moving to.
46 /// </summary>
47 public Point Coordinates { get { return mCoordinates; } }
48
49 /// <summary>
50 /// Get and set the speed of movement in grid cells / second.
51 /// </summary>
52 public float Speed;
53
54 /// <summary>
55 /// Get whether or not the object is moving.
56 /// </summary>
57 public bool IsMoving { get { return mIsMoving; } }
58
59 /// <summary>
60 /// Get the direction the object is facing.
61 /// </summary>
62 public Direction Direction { get { return mDirection; } }
63
64 #endregion
65
66
67 #region Public Methods
68
69 /// <summary>
70 /// Construct a movement manager with the initial position of
71 /// the thing you want to track.
72 /// </summary>
73 /// <param name="position">Grid coordinates.</param>
74 public MovementManager(Point position)
75 {
76 mPosition = new Vector2((float)position.X, (float)position.Y);
77 mCoordinates = position;
78 mLastCoordinates = position;
79 Speed = 1.0f;
80 }
81
82 /// <summary>
83 /// Construct a movement manager with the initial position of
84 /// the thing you want to track and its speed.
85 /// </summary>
86 /// <param name="position">Grid coordinates.</param>
87 /// <param name="speed">Speed: Grid cells per second.</param>
88 public MovementManager(Point position, float speed)
89 {
90 mPosition = new Vector2((float)position.X, (float)position.Y);
91 mCoordinates = position;
92 mLastCoordinates = position;
93 Speed = speed;
94 }
95
96
97 /// <summary>
98 /// Update the movement manager with the timeslice and no directions.
99 /// </summary>
100 /// <param name="timeSpan">The timeslice.</param>
101 public void Update(TimeSpan timeSpan)
102 {
103 Update(timeSpan, false, false, false, false);
104 }
105
106 /// <summary>
107 /// Update the movement manager with the timeslice and a direction.
108 /// </summary>
109 /// <param name="timeSpan">The timeslice.</param>
110 /// <param name="direction">Direction you want to move.</param>
111 public void Update(TimeSpan timeSpan, Direction direction)
112 {
113 if (direction == Direction.Left) Update(timeSpan, true, false, false, false);
114 else if (direction == Direction.UpperLeft) Update(timeSpan, true, false, true, false);
115 else if (direction == Direction.Up) Update(timeSpan, false, false, true, false);
116 else if (direction == Direction.UpperRight) Update(timeSpan, false, true, true, false);
117 else if (direction == Direction.Right) Update(timeSpan, false, true, false, false);
118 else if (direction == Direction.LowerRight) Update(timeSpan, false, true, false, true);
119 else if (direction == Direction.Down) Update(timeSpan, false, false, false, true);
120 else if (direction == Direction.LowerLeft) Update(timeSpan, true, false, false, true);
121 else Update(timeSpan);
122 }
123
124 /// <summary>
125 /// Update the movement manager with the timeslice and the directions
126 /// the object is supposed to go. The directions will be ignored if the
127 /// object is currently in transit from one cell to another.
128 /// </summary>
129 /// <param name="timeSpan">The timeslice.</param>
130 /// <param name="moveLeft">Want to move left.</param>
131 /// <param name="moveRight">Want to move right.</param>
132 /// <param name="moveUp">Want to move up.</param>
133 /// <param name="moveDown">Want to move down.</param>
134 public void Update(TimeSpan timeSpan, bool moveLeft, bool moveRight, bool moveUp, bool moveDown)
135 {
136 float passedTime = (float)timeSpan.TotalSeconds;
137
138 bool requestMove = (moveLeft ^ moveRight) || (moveUp ^ moveDown);
139 if (!mIsMoving && requestMove)
140 {
141 mTimeAccumulator = passedTime;
142
143 mIsMoving = true;
144 UpdateCoordinates(moveLeft, moveRight, moveUp, moveDown);
145 mDirection = GetDirection(moveLeft, moveRight, moveUp, moveDown);
146
147 RecalculatePosition(mTimeAccumulator / mInverseSpeed);
148 }
149 else if (mIsMoving)
150 {
151 mTimeAccumulator += passedTime;
152
153 float alpha = mTimeAccumulator / mInverseSpeed;
154 if (alpha >= 1.0f)
155 {
156 if (requestMove)
157 {
158 mTimeAccumulator = mTimeAccumulator - mInverseSpeed;
159 alpha = mTimeAccumulator / mInverseSpeed;
160
161 UpdateCoordinates(moveLeft, moveRight, moveUp, moveDown);
162 mDirection = GetDirection(moveLeft, moveRight, moveUp, moveDown);
163 }
164 else
165 {
166 mIsMoving = false;
167 alpha = 1.0f;
168 }
169 }
170
171 RecalculatePosition(alpha);
172 }
173 }
174 public void LockUpdate(TimeSpan timeSpan, bool moveLeft, bool moveRight, bool moveUp, bool moveDown)
175 {
176 float passedTime = (float)timeSpan.TotalSeconds;
177 if (moveLeft == true || moveRight == true || moveUp == true || moveDown == true)
178 {
179 mDirection = GetDirection(moveLeft, moveRight, moveUp, moveDown);
180 }
181 if (mIsMoving)
182 {
183 mTimeAccumulator += passedTime;
184
185 float alpha = mTimeAccumulator / mInverseSpeed;
186 if (alpha >= 1.0f)
187 {
188 mIsMoving = false;
189 alpha = 1.0f;
190 }
191
192 RecalculatePosition(alpha);
193 }
194 }
195
196
197 /// <summary>
198 /// Helper method to get neighbor cells from a point and directions.
199 /// </summary>
200 /// <param name="point">The point.</param>
201 /// <param name="left">To the left.</param>
202 /// <param name="right">To the right.</param>
203 /// <param name="up">Above.</param>
204 /// <param name="down">Below.</param>
205 /// <returns>The neighbor cell coordinates.</returns>
206 public static Point GetNeighbor(Point point, bool left, bool right, bool up, bool down)
207 {
208 if (left) point.X--;
209 if (right) point.X++;
210 if (up) point.Y--;
211 if (down) point.Y++;
212 return point;
213 }
214
215 /// <summary>
216 /// Helper method to get the two neighbor cells of two nearby cells.
217 /// </summary>
218 /// <param name="a">A point.</param>
219 /// <param name="b">Another point.</param>
220 /// <returns>An array of two points representing the neighbor cells.</returns>
221 public static Point[] GetNeighbors(Point a, Point b)
222 {
223 Point[] neighbors = new Point[2];
224 neighbors[0] = new Point(a.X, b.Y);
225 neighbors[1] = new Point(b.X, a.Y);
226 return neighbors;
227 }
228
229
230 /// <summary>
231 /// Helper method to get a Direction type from directions.
232 /// </summary>
233 /// <param name="left">Left.</param>
234 /// <param name="right">Right.</param>
235 /// <param name="up">Up.</param>
236 /// <param name="down">Down.</param>
237 /// <returns>The direction.</returns>
238 public static Direction GetDirection(bool left, bool right, bool up, bool down)
239 {
240 if (left && !right)
241 {
242 if (up) return Direction.UpperLeft;
243 else if (down) return Direction.LowerLeft;
244 else return Direction.Left;
245 }
246 else if (right && !left)
247 {
248 if (up) return Direction.UpperRight;
249 else if (down) return Direction.LowerRight;
250 else return Direction.Right;
251 }
252 else if (up) return Direction.Up;
253 else if (down) return Direction.Down;
254 else return Direction.None;
255 }
256
257 /// <summary>
258 /// Helper method to get the general Direction type if you want to move
259 /// from one cell to another.
260 /// <param name="a">Starting point.</param>
261 /// <param name="b">Destination point.</param>
262 /// <returns>The direction toward the cell.</returns>
263 public static Direction GetDirection(Point a, Point b)
264 {
265 int dx = b.X - a.X;
266 int dy = b.Y - a.Y;
267
268 if (dx < 0)
269 {
270 if (dy < 0) return Direction.UpperLeft;
271 else if (dy > 0) return Direction.LowerLeft;
272 else return Direction.Left;
273 }
274 else if (dx > 0)
275 {
276 if (dy < 0) return Direction.UpperRight;
277 else if (dy > 0) return Direction.LowerRight;
278 else return Direction.Right;
279 }
280 else if (dy < 0) return Direction.Up;
281 else if (dy > 0) return Direction.Down;
282 else return Direction.None;
283 }
284
285 #endregion
286
287
288 #region Private Methods
289
290 void RecalculatePosition(float alpha)
291 {
292 //Console.WriteLine("last: " + mLastCoordinates + ", now: " + mCoordinates + ", alpha: " + alpha);
293 mPosition.X = (float)mLastCoordinates.X + alpha * ((float)mCoordinates.X - (float)mLastCoordinates.X);
294 mPosition.Y = (float)mLastCoordinates.Y + alpha * ((float)mCoordinates.Y - (float)mLastCoordinates.Y);
295 }
296
297 void UpdateCoordinates(bool moveLeft, bool moveRight, bool moveUp, bool moveDown)
298 {
299 mLastCoordinates = mCoordinates;
300 mCoordinates = GetNeighbor(mCoordinates, moveLeft, moveRight, moveUp, moveDown);
301
302 if ((moveLeft && moveUp) || (moveUp && moveRight) || (moveRight && moveDown) || (moveDown && moveLeft))
303 {
304 mInverseSpeed = 1.4f / Speed;
305 }
306 else
307 {
308 mInverseSpeed = 1.0f / Speed;
309 }
310 }
311
312 #endregion
313
314
315 #region Private Variables
316
317 Vector2 mPosition; // Position on the viewable map.
318 Point mCoordinates; // Position on the grid.
319 Point mLastCoordinates; // Last position on the grid.
320 float mInverseSpeed; // The time it takes to move from one cell to another.
321 float mTimeAccumulator; // Amount of time passed since last move.
322 bool mIsMoving; // Whether or not it is currently in the process of moving.
323 Direction mDirection; // The direction the object is facing.
324
325 #endregion
326 }
327 }
This page took 0.045691 seconds and 4 git commands to generate.