diff options
author | Andy <drumsetmonkey@gmail.com> | 2016-10-28 08:30:14 -0400 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2016-10-28 08:30:14 -0400 |
commit | 0a8654a125fad2961039e614fd10f1f683c0001f (patch) | |
tree | 6eb4760dcb9129870fb3906be0969a37646502e7 /src | |
parent | 816bedbd011b6729e8be0a4b40213f48fd9d73ca (diff) |
Text is fixed, and objects can be placed on the ground
Diffstat (limited to 'src')
-rw-r--r-- | src/components.cpp | 1 | ||||
-rw-r--r-- | src/engine.cpp | 1 | ||||
-rw-r--r-- | src/ui.cpp | 6 | ||||
-rw-r--r-- | src/world.cpp | 21 |
4 files changed, 26 insertions, 3 deletions
diff --git a/src/components.cpp b/src/components.cpp index e00d474..609b5f4 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -93,6 +93,7 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, en.each<Visible, Position, Solid, Name>([](entityx::Entity e, Visible &v, Position &pos, Solid& dim, Name &name) { (void)e; (void)v; + ui::setFontZ(-5.0); ui::putStringCentered(pos.x + dim.width / 2, pos.y - ui::fontSize - HLINES(0.5), name.name); }); } diff --git a/src/engine.cpp b/src/engine.cpp index 04ea912..148c496 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -46,7 +46,6 @@ void Engine::render(entityx::TimeDelta dt) void Engine::update(entityx::TimeDelta dt) { systems.update<InputSystem>(dt); - //systems.update<PhysicsSystem>(dt); systems.update<MovementSystem>(dt); systems.update<WorldSystem>(dt); systems.update<PlayerSystem>(dt); @@ -238,7 +238,7 @@ namespace ui { void setFontSize(unsigned int size) { (void)size; - /*if (size == 16) { + if (size == 16) { if (!ft16loaded) { loadFontSize(fontSize = size, ftex16, ftdat16); ft16loaded = true; @@ -254,7 +254,7 @@ namespace ui { ftex = &ftex24; ftdat = &ftdat24; fontSize = 24; - }*/ + } } /* @@ -303,9 +303,11 @@ namespace ui { * Draw the character: */ + glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D,(*ftex)[c-33]); glUniform1i(Render::textShader.uniform[WU_texture], 0); + glUniform4f(Render::textShader.uniform[WU_tex_color], 1.0f, 1.0f, 1.0f, 1.0f); //glDisable(GL_DEPTH_TEST); diff --git a/src/world.cpp b/src/world.cpp index 3ff819b..7c53ee4 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -400,6 +400,8 @@ void WorldSystem::load(const std::string& file) entity.assign<Physics>(g); } else if (tname == "Name") { entity.assign<Name>(coalesce(wxml->Attribute("name"), abcd->Attribute("value"))); + } else if (tname == "Grounded") { + entity.assign<Grounded>(); } abcd = abcd->NextSiblingElement(); @@ -1043,6 +1045,25 @@ void WorldSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, void WorldSystem::detect(entityx::TimeDelta dt) { + game::entities.each<Grounded, Position, Solid>( + [&](entityx::Entity e, Grounded &g, Position &loc, Solid &dim) { + (void)e; + if (!g.grounded) { + // get the line the entity is on + int line = std::clamp(static_cast<int>((loc.x + dim.width / 2 - world.startX) / game::HLINE), + 0, + static_cast<int>(world.data.size())); + + // make sure entity is above ground + const auto& data = world.data; + if (loc.y != data[line].groundHeight) { + loc.y = data[line].groundHeight; + e.remove<Grounded>(); + } + } + + }); + game::entities.each<Direction, Physics>( [&](entityx::Entity e, Direction &vel, Physics &phys) { (void)e; |