diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-18 12:10:25 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-18 12:10:25 -0400 |
commit | 0e7f7791fd592f0240a30168a9a570c57b0f5880 (patch) | |
tree | be4e0a598112748030412c452e0a7c24f45ef665 /src/world.cpp | |
parent | 145d74e433216f8c17475685c553321ca4cbedf3 (diff) | |
parent | 2cedd39a90fdb0387783b50446b16732517fb651 (diff) |
adjust for world changes
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/src/world.cpp b/src/world.cpp index 9f69c45..93cf511 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -181,6 +181,31 @@ unsigned int World::setSeed(unsigned int s) return seed; } +/* PHYSICS */ +double World::getHeight(double x, double y, double z) +{ + unsigned int X = static_cast<unsigned int>(x); + unsigned int Z = static_cast<unsigned int>(z); + + double Y = 0.0; + try { + auto &d = data.at(Z).at(X); + for (int yi = d.size()-1; yi >= 0; yi--) { + if (d.at(yi) >= 0) { + if (!registry.at(d.at(yi)).passable) { + Y = static_cast<double>(yi); + Y += 1; + break; + } + } + } + } catch (...) { // If we get any errors, just let the character + return y; + } + + return Y; +} + /****************** * WORLD SYSTEM * @@ -189,8 +214,6 @@ unsigned int World::setSeed(unsigned int s) World* WorldSystem::addWorld(sol::object t) { worlds.push_back(World(t)); - if (currentWorld == nullptr) - currentWorld = &(worlds.back()); return &(worlds.back()); } |