Skip to content
Snippets Groups Projects
Commit 6710bdae authored by Susan Yuen's avatar Susan Yuen
Browse files

Added some functions to graph and node

parent 8eb560bd
No related branches found
No related tags found
No related merge requests found
Showing
with 61 additions and 11 deletions
......@@ -21,7 +21,7 @@ namespace Controller
Texture2D backGround, unit1;
// Set the coordinates to draw the sprite at.
Vector2 spritePosition = new Vector2(50.0f, 50.0f);
Vector2 spritePosition = new Vector2(32.0f, 32.0f);
// Store some information about the sprite's motion.
// Vector2 spriteSpeed = new Vector2(50.0f, 50.0f);
......
......@@ -7,5 +7,20 @@ namespace Model
{
class Graph
{
private int numberOfNodes; // total number of nodes in the graph
private int width; // width of the graph (by number of nodes)
private int height; // height of the graph (by number of nodes)
public Graph(int x, int y)
{
this.width = x;
this.height = y;
numberOfNodes = x * y;
}
public int getNumberOfNodes()
{
return numberOfNodes;
}
}
}
......@@ -7,5 +7,13 @@ namespace Model
{
class MapFunction
{
public LinkedList<Node> pathFinder(Graph graph, Node start, Node end)
{
LinkedList<Node> path = new LinkedList<Node>();
path.AddFirst(start);
//TODO: finds path to highlight for unit movement; returns list of nodes representing the path from start node to end node
path.AddLast(end);
return path;
}
}
}
......@@ -7,5 +7,27 @@ namespace Model
{
class Node
{
private int movability; // index of how far a unit can move within the tile
private bool isObstacle; // indicates whether a unit can stand inside the tile
public void setMovability(int m)
{
movability = m;
}
public void setIsObstacle(bool b)
{
isObstacle = b;
}
public int getMovability()
{
return movability;
}
public bool getIsObstacle()
{
return isObstacle;
}
}
}
......@@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Blaze_Brigade {
namespace View {
using System;
......
......@@ -7,5 +7,9 @@ namespace Model
{
interface Weapon
{
int getPhysicalDamage();
int getMagicDamage();
int getCritRate();
int getHitRate();
}
}
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -57,3 +57,4 @@ C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\ob
C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\obj\x86\Debug\Blaze_Brigade.exe
C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\obj\x86\Debug\Blaze_Brigade.pdb
C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\charSprite.xnb
C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\charSprite.xnb
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -7,8 +7,8 @@
<Importer>TextureImporter</Importer>
<Processor>TextureProcessor</Processor>
<Options>None</Options>
<Output>C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\Game Map.xnb</Output>
<Time>2015-07-22T20:51:38-04:00</Time>
<Output>C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\Game Map.xnb</Output>
<Time>2016-10-18T12:43:29.1631294-04:00</Time>
</Item>
<Item>
<Source>charSprite.png</Source>
......@@ -16,8 +16,8 @@
<Importer>TextureImporter</Importer>
<Processor>TextureProcessor</Processor>
<Options>None</Options>
<Output>C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\charSprite.xnb</Output>
<Time>2016-10-18T13:51:08.0660613-04:00</Time>
<Output>C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\charSprite.xnb</Output>
<Time>2016-10-18T14:25:36.1902902-04:00</Time>
</Item>
<BuildSuccessful>true</BuildSuccessful>
<Settings>
......@@ -26,10 +26,10 @@
<TargetProfile>Reach</TargetProfile>
<BuildConfiguration>Debug</BuildConfiguration>
<CompressContent>false</CompressContent>
<RootDirectory>C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_BrigadeContent\</RootDirectory>
<LoggerRootDirectory>C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\</LoggerRootDirectory>
<IntermediateDirectory>C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\obj\x86\Debug\</IntermediateDirectory>
<OutputDirectory>C:\Users\chaos\Documents\Git\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\</OutputDirectory>
<RootDirectory>C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_BrigadeContent\</RootDirectory>
<LoggerRootDirectory>C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\</LoggerRootDirectory>
<IntermediateDirectory>C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\obj\x86\Debug\</IntermediateDirectory>
<OutputDirectory>C:\Users\Susan\Documents\GitHub\Blaze-Brigade\src\Blaze-Brigade\Blaze_Brigade\bin\x86\Debug\Content\</OutputDirectory>
</Settings>
<Assemblies>
<Assembly>
......@@ -58,7 +58,7 @@
</Assembly>
<Assembly>
<Key>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key>
<Value>2016-10-18T10:51:30.2111439-04:00</Value>
<Value>2016-10-18T11:11:33.4375035-04:00</Value>
</Assembly>
</Assemblies>
</Asset>
......
No preview for this file type
src/Blaze-Brigade/Blaze_BrigadeContent/Game Map.png

376 KiB | W: | H:

src/Blaze-Brigade/Blaze_BrigadeContent/Game Map.png

76.2 KiB | W: | H:

src/Blaze-Brigade/Blaze_BrigadeContent/Game Map.png
src/Blaze-Brigade/Blaze_BrigadeContent/Game Map.png
src/Blaze-Brigade/Blaze_BrigadeContent/Game Map.png
src/Blaze-Brigade/Blaze_BrigadeContent/Game Map.png
  • 2-up
  • Swipe
  • Onion skin
No preview for this file type
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