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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
/**
* @file main.cpp
* The main file, where it all happens.
*/
// standard library includes
#include <chrono>
using namespace std::literals::chrono_literals;
// local library includes
#include <entityx/entityx.h>
// our own includes
#include <brice.hpp>
#include <config.hpp>
#include <common.hpp>
#include <engine.hpp>
#include <error.hpp>
#include <fileio.hpp>
#include <font.hpp>
#include <gametime.hpp>
#include <window.hpp>
#include <world.hpp>
#include <render.hpp>
#include <ui.hpp>
#include <inventory.hpp>
/**
* The currently used folder to look for XML files in.
*/
std::string xmlFolder = "./xml/";
/**
* The current center of the screen, updated in main render.
*/
vec2 offset;
/**
* The main program.
* Init, load, run. Die.
*/
int main(int argc, char *argv[])
{
static bool worldReset = false, worldDontReallyRun = false;
std::string worldActuallyUseThisXMLFile;
// handle command line args
if (argc > 1) {
for (int i = 1; i < argc; i++) {
std::string s = argv[i];
if (s == "--reset" || s == "-r")
worldReset = true;
else if (s == "--dontrun" || s == "-d")
worldDontReallyRun = true;
else if (s == "--xml" || s == "-x")
worldActuallyUseThisXMLFile = argv[i + 1];
}
}
//
// init the main game engine
//
game::engine.init();
// initialize the renderer
Render::init();
// start the random number generator
randInit(millis());
// load some saved data
game::briceLoad();
game::briceUpdate();
// read in all XML file names in the folder
std::list<std::string> xmlFiles;
if (getdir(std::string("./" + xmlFolder), xmlFiles))
UserError("Error reading XML files!!!");
// kill the world if needed
if (worldReset) {
for (const auto& s : xmlFiles) {
if (s.find(".dat", s.size() - 4) != std::string::npos) {
std::string re = xmlFolder;
re.append(s);
auto r = re.c_str();
std::cout << "Removing " << r << "...\n";
std::remove(r);
}
}
// TODO TODO TODO we do xml/*.dat now... kill that
game::briceClear();
}
// either load the given XML, or find one
if (!worldActuallyUseThisXMLFile.empty()) {
WorldSystem::load(worldActuallyUseThisXMLFile);
} else {
// load the first valid XML file for the world
for (const auto &xf : xmlFiles) {
if (xf[0] != '.') {
// read it in
std::cout << "File to load: " << xf << '\n';
WorldSystem::load(xf);
break;
}
}
}
/////////////////////////////
// //
// actually start the game //
// //
/////////////////////////////
game::engine.getSystem<InventorySystem>()->add("Hunters Bow", 1);
game::engine.getSystem<InventorySystem>()->add("Wood Sword", 1);
game::engine.getSystem<InventorySystem>()->add("Arrow", 198);
std::list<SDL_Event> eventQueue;
if (!worldDontReallyRun) {
// the main loop, in all of its gloriousness...
GameThread gtMain ([&] {
game::time::mainLoopHandler();
if (game::time::tickHasPassed()) {
// calculate the world shading value
extern int worldShade; // TODO kill
worldShade = 50 * sin((game::time::getTickCount() + (DAY_CYCLE / 2)) / (DAY_CYCLE / PI));
// increment game ticker
game::time::tick();
}
while (!eventQueue.empty()) {
game::events.emit<MainSDLEvent>(eventQueue.back());
eventQueue.pop_back();
}
game::engine.update(game::time::getDeltaTime());
std::this_thread::sleep_for(1ms);
});
static int fps = 0, fpsInternal = 0;
// the debug loop, gets debug screen values
GameThread gtDebug ([&] {
fps = fpsInternal, fpsInternal = 0;
std::this_thread::sleep_for(1s);
});
/*GameThread gtFade ([&] {
ui::fadeUpdate();
std::this_thread::sleep_for(20ms);
});*/
// the render loop, renders
const bool &run = game::engine.shouldRun;
while (run) {
fpsInternal++;
Render::render(fps);
SDL_Event e;
while (SDL_PollEvent(&e))
eventQueue.push_back(e);
}
// on game end, get back together
gtMain.stop();
gtDebug.stop();
//gtFade.stop();
//game::engine.getSystem<WorldSystem>()->thAmbient.join(); // segfault or something
}
// save
game::briceSave();
WorldSystem::save();
// exit
Mix_HaltMusic();
Mix_CloseAudio();
unloadTextures();
game::engine.getSystem<WindowSystem>()->die();
return 0; // Calls everything passed to atexit
}
|