diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-21 19:56:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-21 19:56:48 -0400 |
commit | b64aa31b4dc0c5e050c4978bae7bd43a040a368b (patch) | |
tree | 4c16f9d1eb3bac11f74508c241e76cfddabc7a19 /src | |
parent | 7644b740e87053838f3c7a80e88ad192fcf1a5e2 (diff) |
lua scriptable world gen
Diffstat (limited to 'src')
-rw-r--r-- | src/world.cpp | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index ea2566a..f55b39d 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -27,6 +27,7 @@ using namespace tinyxml2; #include <ui.hpp> #include <vector3.hpp> #include <weather.hpp> +#include <systems/lua.hpp> WorldData2 WorldSystem::world; Mix_Music* WorldSystem::bgmObj; @@ -68,6 +69,34 @@ int WorldSystem::getLineIndex(float x) 0, static_cast<int>(world.data.size())); } +void WorldSystem::generate(LuaScript& script) +{ + int i = 0; + world.data.clear(); + do { + float h, g[2]; + script("ground", {LuaVariable("height", h)}); + if (h == -1.0f) + break; + script("grass", {LuaVariable("height", g[0])}); + script("grass", {LuaVariable("height", g[1])}); + world.data.push_back(WorldData {true, {g[0], g[1]}, h, + static_cast<unsigned char>(randGet() % 32 / 8)}); + } while (++i); + + // define x-coordinate of world's leftmost 'line' + world.startX = HLINES(i * -0.5); + + // gen. star coordinates + if (stars.empty()) { + stars.resize(game::SCREEN_WIDTH / 30); + for (auto& s : stars) { + s.x = world.startX + (randGet() % (int)HLINES(i)); + s.y = game::SCREEN_HEIGHT - (randGet() % (int)HLINES(game::SCREEN_HEIGHT / 1.3f)); + } + } +} + void WorldSystem::generate(int width) { float geninc = 0; @@ -191,6 +220,8 @@ void WorldSystem::loader(void) if (!currentXMLFile.empty()) save(); + LightSystem::clear(); + // load file data to string auto xmlPath = game::config::xmlFolder + toLoad; auto xmlRaw = readFile(xmlPath); @@ -277,7 +308,13 @@ void WorldSystem::loader(void) // world generation else if (tagName == "generation") { - generate(wxml->IntAttribute("width")); + auto text = wxml->GetText(); + if (text == nullptr) + generate(wxml->IntAttribute("width")); + else { + LuaScript script (text); + generate(script); + } } // indoor stuff |