diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/world.cpp b/src/world.cpp index 7b82d32..8c15ccc 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -55,7 +55,6 @@ World::World(sol::object param) // If a generate function is defined, call it if (generate != sol::nil) generate(this); - std::cout << "flamingo" << std::endl; } // TODO @@ -121,12 +120,22 @@ unsigned int World::setSeed(unsigned int s) /* PHYSICS */ double World::getHeight(double x, double y, double z) { - (void)x; (void)y; - (void)z; - - double Y = 10.0f; - return Y; + double Y = 0.0f; + for (auto &l : solidLayers) { + if (z == l.drawLayer) { + int wx = x*unitSize; + + int h = 0.0; + for (auto b : l.hitbox[wx]) { + if (b) + Y = h; + h++; + } + return Y; + } + } + return 0; } /********* |