diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-11-25 18:46:36 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-11-25 18:46:36 -0500 |
commit | b5edea8b1050aba3a8034687217fd62bb4d41aed (patch) | |
tree | fdf66430c4d7dfeee7ae6fd213623c1a0cd90691 /src/world.cpp | |
parent | 34d992d75ea2b7f7c663dab6731ae819c4c54001 (diff) |
UI is now fancy
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/world.cpp b/src/world.cpp index 4a946d7..6fc097b 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -63,7 +63,7 @@ constexpr const float GROUND_HEIGHT_MAXIMUM = 110.0f; constexpr const float GROUND_HILLINESS = 10.0f; // defines grass height in HLINEs -constexpr const unsigned int GRASS_HEIGHT = 4; +const unsigned int GRASS_HEIGHT = HLINES(4); // the path of the currently loaded XML file, externally referenced in places std::string currentXML; @@ -111,7 +111,7 @@ static const float bgDraw[4][3]={ void WorldSystem::generate(unsigned int width) { - float geninc = 0; + float geninc = 0; // allocate space for world world.data = std::vector<WorldData> (width + GROUND_HILLINESS, WorldData { false, {0, 0}, 0, 0 }); @@ -140,8 +140,8 @@ void WorldSystem::generate(unsigned int width) w->groundHeight = std::clamp(w[-1].groundHeight + geninc, GROUND_HEIGHT_MINIMUM, GROUND_HEIGHT_MAXIMUM); w->groundColor = randGet() % 32 / 8; w->grassUnpressed = true; - w->grassHeight[0] = (randGet() % 16) / 3 + 2; - w->grassHeight[1] = (randGet() % 16) / 3 + 2; + w->grassHeight[0] = (randGet() % 16) / 3 + HLINES(2); + w->grassHeight[1] = (randGet() % 16) / 3 + HLINES(2); } } |