aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-26 12:39:22 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-26 12:39:22 -0500
commit21ce3f06312a02c23d6b3c89f64f84222f54fe6d (patch)
tree391236913182369a0331da03002ce8bb7b567f51 /main.cpp
parent109f28d7fe4626dcb0bff3ee8410b0c1d26d869c (diff)
optimizing work
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp73
1 files changed, 34 insertions, 39 deletions
diff --git a/main.cpp b/main.cpp
index 2205897..982d70b 100644
--- a/main.cpp
+++ b/main.cpp
@@ -28,6 +28,9 @@ using namespace tinyxml2;
#include <fstream>
#include <mutex>
+#include <chrono>
+
+using namespace std::literals::chrono_literals;
/* ----------------------------------------------------------------------------
** Variables section
@@ -63,9 +66,6 @@ void logic(void);
// handles all rendering operations
void render(void);
-// takes care of *everything*
-void mainLoop(void);
-
/*******************************************************************************
** MAIN ************************************************************************
********************************************************************************/
@@ -179,9 +179,6 @@ int main(int argc, char *argv[])
pdat.close();
}
- if (worldDontReallyRun)
- goto EXIT_ROUTINE;
-
if (!worldActuallyUseThisXMLFile.empty()) {
game::engine.getSystem<WorldSystem>()->load(worldActuallyUseThisXMLFile);
} else {
@@ -198,30 +195,41 @@ int main(int argc, char *argv[])
ui::menu::init();
- // the main loop, in all of its gloriousness..
- std::thread([&]{
- while (game::engine.shouldRun()) {
- mainLoop();
- std::this_thread::sleep_for(std::chrono::milliseconds(1));
- }
- }).detach();
- // the debug loop, gets debug screen values
- std::thread([&]{
- while (game::engine.shouldRun()) {
- fps = 1000 / game::time::getDeltaTime();
-// debugY = player->loc.y;
- std::this_thread::sleep_for(std::chrono::seconds(1));
- }
- }).detach();
+ if (!worldDontReallyRun) {
+ // the main loop, in all of its gloriousness..
+ std::thread([&] {
+ const bool &run = game::engine.shouldRun;
+ while (run) {
+ game::time::mainLoopHandler();
- while (game::engine.shouldRun()) {
- game::engine.render(0);
- render();
- }
+ if (game::time::tickHasPassed())
+ logic();
+
+ game::engine.update(game::time::getDeltaTime());
+
+ std::this_thread::sleep_for(1ms);
+ }
+ }).detach();
+
+ // the debug loop, gets debug screen values
+ std::thread([&] {
+ const bool &run = game::engine.shouldRun;
+ while (run) {
+ fps = 1000 / game::time::getDeltaTime();
+// debugY = player->loc.y;
-EXIT_ROUTINE:
+ std::this_thread::sleep_for(1s);
+ }
+ }).detach();
+
+ const bool &run = game::engine.shouldRun;
+ while (run) {
+ game::engine.render(0);
+ render();
+ }
+ }
// put away the brice for later
game::briceSave();
@@ -242,19 +250,6 @@ EXIT_ROUTINE:
return 0; // Calls everything passed to atexit
}
-void mainLoop(void){
- game::time::mainLoopHandler();
-
- if (currentMenu) {
- return;
- } else {
- if (game::time::tickHasPassed())
- logic();
-
- game::engine.update(game::time::getDeltaTime());
- }
-}
-
void render() {
const auto SCREEN_WIDTH = game::SCREEN_WIDTH;
const auto SCREEN_HEIGHT = game::SCREEN_HEIGHT;