aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-27 16:28:51 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-27 16:28:51 -0500
commit3437e928e978939aa4c85369ab597e08f00ab93b (patch)
tree761f06a34bd8de78440c31026cf2c96df1ccad4f /main.cpp
parent21ce3f06312a02c23d6b3c89f64f84222f54fe6d (diff)
world draw fix; offset fix
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/main.cpp b/main.cpp
index 982d70b..298fc6b 100644
--- a/main.cpp
+++ b/main.cpp
@@ -199,7 +199,7 @@ int main(int argc, char *argv[])
if (!worldDontReallyRun) {
// the main loop, in all of its gloriousness..
- std::thread([&] {
+ std::thread thMain ([&] {
const bool &run = game::engine.shouldRun;
while (run) {
game::time::mainLoopHandler();
@@ -211,10 +211,10 @@ int main(int argc, char *argv[])
std::this_thread::sleep_for(1ms);
}
- }).detach();
+ });
// the debug loop, gets debug screen values
- std::thread([&] {
+ std::thread thDebug ([&] {
const bool &run = game::engine.shouldRun;
while (run) {
fps = 1000 / game::time::getDeltaTime();
@@ -222,13 +222,17 @@ int main(int argc, char *argv[])
std::this_thread::sleep_for(1s);
}
- }).detach();
+ });
const bool &run = game::engine.shouldRun;
while (run) {
game::engine.render(0);
render();
}
+
+ thMain.join();
+ thDebug.join();
+ //game::engine.getSystem<WorldSystem>()->thAmbient.join();
}
// put away the brice for later
@@ -254,7 +258,8 @@ void render() {
const auto SCREEN_WIDTH = game::SCREEN_WIDTH;
const auto SCREEN_HEIGHT = game::SCREEN_HEIGHT;
- offset.x = game::engine.getSystem<PlayerSystem>()->getPosition().x;// + player->width / 2;
+ auto ps = game::engine.getSystem<PlayerSystem>();
+ offset.x = ps->getPosition().x + ps->getWidth() / 2;
const auto& worldWidth = game::engine.getSystem<WorldSystem>()->getWidth();
if (worldWidth < (int)SCREEN_WIDTH)