aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-25 14:12:05 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-25 14:12:05 -0500
commit34d992d75ea2b7f7c663dab6731ae819c4c54001 (patch)
treef29ae8162c01ec5cf3629cfd64a6502102acacd3 /src
parentf15968207ae17734f8caf623e9be7cc51994aee8 (diff)
modified glm; added pedantic flag
Diffstat (limited to 'src')
-rw-r--r--src/ui.cpp3
-rw-r--r--src/world.cpp13
2 files changed, 14 insertions, 2 deletions
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<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;