Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Blaze-Brigade
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Susan Yuen
Blaze-Brigade
Commits
f4581ae0
Commit
f4581ae0
authored
8 years ago
by
Trandinh Thien
Browse files
Options
Downloads
Patches
Plain Diff
Added delay between each move, TODO: get sprite to update on move
parent
e9f71f4b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Blaze-Brigade/Blaze_Brigade/Blaze_Brigade.csproj.Debug.cachefile
+1
-1
1 addition, 1 deletion
...rigade/Blaze_Brigade/Blaze_Brigade.csproj.Debug.cachefile
src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs
+49
-1
49 additions, 1 deletion
src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs
with
50 additions
and
2 deletions
src/Blaze-Brigade/Blaze_Brigade/Blaze_Brigade.csproj.Debug.cachefile
+
1
−
1
View file @
f4581ae0
Content\charSprite.xnb
Content\MenuImage.xnb
Content\Game_Map.xnb
Content\MenuImage.xnb
Content\attackableNode.xnb
Content\moveableNode.xnb
Content\attack.xnb
...
...
This diff is collapsed.
Click to expand it.
src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs
+
49
−
1
View file @
f4581ae0
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment