-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortal.cpp
More file actions
91 lines (76 loc) · 1.37 KB
/
Portal.cpp
File metadata and controls
91 lines (76 loc) · 1.37 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include "Portal.h"
Portal::Portal()
{
x = 0;
y = 0;
mode = GameMode::Cube;
}
Portal::Portal(int _x, int _y, GameMode _mode)
{
x = _x;
y = _y;
mode = _mode;
}
void Portal::Draw(void)
{
SetConsoleColor(GameModeToPortalColor(mode), ConsoleColor::Black);
GotoXY(x, y);
printf(")");
GotoXY(x, y + 1);
printf(")");
GotoXY(x, y + 2);
printf(")");
SetConsoleColor(ConsoleColor::White, ConsoleColor::Black);
}
GameMode Portal::GetMode(void)
{
return mode;
}
bool Portal::Intersects(int _x, int _y)
{
return _x == x && (_y == y || _y == y + 1 || _y == y + 2);
}
int Portal::GetX(void)
{
return x;
}
int Portal::GetY(void)
{
return y;
}
int Portal::GetGridX(int xOrigin)
{
return x - xOrigin;
}
int Portal::GetGridY(int yOrigin)
{
return abs(y - yOrigin);
}
ConsoleColor GameModeToPortalColor(GameMode mode)
{
switch (mode)
{
default:
case GameMode::Cube:
return ConsoleColor::LightGreen;
case GameMode::Ship:
return ConsoleColor::LightMagenta;
}
return ConsoleColor::LightGreen;
}
GameMode StringToGameMode(std::string s)
{
std::string sl = s;
std::transform(sl.begin(), sl.end(), sl.begin(), [](uint8_t ch) {
return std::tolower(ch);
});
if (sl == "cube")
{
return GameMode::Cube;
}
else if (sl == "ship")
{
return GameMode::Ship;
}
return GameMode::Cube;
}