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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
#include <ui_action.hpp>
#include <world.hpp>
#define ACTION_PROLOUGE { actioning = true; }
#define ACTION_EPILOUGE { actioning = false; actionHover = 0; }
extern World *currentWorld;
extern Arena *arena;
extern Player *player;
extern bool inBattle;
static std::vector<std::pair<std::string, vec3>> actionText = {
{"Attack", vec3 {0, 0, 0}},
{"Action", vec3 {0, 0, 0}},
{"Umm" , vec3 {0, 0, 0}}
};
void actionAttack(void);
void actionAction(void);
static std::vector<void (*)(void)> actionFunc = {
actionAttack,
actionAction,
nullptr,
};
static bool actionToggle = false, actioning = false;
static unsigned int actionHover = 0;
static Entity *nearEntity = nullptr, *lastEntity = nullptr;
namespace ui {
namespace action {
bool make = false;
// enables action ui
void enable(void) {
actionToggle = true;
}
// disables action ui
void disable(void) {
actionToggle = false;
if (lastEntity != nullptr)
lastEntity->canMove = true;
}
// draws the action ui
void draw(vec2 loc) {
unsigned int i = 1;
float y = loc.y;
if (!actionToggle)
return;
nearEntity = currentWorld->getNearInteractable(*player);
if (nearEntity == nullptr) {
if (lastEntity != nullptr) {
lastEntity->canMove = true;
lastEntity = nullptr;
}
return;
} else if (nearEntity != lastEntity) {
if (lastEntity != nullptr)
lastEntity->canMove = true;
lastEntity = nearEntity;
}
if (make) {
while(actioning);
if (!actionHover) {
make = false;
return;
}
if (actionFunc[actionHover - 1] != nullptr)
std::thread(actionFunc[actionHover - 1]).detach();
actionHover = 0;
} else {
nearEntity->canMove = false;
ui::drawBox(vec2 {loc.x - HLINES(11), loc.y}, vec2 {loc.x + HLINES(12), loc.y + actionText.size() * HLINES(8)});
for (auto &s : actionText) {
s.second.z = ui::putStringCentered((s.second.x = loc.x), (s.second.y = (y += fontSize * 1.15f)), s.first) / 2;
if (ui::mouse.x > s.second.x - s.second.z && ui::mouse.x < s.second.x + s.second.z &&
ui::mouse.y > s.second.y && ui::mouse.y < s.second.y + ui::fontSize) {
actionHover = i;
ui::setFontColor(255, 100, 100, 255);
ui::putStringCentered(s.second.x, s.second.y, s.first);
ui::setFontColor(255, 255, 255, 255);
}
i++;
}
ui::putStringCentered(loc.x, y + fontSize * 1.2f, nearEntity->name);
}
if (i == actionText.size())
actionHover = 0;
ui::setFontColor(255, 255, 255, 255);
make = false;
}
}
}
void actionAttack(void)
{
ACTION_PROLOUGE;
auto m = currentWorld->getNearInteractable(*player);
if (m->type == MOBT) {
if (!inBattle && m != nullptr) {
arena->fight(currentWorld, player, Mobp(m));
ui::toggleWhiteFast();
ui::waitForCover();
currentWorld = arena;
ui::toggleWhiteFast();
}
} else {
ui::dialogBox(player->name, "", false, "%s doesn't appear to be in the mood for fighting...", m->name.c_str());
}
ACTION_EPILOUGE;
}
void actionAction(void)
{
ACTION_PROLOUGE;
auto e = currentWorld->getNearInteractable(*player);
if (e->type == NPCT)
e->interact();
ACTION_EPILOUGE;
}
|