diff options
Diffstat (limited to 'include/world.hpp')
-rw-r--r-- | include/world.hpp | 49 |
1 files changed, 23 insertions, 26 deletions
diff --git a/include/world.hpp b/include/world.hpp index e47f78f..163676d 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -108,36 +108,38 @@ private: /** * The world's data. */ - WorldData2 world; + static WorldData2 world; /** * SDL's object for handling the background music. */ - Mix_Music *bgmObj; - std::string bgmCurrent; + static Mix_Music *bgmObj; + static std::string bgmCurrent; /** * Paths of files to get stylized textures from. */ - std::vector<std::string> bgFiles; + static std::vector<std::string> bgFiles; /** * Allows for iteration between background textures, for rendering. */ - TextureIterator bgTex; + static TextureIterator bgTex; /** * An object to handle and parse world XML files. */ - XMLDocument xmlDoc; + static XMLDocument xmlDoc; /** * The file path to the currently loaded world. */ - std::string currentXMLFile; + static std::string currentXMLFile; + + static std::vector<vec2> stars; public: - std::thread thAmbient; + static std::thread thAmbient; explicit WorldSystem(void); ~WorldSystem(void); @@ -146,37 +148,32 @@ public: ev.subscribe<BGMToggleEvent>(*this); } - inline XMLDocument* getXML(void) + static inline XMLDocument* getXML(void) { return &xmlDoc; } - inline float getWidth(void) const + static inline float getWidth(void) //const { return world.startX * -2.0f; } - float isAboveGround(const vec2& p) const; + static inline const std::string& getXMLFile(void) //const + { return currentXMLFile; } - void receive(const BGMToggleEvent &bte); + static float isAboveGround(const vec2& p); //const; + void receive(const BGMToggleEvent &bte); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; - void render(void); + static void render(void); - inline const std::string& getXMLFile(void) const - { return currentXMLFile; } void detect(entityx::TimeDelta dt); - void goWorldLeft(Position& p); - void goWorldRight(Position& p, Solid &d); - void goWorldPortal(Position& p); - - // worlddata2 stuff - WorldData2 worldData; + static void goWorldLeft(Position& p); + static void goWorldRight(Position& p, Solid &d); + static void goWorldPortal(Position& p); - void generate(int width = 0); - //void addHole(const unsigned int& start, const unsigned int& end); - //void addHill(const ivec2& peak, const unsigned int& width); + static void generate(int width = 0); - bool save(void); - void load(const std::string& file); + static bool save(void); + static void load(const std::string& file); void fight(entityx::Entity entity); }; |