Skip to content
Snippets Groups Projects
Commit f4581ae0 authored by Trandinh Thien's avatar Trandinh Thien
Browse files

Added delay between each move, TODO: get sprite to update on move

parent e9f71f4b
No related branches found
No related tags found
No related merge requests found
Content\charSprite.xnb
Content\MenuImage.xnb
Content\Game_Map.xnb
Content\MenuImage.xnb
Content\attackableNode.xnb
Content\moveableNode.xnb
Content\attack.xnb
......
......@@ -6,6 +6,8 @@ using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework;
using Model;
using System.Threading;
using System.Diagnostics;
namespace Controller
{
......@@ -96,14 +98,60 @@ namespace Controller
int positionX = (int)Math.Floor(position.X / 32);
int positionY = (int)Math.Floor(position.Y / 32);
int currentX = gameFunction.getSelectedUnit().getPosition().Item1;
int currentY = gameFunction.getSelectedUnit().getPosition().Item2;
// if new position is different from old position, set unit to new position
if (!(gameFunction.getSelectedUnit().getPosition() == new Tuple<int, int>(positionX, positionY)))
{
gameFunction.getSelectedUnit().setPosition(positionX, positionY);
if (gameFunction.getSelectedUnit().getPosition().Item1 < positionX) {
for (currentX = gameFunction.getSelectedUnit().getPosition().Item1; currentX <= positionX; currentX++)
{
Thread.Sleep(500);
gameFunction.getSelectedUnit().setPosition(currentX, currentY);
Debug.Write("X is: " + currentX);
}
}else{
for (currentX = gameFunction.getSelectedUnit().getPosition().Item1; currentX >= positionX; currentX--)
{
Thread.Sleep(500);
gameFunction.getSelectedUnit().setPosition(currentX, currentY);
Debug.Write("X is: " + currentX);
}
}
if (gameFunction.getSelectedUnit().getPosition().Item2 < positionY)
{
for (currentY = gameFunction.getSelectedUnit().getPosition().Item2; currentY <= positionY; currentY++)
{
Thread.Sleep(500);
gameFunction.getSelectedUnit().setPosition(currentX, currentY);
Debug.Write("Y is: " + currentY);
}
}
else
{
for (currentY = gameFunction.getSelectedUnit().getPosition().Item2; currentY >= positionY; currentY--)
{
Thread.Sleep(500);
gameFunction.getSelectedUnit().setPosition(currentX, currentY);
Debug.Write("Y is: " + currentY);
}
}
gameFunction.getSelectedUnit().setClickedOn(false);
}
}
public void Draw(GameTime gametime)
{
}
public void setAnimating(bool animating)
{
isAnimating = animating;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment