aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-27 20:50:29 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-10-27 20:50:29 -0400
commit816bedbd011b6729e8be0a4b40213f48fd9d73ca (patch)
treeb42d7dc277c415db4b826182ecd26b10b714697e /src
parent0fa2320e978926db6781a2bdcdf5a9b6f0317e93 (diff)
names, jumping
Diffstat (limited to 'src')
-rw-r--r--src/components.cpp7
-rw-r--r--src/player.cpp29
-rw-r--r--src/ui.cpp24
-rw-r--r--src/world.cpp14
4 files changed, 36 insertions, 38 deletions
diff --git a/src/components.cpp b/src/components.cpp
index 45a9315..e00d474 100644
--- a/src/components.cpp
+++ b/src/components.cpp
@@ -4,6 +4,7 @@
#include <events.hpp>
#include <render.hpp>
+#include <ui.hpp>
#include <engine.hpp>
void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
@@ -88,6 +89,12 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev,
Render::worldShader.disable();
Render::worldShader.unuse();
+
+ en.each<Visible, Position, Solid, Name>([](entityx::Entity e, Visible &v, Position &pos, Solid& dim, Name &name) {
+ (void)e;
+ (void)v;
+ ui::putStringCentered(pos.x + dim.width / 2, pos.y - ui::fontSize - HLINES(0.5), name.name);
+ });
}
/*
diff --git a/src/player.cpp b/src/player.cpp
index 37a958d..1bbfaea 100644
--- a/src/player.cpp
+++ b/src/player.cpp
@@ -5,7 +5,6 @@
#include <ui.hpp>
#include <gametime.hpp>
#include <world.hpp>
-#include <components.hpp>
void PlayerSystem::create(void)
{
@@ -85,30 +84,14 @@ void PlayerSystem::receive(const KeyDownEvent &kde)
auto kc = kde.keycode;
auto& loc = *player.component<Position>().get();
+ auto& vel = *player.component<Direction>().get();
auto& faceLeft = player.component<Sprite>().get()->faceLeft;
- /*if ((kc == SDLK_SPACE) && (game::canJump & p->ground)) {
- p->loc.y += HLINES(2);
- p->vel.y = .4;
- p->ground = false;
- }*/
-
- if (!ui::dialogBoxExists || ui::dialogPassive) {
+ if ((kc == SDLK_SPACE) && game::canJump && ((vel.y > -0.01) & (vel.y < 0.01))) {
+ loc.y += HLINES(2);
+ vel.y = .4;
+ } else if (!ui::dialogBoxExists || ui::dialogPassive) {
if (kc == getControl(0)) {
- /*if (inBattle) {
- std::thread([&](void){
- auto thing = dynamic_cast<Arena *>(currentWorld)->exitArena(p);
- if (thing.first != currentWorld)
- worldSwitch(thing);
- }).detach();
- } else if (!ui::fadeIntensity) {
- std::thread([&](void){
- auto thing = currentWorld->goInsideStructure(p);
- if (thing.first != currentWorld)
- worldSwitch(thing);
- }).detach();
- }*/
-
if (!ui::fadeIntensity)
worldSystem.goWorldPortal(loc);
@@ -124,7 +107,7 @@ void PlayerSystem::receive(const KeyDownEvent &kde)
moveLeft = faceLeft = false;
moveRight = true;
- worldSystem.goWorldRight(loc);
+ worldSystem.goWorldRight(loc, *player.component<Solid>().get());
}
} else if (kc == getControl(3)) {
if (game::canSprint)
diff --git a/src/ui.cpp b/src/ui.cpp
index 4731261..3c568d1 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -237,7 +237,8 @@ namespace ui {
*/
void setFontSize(unsigned int size) {
- if (size == 16) {
+ (void)size;
+ /*if (size == 16) {
if (!ft16loaded) {
loadFontSize(fontSize = size, ftex16, ftdat16);
ft16loaded = true;
@@ -253,7 +254,7 @@ namespace ui {
ftex = &ftex24;
ftdat = &ftdat24;
fontSize = 24;
- }
+ }*/
}
/*
@@ -572,11 +573,13 @@ namespace ui {
}
void waitForCover(void) {
+ fadeIntensity = 0;
while (fadeIntensity < 255);
fadeIntensity = 255;
}
void waitForUncover(void) {
+ fadeIntensity = 255;
while (fadeIntensity > 0);
fadeIntensity = 0;
}
@@ -1075,10 +1078,9 @@ EXIT:
return;
}
- if (fadeWhite)
- glBindTexture(GL_TEXTURE_2D, Texture::genColor(Color(255, 255, 255, fadeIntensity)));
- else
- glBindTexture(GL_TEXTURE_2D, Texture::genColor(Color(0, 0, 0, fadeIntensity)));
+ auto fadeTex = Texture::genColor( (fadeWhite ? Color(255, 255, 255, fadeIntensity) :
+ Color(0, 0, 0, fadeIntensity)) );
+
GLfloat tex[] = {0.0, 0.0,
1.0, 0.0,
@@ -1096,6 +1098,7 @@ EXIT:
Render::textShader.use();
Render::textShader.enable();
+ glBindTexture(GL_TEXTURE_2D, fadeTex);
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 0, backdrop);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
@@ -1105,21 +1108,22 @@ EXIT:
setFontZ(-8.0);
+ glDeleteTextures(1, &fadeTex);
}
void fadeUpdate(void) {
if (fadeEnable) {
if (fadeIntensity < 150)
- fadeIntensity += fadeFast ? 40 : 10;
- else if (fadeIntensity < 255)
fadeIntensity += fadeFast ? 20 : 5;
+ else if (fadeIntensity < 255)
+ fadeIntensity += fadeFast ? 10 : 5;
else
fadeIntensity = 255;
} else {
if (fadeIntensity > 150)
- fadeIntensity -= fadeFast ? 20 : 5;
+ fadeIntensity -= fadeFast ? 10 : 5;
else if (fadeIntensity > 0)
- fadeIntensity -= fadeFast ? 40 : 10;
+ fadeIntensity -= fadeFast ? 20 : 5;
else
fadeIntensity = 0;
}
diff --git a/src/world.cpp b/src/world.cpp
index 8e2d60b..3ff819b 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -260,8 +260,11 @@ void WorldSystem::load(const std::string& file)
world.toLeft = world.toRight = "";
currentXMLFile = file;
+ std::cout << "ka" << std::endl;
game::entities.reset();
+ std::cout << "CHOW!!!" << std::endl;
game::engine.getSystem<PlayerSystem>()->create();
+ std::cout << "chow cow" << std::endl;
// iterate through tags
while (wxml) {
@@ -395,6 +398,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")));
}
abcd = abcd->NextSiblingElement();
@@ -1085,14 +1090,14 @@ void WorldSystem::detect(entityx::TimeDelta dt)
});
}
-void WorldSystem::goWorldRight(Position& p)
+void WorldSystem::goWorldRight(Position& p, Solid &d)
{
- if (!(world.toRight.empty()) && (p.x > world.startX * -1 - HLINES(10))) {
+ if (!(world.toRight.empty()) && (p.x + d.width > world.startX * -1 - HLINES(15))) {
ui::toggleBlack();
ui::waitForCover();
auto file = world.toRight;
load(file);
- p.x = world.startX + HLINES(15);
+ game::engine.getSystem<PlayerSystem>()->setX(world.startX + HLINES(15));
ui::toggleBlack();
}
}
@@ -1103,7 +1108,7 @@ void WorldSystem::goWorldLeft(Position& p)
ui::toggleBlack();
ui::waitForCover();
load(world.toLeft);
- p.x = world.startX * -1 - HLINES(15);
+ game::engine.getSystem<PlayerSystem>()->setX(world.startX * -1 - HLINES(15));
ui::toggleBlack();
}
}
@@ -1119,7 +1124,6 @@ void WorldSystem::goWorldPortal(Position& p)
ui::toggleBlack();
ui::waitForCover();
load(portal.toFile);
- p.x = 0;
ui::toggleBlack();
return;
}