diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-04-29 18:28:28 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-04-29 18:28:28 -0400 |
commit | 40d164ea3d8437cd5a06a06d5b89bd938d3dd906 (patch) | |
tree | ec22853ca9a18706a3318ea9d16464d9a36a7419 | |
parent | 18380eb2e6443c2736b4958b01e7ba2fe2cfa318 (diff) |
no more getSystem
-rw-r--r-- | assets/player/player.png | bin | 1567 -> 1562 bytes | |||
-rw-r--r-- | assets/player/player_b.png | bin | 0 -> 1567 bytes | |||
-rw-r--r-- | assets/player/player_w.png | bin | 1562 -> 0 bytes | |||
-rw-r--r-- | config/controls.dat | 2 | ||||
-rw-r--r-- | include/components.hpp | 9 | ||||
-rw-r--r-- | include/inventory.hpp | 43 | ||||
-rw-r--r-- | include/particle.hpp | 12 | ||||
-rw-r--r-- | include/player.hpp | 23 | ||||
-rw-r--r-- | include/quest.hpp | 10 | ||||
-rw-r--r-- | include/weather.hpp | 55 | ||||
-rw-r--r-- | include/window.hpp | 10 | ||||
-rw-r--r-- | include/world.hpp | 2 | ||||
-rw-r--r-- | main.cpp | 10 | ||||
-rw-r--r-- | src/attack.cpp | 4 | ||||
-rw-r--r-- | src/components.cpp | 13 | ||||
-rw-r--r-- | src/engine.cpp | 2 | ||||
-rw-r--r-- | src/inventory.cpp | 11 | ||||
-rw-r--r-- | src/particle.cpp | 9 | ||||
-rw-r--r-- | src/player.cpp | 17 | ||||
-rw-r--r-- | src/quest.cpp | 6 | ||||
-rw-r--r-- | src/render.cpp | 20 | ||||
-rw-r--r-- | src/ui.cpp | 4 | ||||
-rw-r--r-- | src/ui_menu.cpp | 3 | ||||
-rw-r--r-- | src/weather.cpp | 61 | ||||
-rw-r--r-- | src/window.cpp | 3 | ||||
-rw-r--r-- | src/world.cpp | 26 | ||||
-rw-r--r-- | xml/entities.xml | 2 |
27 files changed, 193 insertions, 164 deletions
diff --git a/assets/player/player.png b/assets/player/player.png Binary files differindex 7a23127..6a3fff8 100644 --- a/assets/player/player.png +++ b/assets/player/player.png diff --git a/assets/player/player_b.png b/assets/player/player_b.png Binary files differnew file mode 100644 index 0000000..7a23127 --- /dev/null +++ b/assets/player/player_b.png diff --git a/assets/player/player_w.png b/assets/player/player_w.png Binary files differdeleted file mode 100644 index 6a3fff8..0000000 --- a/assets/player/player_w.png +++ /dev/null diff --git a/config/controls.dat b/config/controls.dat index c0414cd..679c014 100644 --- a/config/controls.dat +++ b/config/controls.dat @@ -1,6 +1,6 @@ 119 97 100 -1073742048 1073742049 +1073742048 101 diff --git a/include/components.hpp b/include/components.hpp index 87d4293..fe8e7a6 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -655,14 +655,15 @@ public: class RenderSystem : public entityx::System<RenderSystem> { private: - std::string loadTexString; - Texture loadTexResult; + static std::string loadTexString; + static Texture loadTexResult; public: - Texture loadTexture(const std::string& file); + static Texture loadTexture(const std::string& file); + static void render(void); + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override { (void)en; (void)ev; (void)dt; } - void render(void); }; class DialogSystem : public entityx::System<DialogSystem>, public entityx::Receiver<DialogSystem> { diff --git a/include/inventory.hpp b/include/inventory.hpp index adf16f1..8329d72 100644 --- a/include/inventory.hpp +++ b/include/inventory.hpp @@ -99,41 +99,35 @@ private: constexpr static float inventoryZ = -5.0f; constexpr static unsigned int rowSize = 8; - /** - * A 'database' of all existing items. - */ - std::unordered_map<std::string, Item> itemList; + static std::unordered_map<std::string, Item> itemList; + static std::vector<InventoryEntry> items; - /** - * A vector for the player's inventory slots. - */ - std::vector<InventoryEntry> items; + static vec2 hotStart; + static vec2 hotEnd; + static vec2 fullStart; + static vec2 fullEnd; + static int movingItem; + static bool fullInventory; - vec2 hotStart, hotEnd; - vec2 fullStart, fullEnd; - - int movingItem = -1; - bool fullInventory = false; - - void loadItems(void); + static void loadItems(void); public: - InventorySystem(int size = 20); + InventorySystem(int size = 20); - void configure(entityx::EventManager &ev); - void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; - void receive(const KeyDownEvent &kde); + void configure(entityx::EventManager &ev); + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; + void receive(const KeyDownEvent &kde); void receive(const MouseClickEvent &mce); void receive(const MouseReleaseEvent &mce); - void render(void); + static void render(void); /** * Adds 'count' 'name's to the inventory. * @param name the name of the item * @param count the quantity of the item to give */ - void add(const std::string& name, int count); + static void add(const std::string& name, int count); /** * Takes 'count' 'name's from the inventory. @@ -143,11 +137,10 @@ public: * @param count the quantity of the item to take * @return true if the operation could be completed */ - bool take(const std::string& name, int count); + static bool take(const std::string& name, int count); - inline Item getItem(const std::string& s) { - return itemList[s]; - } + static inline Item getItem(const std::string& s) + { return itemList[s]; } }; #endif // INVENTORY_HPP_ diff --git a/include/particle.hpp b/include/particle.hpp index 822ac41..31825fc 100644 --- a/include/particle.hpp +++ b/include/particle.hpp @@ -29,21 +29,21 @@ struct Particle { class ParticleSystem : public entityx::System<ParticleSystem> { private: - std::vector<Particle> parts; - unsigned int maximum; + static std::vector<Particle> parts; + static unsigned int maximum; public: ParticleSystem(unsigned int max = 2048); - void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000, + static void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000, const unsigned char& color = 0); - void addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f, + static void addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f, const int& timeleft = 3000, const unsigned char& color = 0); - void render(void); + static void render(void); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; - int getCount(void) const; + static int getCount(void); }; #endif // PARTICLE_HPP_ diff --git a/include/player.hpp b/include/player.hpp index efac984..17ce2c1 100644 --- a/include/player.hpp +++ b/include/player.hpp @@ -23,22 +23,21 @@ constexpr const float PLAYER_SPEED_CONSTANT = 0.03f; */ class PlayerSystem : public entityx::System<PlayerSystem>, public entityx::Receiver<PlayerSystem> { private: - entityx::Entity player; + static entityx::Entity player; - bool moveLeft; - bool moveRight; - - float speed; + static bool moveLeft; + static bool moveRight; + static float speed; public: - PlayerSystem(void) - : moveLeft(false), moveRight(false), speed(1.0f) {} + PlayerSystem(void); /** * Creates the player, adding it to the entity system. */ - void create(void); - inline auto getId(void) const { return player.id(); } + static void create(void); + static inline auto getId(void) + { return player.id(); } /** * Configures events for use with the entity system. @@ -68,20 +67,20 @@ public: * Gets the player's position. * @return the player's position */ - vec2 getPosition(void) const; + static vec2 getPosition(void); /** * Sets the player's X coordinate. * @param x the x coordinate to give the player */ - inline void setX(const float& x) + static inline void setX(const float& x) { player.component<Position>().get()->x = x; } /** * Gets the width of the player. * @return the player's width, according to its sprite */ - inline float getWidth(void) const + static inline float getWidth(void) { return game::entities.component<Solid>(player.id())->width; } }; diff --git a/include/quest.hpp b/include/quest.hpp index b74438d..be9755f 100644 --- a/include/quest.hpp +++ b/include/quest.hpp @@ -37,7 +37,7 @@ private: /** * A list of all quests that are currently active. */ - std::vector<Quest> current; + static std::vector<Quest> current; public: void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; @@ -49,28 +49,28 @@ public: * @param req retrieved from XML, list of what the quest wants * @return a possible error code */ - int assign(std::string title, std::string desc, std::string req); + static int assign(std::string title, std::string desc, std::string req); /** * Drops a quest through its title. * @param title the quest's title * @return a possible error code */ - int drop(std::string title); + static int drop(std::string title); /** * Finishes a quest through it's title. * @param title the quest's title * @return a possible error code */ - int finish(std::string title); + static int finish(std::string title); /** * Returns true if the system is currently taking the quest. * @param title the quest's title * @return if the quest is active. */ - bool hasQuest(std::string title); + static bool hasQuest(std::string title); }; #endif // QUEST_HPP_ diff --git a/include/weather.hpp b/include/weather.hpp index 58a0cfa..c19a52d 100644 --- a/include/weather.hpp +++ b/include/weather.hpp @@ -5,8 +5,7 @@ #include <entityx/entityx.h> -#include <config.hpp> -#include <particle.hpp> +#include <vector2.hpp> extern vec2 offset; @@ -22,60 +21,16 @@ enum class Weather : unsigned char { count }; -constexpr const char *weatherStrings[] = { - "Sunny", - "Rainy", - "Snowy" -}; - class WeatherSystem : public entityx::System<WeatherSystem> { private: - Weather weather; + static Weather weather; public: - WeatherSystem(Weather w = Weather::Sunny) - : weather(w) {} - - void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override { - (void)en; - (void)ev; - (void)dt; - - static auto& partSystem = *game::engine.getSystem<ParticleSystem>(); - static int newPartDelay = 0; // TODO no + WeatherSystem(Weather w = Weather::Sunny); - switch (weather) { - case Weather::Sunny: - break; - case Weather::Rainy: - if (newPartDelay++ == 4) { - newPartDelay = 0; - partSystem.add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH, - offset.y + game::SCREEN_HEIGHT / 2 + 100), - ParticleType::Drop, 3000, 3); - } - break; - case Weather::Snowy: - if (newPartDelay++ == 6) { - newPartDelay = 0; - partSystem.add(vec2(offset.x - game::SCREEN_WIDTH + randGet() % game::SCREEN_WIDTH * 2, - offset.y + game::SCREEN_HEIGHT / 2 + 50), - ParticleType::Confetti, 10000, 0); - } - break; - default: - break; - } - } + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; - inline void setWeather(const std::string& w) { - for (int i = 0; i < static_cast<int>(Weather::count); i++) { - if (w == weatherStrings[i]) { - weather = static_cast<Weather>(i); - return; - } - } - } + static void setWeather(const std::string& w); }; #endif // WEATHER_HPP_ diff --git a/include/window.hpp b/include/window.hpp index d53a2bf..36618e5 100644 --- a/include/window.hpp +++ b/include/window.hpp @@ -23,22 +23,24 @@ private: /** * SDL's object for the window. */ - SDL_Window *window; + static SDL_Window *window; /** * An OpenGL context, created when OpenGL is set up for use. */ - SDL_GLContext glContext; + static SDL_GLContext glContext; public: WindowSystem(void); - void die(void); + static void die(void); void configure(entityx::EventManager &ev); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override { (void)en; (void)ev; (void)dt; } - void render(void); + + static void render(void); + void receive(const WindowResizeEvent&); void receive(const ScreenshotEvent&); }; diff --git a/include/world.hpp b/include/world.hpp index 2af4642..ac55b56 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -177,7 +177,7 @@ public: void fight(entityx::Entity entity); - void die(void); + static void die(void); }; #endif // WORLD_HPP_ @@ -117,9 +117,9 @@ int main(int argc, char *argv[]) ///////////////////////////// - game::engine.getSystem<InventorySystem>()->add("Hunters Bow", 1); - game::engine.getSystem<InventorySystem>()->add("Wood Sword", 1); - game::engine.getSystem<InventorySystem>()->add("Arrow", 198); + InventorySystem::add("Hunters Bow", 1); + InventorySystem::add("Wood Sword", 1); + InventorySystem::add("Arrow", 198); std::list<SDL_Event> eventQueue; @@ -188,8 +188,8 @@ int main(int argc, char *argv[]) unloadTextures(); - game::engine.getSystem<WorldSystem>()->die(); - game::engine.getSystem<WindowSystem>()->die(); + WorldSystem::die(); + WindowSystem::die(); return 0; // Calls everything passed to atexit } diff --git a/src/attack.cpp b/src/attack.cpp index e91b4cd..f627631 100644 --- a/src/attack.cpp +++ b/src/attack.cpp @@ -45,7 +45,7 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, en.each<Health, Position, Solid>([&](entityx::Entity e, Health& health, Position& pos, Solid& dim) { if (!e.has_component<Player>() && inrange(ppos.x, pos.x, pos.x + dim.width) && inrange(ppos.y, pos.y - 2, pos.y + dim.height)) { health.health -= hit.damage; - game::engine.getSystem<ParticleSystem>()->addMultiple(15, ParticleType::SmallBlast, + ParticleSystem::addMultiple(15, ParticleType::SmallBlast, [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); die = !hit.pierce; } else if (WorldSystem::isAboveGround(vec2(ppos.x, ppos.y - 5))) @@ -69,7 +69,7 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, if (inrange(a.pos.x, pos.x, pos.x + dim.width, HLINES(shortSlashLength)) && inrange(a.pos.y, pos.y, pos.y + dim.height)) { h.health -= a.power; - game::engine.getSystem<ParticleSystem>()->addMultiple(15, ParticleType::DownSlash, + ParticleSystem::addMultiple(15, ParticleType::DownSlash, [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); } } diff --git a/src/components.cpp b/src/components.cpp index dcb1551..f5faf6b 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -20,6 +20,9 @@ using namespace std::literals::chrono_literals; +std::string RenderSystem::loadTexString; +Texture RenderSystem::loadTexResult; + static std::vector<std::string> randomDialog (readFileA("assets/dialog_en-us")); void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) @@ -50,7 +53,7 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e fl = (direction.x < 0); } - auto ppos = game::engine.getSystem<PlayerSystem>()->getPosition(); + auto ppos = PlayerSystem::getPosition(); if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) { if (entity.has_component<Aggro>()) { auto dim = entity.component<Solid>(); @@ -280,8 +283,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) auto ixml = exml->FirstChildElement("give"); if (ixml != nullptr) { do { - game::engine.getSystem<InventorySystem>()->add( - ixml->StrAttribute("name"), ixml->IntAttribute("count")); + InventorySystem::add(ixml->StrAttribute("name"), ixml->IntAttribute("count")); ixml = ixml->NextSiblingElement(); } while (ixml != nullptr); } @@ -289,7 +291,6 @@ void DialogSystem::receive(const MouseClickEvent &mce) auto qxml = exml->FirstChildElement("quest"); if (qxml != nullptr) { const char *qname; - auto qsys = game::engine.getSystem<QuestSystem>(); do { // assign quest @@ -297,14 +298,14 @@ void DialogSystem::receive(const MouseClickEvent &mce) if (qname != nullptr) { questAssignedText = qname; auto req = qxml->GetText(); - qsys->assign(qname, qxml->StrAttribute("desc"), req ? req : ""); + QuestSystem::assign(qname, qxml->StrAttribute("desc"), req ? req : ""); } // check / finish quest else { qname = qxml->Attribute("check"); if (qname != nullptr) { - if (qname != nullptr && qsys->finish(qname) == 0) { + if (qname != nullptr && QuestSystem::finish(qname) == 0) { d.index = 9999; } else { UISystem::dialogBox(name.name, /*"", false,*/ "Finish my quest u nug"); diff --git a/src/engine.cpp b/src/engine.cpp index 970904b..07b453c 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -54,7 +54,7 @@ void Engine::init(void) { ui::initSounds(); ui::menu::init(); game::config::update(); - getSystem<PlayerSystem>()->create(); + PlayerSystem::create(); } void Engine::update(entityx::TimeDelta dt) diff --git a/src/inventory.cpp b/src/inventory.cpp index 761ca43..434eac6 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -17,6 +17,15 @@ using namespace tinyxml2; extern vec2 offset; +std::unordered_map<std::string, Item> InventorySystem::itemList; +std::vector<InventoryEntry> InventorySystem::items; +vec2 InventorySystem::hotStart; +vec2 InventorySystem::hotEnd; +vec2 InventorySystem::fullStart; +vec2 InventorySystem::fullEnd; +int InventorySystem::movingItem = -1; +bool InventorySystem::fullInventory = false; + inline bool isGoodEntry(const InventoryEntry& ie) { return (ie.item != nullptr) && (ie.count > 0); } @@ -142,7 +151,7 @@ void InventorySystem::render(void) i.item->sprite.use(); glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex); - auto pos = game::engine.getSystem<PlayerSystem>()->getPosition(); + auto pos = PlayerSystem::getPosition(); vec2 sta (pos.x, pos.y); vec2 end (sta + (i.item->sprite.getDim() * game::HLINE)); GLfloat coords[18] = { diff --git a/src/particle.cpp b/src/particle.cpp index a546c0c..f2604a6 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -7,9 +7,12 @@ #include <mutex> +std::vector<Particle> ParticleSystem::parts; +unsigned int ParticleSystem::maximum; + ParticleSystem::ParticleSystem(unsigned int max) - : maximum(max) { + maximum = max; parts.reserve(maximum); } @@ -36,7 +39,7 @@ void ParticleSystem::render(void) constexpr auto entrySize = (6 * 5) * sizeof(GLfloat); static std::once_flag init; - std::call_once(init, [this](GLuint& vbo) { + std::call_once(init, [&entrySize](GLuint& vbo) { // generate VBO glGenBuffers(1, &vbo); glBindBuffer(GL_ARRAY_BUFFER, vbo); @@ -168,7 +171,7 @@ void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &e } } -int ParticleSystem::getCount(void) const +int ParticleSystem::getCount(void) { return parts.size(); } diff --git a/src/player.cpp b/src/player.cpp index a458479..0256190 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -68,6 +68,15 @@ static const char *animationXML = </movement>\ </Animation>"; +entityx::Entity PlayerSystem::player; +bool PlayerSystem::moveLeft = false; +bool PlayerSystem::moveRight = false; +float PlayerSystem::speed = 1.0f; + +PlayerSystem::PlayerSystem(void) +{ +} + void PlayerSystem::create(void) { player = game::entities.create(); @@ -180,7 +189,7 @@ void PlayerSystem::receive(const KeyDownEvent &kde) if (game::canSprint) speed = 2.0f; - game::engine.getSystem<ParticleSystem>()->addMultiple(10, ParticleType::SmallBlast, + ParticleSystem::addMultiple(10, ParticleType::SmallBlast, [&](){ return vec2(loc.x, loc.y); }, 500, 7); } else if (kc == getControl(4)) { speed = .5; @@ -204,7 +213,7 @@ void PlayerSystem::receive(const KeyDownEvent &kde) } } -vec2 PlayerSystem::getPosition(void) const +vec2 PlayerSystem::getPosition(void) { auto& loc = *game::entities.component<Position>(player.id()).get(); return vec2(loc.x, loc.y); @@ -224,7 +233,7 @@ void PlayerSystem::receive(const UseItemEvent& uie) loc.x += solid.width / 2, loc.y += solid.height / 2; game::events.emit<AttackEvent>(loc, AttackType::ShortSlash, true); } else if (uie.item->type == "Bow") { - if (game::engine.getSystem<InventorySystem>()->take("Arrow", 1)) { + if (InventorySystem::take("Arrow", 1)) { auto e = game::entities.create(); auto pos = getPosition(); e.assign<Position>(pos.x, pos.y + 10); @@ -235,7 +244,7 @@ void PlayerSystem::receive(const UseItemEvent& uie) e.assign<Visible>(-5); e.assign<Physics>(); auto sprite = e.assign<Sprite>(); - auto tex = game::engine.getSystem<InventorySystem>()->getItem("Arrow"); + auto tex = InventorySystem::getItem("Arrow"); sprite->addSpriteSegment(SpriteData(tex.sprite), 0); auto dim = HLINES(sprite->getSpriteSize()); e.assign<Solid>(dim.x, dim.y); diff --git a/src/quest.cpp b/src/quest.cpp index 71a37fd..6017247 100644 --- a/src/quest.cpp +++ b/src/quest.cpp @@ -6,6 +6,8 @@ #include <inventory.hpp> #include <tokens.hpp> +std::vector<Quest> QuestSystem::current; + std::string& trim(std::string& s) { auto start = std::find_if(s.begin(), s.end(), @@ -63,12 +65,12 @@ int QuestSystem::finish(std::string title) return -1; for (const auto& r : quest->reqs) { - if (!game::engine.getSystem<InventorySystem>()->take(r.first, r.second)) + if (!InventorySystem::take(r.first, r.second)) return -1; } for (const auto& r : quest->rewards) - game::engine.getSystem<InventorySystem>()->add(r.first, r.second); + InventorySystem::add(r.first, r.second); drop(title); diff --git a/src/render.cpp b/src/render.cpp index 8b99847..935e609 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -132,9 +132,8 @@ void preRender(void) // set the ortho // - auto ps = game::engine.getSystem<PlayerSystem>(); - auto ploc = ps->getPosition(); - offset.x = ploc.x + ps->getWidth() / 2; + auto ploc = PlayerSystem::getPosition(); + offset.x = ploc.x + PlayerSystem::getWidth() / 2; const auto& worldWidth = WorldSystem::getWidth(); if (worldWidth < (int)SCREEN_WIDTH2 * 2) @@ -178,20 +177,17 @@ void render(const int& fps) preRender(); WorldSystem::render(); - - game::engine.getSystem<ParticleSystem>()->render(); - - game::engine.getSystem<RenderSystem>()->render(); - - game::engine.getSystem<InventorySystem>()->render(); + ParticleSystem::render(); + RenderSystem::render(); + InventorySystem::render(); // draw the debug overlay if desired if (ui::debug) { - auto pos = game::engine.getSystem<PlayerSystem>()->getPosition(); + auto pos = PlayerSystem::getPosition(); UISystem::putText(vec2(offset.x - game::SCREEN_WIDTH / 2, (offset.y + game::SCREEN_HEIGHT / 2) - FontSystem::getSize()), "loc: %s\noffset: %s\nfps: %d\nticks: %d\npcount: %d\nxml: %s\nmem: %llukb (%d)", pos.toString().c_str(), offset.toString().c_str(), fps, - game::time::getTickCount(), game::engine.getSystem<ParticleSystem>()->getCount(), + game::time::getTickCount(), ParticleSystem::getCount(), WorldSystem::getXMLFile().c_str(), getUsedMem() / 1024, balance ); } @@ -201,5 +197,5 @@ void render(const int& fps) //ui::drawFade(); ui::draw(); - game::engine.getSystem<WindowSystem>()->render(); + WindowSystem::render(); } @@ -965,7 +965,7 @@ void UISystem::render(void) if (!dialogText.empty()) { vec2 where (offset.x - 300, game::SCREEN_HEIGHT - 60); ui::drawNiceBox(vec2(where.x - 10, where.y - 200), vec2(where.x + 620, where.y + 20), -5.5f); - putString(where, dialogText, where.x + 600); + putString(where, ui::typeOut(dialogText), where.x + 600); if (!dialogOptions.empty()) { float y = where.y - 180; @@ -988,7 +988,7 @@ void UISystem::render(void) if (!importantText.empty()) { FontSystem::setFontSize(24); FontSystem::setFontZ(-9.0f); - putStringCentered(vec2(offset.x, 400), importantText); + putStringCentered(vec2(offset.x, 400), ui::typeOut(importantText)); FontSystem::setFontZ(-6.0f); FontSystem::setFontSize(16); } diff --git a/src/ui_menu.cpp b/src/ui_menu.cpp index 08d45e7..138a281 100644 --- a/src/ui_menu.cpp +++ b/src/ui_menu.cpp @@ -29,7 +29,8 @@ void SDLReceiver::receive(const MainSDLEvent& mse) case SDL_KEYUP: if (currentMenu != nullptr && mse.event.key.keysym.sym == SDLK_ESCAPE) { currentMenu->gotoParent(); - return; + } else { + clicked = false; } break; default: diff --git a/src/weather.cpp b/src/weather.cpp new file mode 100644 index 0000000..59396d8 --- /dev/null +++ b/src/weather.cpp @@ -0,0 +1,61 @@ +#include <weather.hpp> + +#include <config.hpp> +#include <random.hpp> +#include <particle.hpp> + +constexpr const char *weatherStrings[] = { + "Sunny", + "Rainy", + "Snowy" +}; + +Weather WeatherSystem::weather; + +WeatherSystem::WeatherSystem(Weather w) +{ + weather = w; +} + +void WeatherSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) +{ + (void)en; + (void)ev; + (void)dt; + + static int newPartDelay = 0; // TODO no + + switch (weather) { + case Weather::Sunny: + break; + case Weather::Rainy: + if (newPartDelay++ == 4) { + newPartDelay = 0; + ParticleSystem::add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH, + offset.y + game::SCREEN_HEIGHT / 2 + 100), + ParticleType::Drop, 3000, 3); + } + break; + case Weather::Snowy: + if (newPartDelay++ == 6) { + newPartDelay = 0; + ParticleSystem::add(vec2(offset.x - game::SCREEN_WIDTH + randGet() % game::SCREEN_WIDTH * 2, + offset.y + game::SCREEN_HEIGHT / 2 + 50), + ParticleType::Confetti, 10000, 0); + } + break; + default: + break; + } +} + +void WeatherSystem::setWeather(const std::string& w) +{ + for (int i = 0; i < static_cast<int>(Weather::count); i++) { + if (w == weatherStrings[i]) { + weather = static_cast<Weather>(i); + return; + } + } +} + diff --git a/src/window.cpp b/src/window.cpp index df584be..af0f63b 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -9,6 +9,9 @@ constexpr const char* WINDOW_TITLE = "gamedev"; +SDL_Window* WindowSystem::window; +SDL_GLContext WindowSystem::glContext; + WindowSystem::WindowSystem(void) { // attempt to initialize SDL diff --git a/src/world.cpp b/src/world.cpp index 29f77a2..bf34973 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -192,7 +192,7 @@ void WorldSystem::fight(entityx::Entity entity) door.assign<Portal>(exit); auto sprite = door.assign<Sprite>(); - auto dtex = game::engine.getSystem<RenderSystem>()->loadTexture("assets/style/classic/door.png"); + auto dtex = RenderSystem::loadTexture("assets/style/classic/door.png"); sprite->addSpriteSegment(SpriteData(dtex), 0); auto dim = HLINES(sprite->getSpriteSize()); @@ -201,8 +201,6 @@ void WorldSystem::fight(entityx::Entity entity) void WorldSystem::load(const std::string& file) { - auto& render = *game::engine.getSystem<RenderSystem>(); - entityx::Entity entity; // check for empty file name @@ -266,17 +264,16 @@ void WorldSystem::load(const std::string& file) //game::entities.reset(); if (!savedEntities.empty()) { - savedEntities.emplace_back(game::engine.getSystem<PlayerSystem>()->getId()); + savedEntities.emplace_back(PlayerSystem::getId()); game::entities.each<Position>( [&](entityx::Entity entity, Position& p) { (void)p; - if (std::find(savedEntities.begin(), savedEntities.end(), entity.id()) - == savedEntities.end()) + if (std::find(savedEntities.begin(), savedEntities.end(), entity.id()) == savedEntities.end()) entity.destroy(); }, true); } else { game::entities.reset(); - game::engine.getSystem<PlayerSystem>()->create(); + PlayerSystem::create(); } // iterate through tags @@ -313,16 +310,15 @@ void WorldSystem::load(const std::string& file) UserError("<house> can only be used inside <IndoorWorld>"); //world.indoorWidth = wxml->FloatAttribute("width"); - world.indoorTex = render.loadTexture(wxml->StrAttribute("texture")); // TODO winbloze lol + world.indoorTex = RenderSystem::loadTexture(wxml->StrAttribute("texture")); // TODO winbloze lol auto str = wxml->StrAttribute("texture"); - auto tex = render.loadTexture(str); + auto tex = RenderSystem::loadTexture(str); world.indoorTex = tex; } // weather tag else if (tagName == "weather") { - game::engine.getSystem<WeatherSystem>()->setWeather(wxml->GetText()); - //setWeather(wxml->GetText()); + WeatherSystem::setWeather(wxml->GetText()); } // link tags @@ -1092,7 +1088,7 @@ void WorldSystem::detect(entityx::TimeDelta dt) vel.y = 0; if (!vel.grounded) { vel.grounded = true; - game::engine.getSystem<ParticleSystem>()->addMultiple(20, ParticleType::SmallPoof, + ParticleSystem::addMultiple(20, ParticleType::SmallPoof, [&](){ return vec2(loc.x + randGet() % static_cast<int>(dim.width), loc.y);}, 500, 30); } } @@ -1101,11 +1097,9 @@ void WorldSystem::detect(entityx::TimeDelta dt) // insure that the entity doesn't fall off either edge of the world. if (loc.x < world.startX) { - std::cout << "Left!\n"; vel.x = 0; loc.x = world.startX + HLINES(0.5f); } else if (loc.x + dim.width + game::HLINE > -(static_cast<int>(world.startX))) { - std::cout << "Right\n"; vel.x = 0; loc.x = -(static_cast<int>(world.startX)) - dim.width - game::HLINE; } @@ -1120,7 +1114,7 @@ void WorldSystem::goWorldRight(Position& p, Solid &d) while (waitToSwap) std::this_thread::sleep_for(1ms); load(world.toRight); - game::engine.getSystem<PlayerSystem>()->setX(world.startX + HLINES(10)); + PlayerSystem::setX(world.startX + HLINES(10)); UISystem::fadeToggle(); } } @@ -1133,7 +1127,7 @@ void WorldSystem::goWorldLeft(Position& p) while (waitToSwap) std::this_thread::sleep_for(1ms); load(world.toLeft); - game::engine.getSystem<PlayerSystem>()->setX(world.startX * -1 - HLINES(15)); + PlayerSystem::setX(world.startX * -1 - HLINES(15)); UISystem::fadeToggle(); } } diff --git a/xml/entities.xml b/xml/entities.xml index 5c36eb9..b2292c8 100644 --- a/xml/entities.xml +++ b/xml/entities.xml @@ -58,7 +58,7 @@ <Visible value="0.2" /> <Sprite> <frame> - <src limb="0" offset="0,0" size="192,331" drawOffset="0,0">assets/nug.png</src> + <src limb="0" offset="0,0" size="48,24" drawOffset="0,0">assets/skirl.png</src> </frame> </Sprite> <Direction /> |