From 34d992d75ea2b7f7c663dab6731ae819c4c54001 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 25 Nov 2016 14:12:05 -0500 Subject: modified glm; added pedantic flag --- src/ui.cpp | 3 ++- src/world.cpp | 13 ++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ui.cpp b/src/ui.cpp index 40339a0..5939368 100644 --- a/src/ui.cpp +++ b/src/ui.cpp @@ -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> 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(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 grasst; for (int i = iStart; i < iEnd; i++) { + + if (i > static_cast(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; -- cgit v1.2.3