aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/world.hpp')
-rw-r--r--include/world.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/world.hpp b/include/world.hpp
index fa8e4d8..e240973 100644
--- a/include/world.hpp
+++ b/include/world.hpp
@@ -27,8 +27,7 @@ enum class WorldBGType : unsigned int {
* Weather is set by the world somewhere.
*/
enum class WorldWeather : unsigned char {
- Sunny = 0, /**< Sunny/daytime */
- Dark, /**< Nighttime */
+ None = 0, /**< None (sunny) */
Rain, /**< Rain */
Snowy /**< Snow */
};
@@ -265,6 +264,7 @@ protected:
* @see addStructure()
* @see getStructurePos()
*/
+ std::vector<Structures *> build;
/**
* A vector of all villages in the world.
@@ -291,7 +291,6 @@ protected:
public:
- std::vector<Structures *> build;
/**
* A vector of pointers to all entities from the other vectors.
* This is used to mass-manage entities, or operate on entities
@@ -349,7 +348,7 @@ public:
/**
* Updates entity positions, time of day, and music.
*/
- void update(Player *p, unsigned int delta, unsigned int ticks);
+ void update(Player *p, unsigned int delta);
/**
* Gets the width of the world, presumably in pixels.
@@ -417,6 +416,9 @@ public:
std::string getWeatherStr(void) const;
const WorldWeather& getWeatherId(void) const;
+ // sets the weatherrrr
+ void setWeather(const std::string& w);
+
// sets / gets pathnames of XML files for worlds to the left and right
std::string setToLeft(std::string file);
std::string setToRight(std::string file);