diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-27 18:49:32 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-27 18:49:32 -0500 |
commit | b1d3354d93187a6bededc280ddb6dee5b159bbe7 (patch) | |
tree | 64fb7e7ecdb77e0bc8579720444f23485d439168 | |
parent | 95f6378e62cc6a7f25305d6f2317ad25d459f9c0 (diff) |
menu, indoor fixes
-rw-r--r-- | include/components.hpp | 6 | ||||
-rw-r--r-- | main.cpp | 2 | ||||
-rw-r--r-- | src/components.cpp | 15 | ||||
-rw-r--r-- | src/engine.cpp | 2 | ||||
-rw-r--r-- | src/ui.cpp | 9 | ||||
-rw-r--r-- | src/ui_menu.cpp | 14 | ||||
-rw-r--r-- | src/world.cpp | 3 | ||||
-rw-r--r-- | xml/bobshouse.xml | 4 |
8 files changed, 38 insertions, 17 deletions
diff --git a/include/components.hpp b/include/components.hpp index 58f5aea..367b8a3 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -14,6 +14,8 @@ #include <texture.hpp> #include <events.hpp> +#include <atomic> + /** * @struct Position * @brief Stores the position of an entity on the xy plane. @@ -275,7 +277,11 @@ public: }; class RenderSystem : public entityx::System<RenderSystem> { +private: + std::string loadTexString; + std::atomic<GLuint> loadTexResult; public: + GLuint loadTexture(const std::string& file); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; }; @@ -226,8 +226,8 @@ int main(int argc, char *argv[]) const bool &run = game::engine.shouldRun; while (run) { - game::engine.render(0); render(); + game::engine.render(0); } thMain.join(); diff --git a/src/components.cpp b/src/components.cpp index 5b85f51..d9b9b60 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -47,9 +47,24 @@ void PhysicsSystem::update(entityx::EntityManager &en, entityx::EventManager &ev }); } +GLuint RenderSystem::loadTexture(const std::string& file) +{ + loadTexString = file; + loadTexResult = 0xFFFF; + while (loadTexResult == 0xFFFF) + std::this_thread::sleep_for(std::chrono::milliseconds(1)); + return loadTexResult; +} + void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) { (void)ev; + + if (!loadTexString.empty()) { + loadTexResult = Texture::loadTexture(loadTexString); + loadTexString.clear(); + } + Render::worldShader.use(); en.each<Visible, Sprite, Position>([dt](entityx::Entity entity, Visible &visible, Sprite &sprite, Position &pos) { diff --git a/src/engine.cpp b/src/engine.cpp index 8db4689..4b156f3 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -8,8 +8,6 @@ #include <components.hpp> #include <player.hpp> -extern World *currentWorld; - Engine::Engine(void) : shouldRun(true), systems(game::entities, game::events) { @@ -14,7 +14,7 @@ #include <chrono> using namespace std::literals::chrono_literals; -extern Menu* currentMenu; +extern Menu *currentMenu; std::array<SDL_Keycode, 6> controlMap = { SDLK_w, SDLK_a, SDLK_d, SDLK_LSHIFT, SDLK_LCTRL, SDLK_e @@ -72,8 +72,6 @@ static bool typeOutSustain = false; static Mix_Chunk *dialogClick; -extern void mainLoop(void); - /* * Fade effect flags */ @@ -1244,6 +1242,8 @@ void InputSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, (void)ev; (void)dt; + if (currentMenu != nullptr) + return; auto SCREEN_WIDTH = game::SCREEN_WIDTH; auto SCREEN_HEIGHT = game::SCREEN_HEIGHT; @@ -1284,6 +1284,9 @@ void InputSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, //case SDL_MOUSEBUTTONUP: case SDL_MOUSEBUTTONDOWN: + if (currentMenu != nullptr) + break; + ev.emit<MouseClickEvent>(mouse, e.button.button); // run actions? diff --git a/src/ui_menu.cpp b/src/ui_menu.cpp index f0660f3..e7845c2 100644 --- a/src/ui_menu.cpp +++ b/src/ui_menu.cpp @@ -6,8 +6,6 @@ #include <fstream> -extern bool gameRunning; - extern Menu *currentMenu; static Menu pauseMenu; @@ -248,13 +246,13 @@ namespace ui { for (auto &m : currentMenu->items) { // reset the background modifier cMult = 1.0f; - + //if the menu is any type of button if (m.member == 0 || m.member == -1 || m.member == -2) { //tests if the mouse is over the button if (mouse.x >= offset.x+m.button.loc.x && mouse.x <= offset.x+m.button.loc.x + m.button.dim.x) { if (mouse.y >= offset.y+m.button.loc.y && mouse.y <= offset.y+m.button.loc.y + m.button.dim.y) { - + // set the darkness multiplier cMult = 0.6f; @@ -310,20 +308,20 @@ namespace ui { //test if mouse is inside of the slider's borders if (mouse.x >= offset.x+m.slider.loc.x && mouse.x <= offset.x+m.slider.loc.x+m.slider.dim.x) { if (mouse.y >= offset.y+m.slider.loc.y && mouse.y <= offset.y+m.slider.loc.y+m.slider.dim.y) { - + // change multiplier background modifier cMult = 0.75f; - + //if we are inside the slider and click it will set the slider to that point if (SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_LEFT)) { //change handle location if (m.slider.dim.y > m.slider.dim.x) { *m.slider.var = (((mouse.y-offset.y) - m.slider.loc.y)/m.slider.dim.y)*100; - + cMult = 0.5f; }else{ *m.slider.var = (((mouse.x-offset.x) - m.slider.loc.x)/m.slider.dim.x)*100; - + cMult = 0.5f; } } diff --git a/src/world.cpp b/src/world.cpp index 4ab8af7..cd606af 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -178,6 +178,7 @@ bool WorldSystem::save(void) void WorldSystem::load(const std::string& file) { + auto& render = *game::engine.getSystem<RenderSystem>(); auto str2coord = [](std::string s) -> vec2 { auto cpos = s.find(','); s[cpos] = '\0'; @@ -275,7 +276,7 @@ void WorldSystem::load(const std::string& file) world.indoorWidth = wxml->FloatAttribute("width"); auto str = wxml->StrAttribute("texture"); - auto tex = Texture::loadTexture(str); + auto tex = render.loadTexture(str); world.indoorTex = tex; } diff --git a/xml/bobshouse.xml b/xml/bobshouse.xml index b638ae5..cde1cdc 100644 --- a/xml/bobshouse.xml +++ b/xml/bobshouse.xml @@ -3,8 +3,8 @@ <IndoorWorld> <style background="0" bgm="assets/music/theme_jazz.wav" folder="assets/style/classic/"/> - <house width="640" texture="assets/style/classic/bg/insideWoodHouse.png"/> - <generation width="1600"/> + <house width="800" texture="assets/style/classic/bg/insideWoodHouse.png"/> + <generation width="320"/> <time>6000</time> <!--<link outside="town.xml"/>--> <npc name="Bob" hasDialog="false" spawnx="30"/> |