diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-25 14:12:05 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-25 14:12:05 -0500 |
commit | 34d992d75ea2b7f7c663dab6731ae819c4c54001 (patch) | |
tree | f29ae8162c01ec5cf3629cfd64a6502102acacd3 /src | |
parent | f15968207ae17734f8caf623e9be7cc51994aee8 (diff) |
modified glm; added pedantic flag
Diffstat (limited to 'src')
-rw-r--r-- | src/ui.cpp | 3 | ||||
-rw-r--r-- | src/world.cpp | 13 |
2 files changed, 14 insertions, 2 deletions
@@ -571,7 +571,8 @@ namespace ui { */ void waitForDialog(void) { - while (dialogBoxExists); + while (dialogBoxExists) + std::this_thread::sleep_for(std::chrono::milliseconds(1)); } void waitForCover(void) { diff --git a/src/world.cpp b/src/world.cpp index a0c5641..4a946d7 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -844,6 +844,14 @@ void WorldSystem::render(void) std::vector<std::pair<vec2,vec3>> c; for (int i = iStart; i < iEnd; i++) { + + // world switching changes world data size, render doesn't know + // because it's in a different thread, I guess. make sure we don't + // die: + if (i > static_cast<int>(world.data.size())) + return; // death for a frame is okay, right? + + if (world.data[i].groundHeight <= 0) { // TODO holes (andy) world.data[i].groundHeight = GROUND_HEIGHT_MINIMUM - 1; glColor4ub(0, 0, 0, 255); @@ -898,6 +906,10 @@ void WorldSystem::render(void) std::vector<GLfloat> grasst; for (int i = iStart; i < iEnd; i++) { + + if (i > static_cast<int>(world.data.size())) + return; // see dirt rendering + auto wd = world.data[i]; auto gh = wd.grassHeight; @@ -1185,7 +1197,6 @@ void WorldSystem::detect(entityx::TimeDelta dt) void WorldSystem::goWorldRight(Position& p, Solid &d) { if (!(world.toRight.empty()) && (p.x + d.width > world.startX * -1 - HLINES(15))) { - BREAKPOINT; ui::toggleBlack(); ui::waitForCover(); auto file = world.toRight; |