-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMap.cs
68 lines (66 loc) · 2.14 KB
/
Map.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
using SFML.System;
using SFML.Graphics;
namespace Raycaster
{
public class Map
{
List<Tile> Tiles { get; set; }
public int[,] WorldMap = new int[,]
{
{3, 2, 2, 3, 3, 3, 3, 3 },
{3, 0, 0, 3, 0, 0, 0, 3 },
{3, 0, 0, 0, 0, 0, 0, 3 },
{3, 0, 0, 3, 0, 0, 0, 3 },
{3, 3, 3, 3, 0, 0, 0, 2 },
{3, 0, 0, 0, 0, 3, 0, 2 },
{3, 0, 0, 3, 0, 0, 0, 3 },
{3, 3, 3, 3, 2, 2, 3, 3 }
};
private Vector2i size;
public Vector2i Size
{
get { return size; }
set { size = value; }
}
public Map()
{
this.Tiles = new List<Tile>();
Size = new Vector2i(WorldMap.GetLength(0), WorldMap.GetLength(1));
CreateMinimap();
}
public void CreateMinimap()
{
for (int i = 0; i < Size.X; i++)
{
for (int j = 0; j < Size.Y; j++)
{
Color color = Color.Black;
if (WorldMap[i, j] != 0)
color = Color.Red;
Tile tile = new Tile(new Vector2f(i, j), color);
Tiles.Add(tile);
}
}
}
public void DrawMinimap(RenderWindow window)
{
foreach (Tile tile in Tiles)
{
window.Draw(tile.Shape);
}
for (int i = 0; i < 8; i++)
{
Vertex[] line = {
new Vertex(new Vector2f(0, i * Tile.TILESIZE_Y), new Color(64, 64, 64, 255)),
new Vertex(new Vector2f(512, i * Tile.TILESIZE_Y), new Color(64, 64, 64, 255))
};
Vertex[] column = {
new Vertex(new Vector2f(i * Tile.TILESIZE_X, 0), new Color(64, 64, 64, 255)),
new Vertex(new Vector2f(i * Tile.TILESIZE_X, 512), new Color(64, 64, 64, 255))
};
window.Draw(line, PrimitiveType.Lines);
window.Draw(column, PrimitiveType.Lines);
}
}
}
}