aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-05-02 08:49:17 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-05-02 08:49:17 -0400
commit6a728a46d837384074228959d6330ba29e03aee0 (patch)
tree9a4deef7aea5c6b936eebdb01d8538744030d116 /include
parentafa34b3140979874d46a362e83dc0d1eebd137eb (diff)
arena/page fixes
Diffstat (limited to 'include')
-rw-r--r--include/common.hpp11
-rw-r--r--include/mob.hpp1
-rw-r--r--include/texture.hpp2
-rw-r--r--include/ui.hpp2
-rw-r--r--include/world.hpp7
5 files changed, 16 insertions, 7 deletions
diff --git a/include/common.hpp b/include/common.hpp
index e607c12..b9e0e71 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -154,7 +154,6 @@ void safeSetColor(int r,int g,int b);
*/
void safeSetColorA(int r,int g,int b,int a);
-
// use our own millis function if we can, windows doesn't like <chrono> at the moment...
#ifdef __WIN32__
#define millis() SDL_GetTicks()
@@ -174,4 +173,14 @@ const char *readFile(const char *path);
// aborts the program, printing the given error
void UserError(std::string reason);
+namespace std {
+ template<class T>
+ constexpr const T& clamp(const T& v, const T& lo, const T& hi) {
+ if (v < hi)
+ return (v > lo) ? v : lo;
+ else
+ return (v < hi) ? v : hi;
+ }
+}
+
#endif // COMMON_H
diff --git a/include/mob.hpp b/include/mob.hpp
index 48be456..adaecb4 100644
--- a/include/mob.hpp
+++ b/include/mob.hpp
@@ -40,6 +40,7 @@ constexpr Mob *Mobp(Entity *e) {
class Page : public Mob {
private:
std::string pageTexPath;
+ GLuint pageTexture;
public:
Page(void);
diff --git a/include/texture.hpp b/include/texture.hpp
index 59358f2..22a2459 100644
--- a/include/texture.hpp
+++ b/include/texture.hpp
@@ -13,13 +13,11 @@
* When defined, DEBUG allows extra messages to be printed to the terminal for
* debugging purposes.
*/
-
#define DEBUG
/**
* Texture functions are given a namespace for better organization.
*/
-
namespace Texture {
/**
diff --git a/include/ui.hpp b/include/ui.hpp
index 7cee885..4c5f2c2 100644
--- a/include/ui.hpp
+++ b/include/ui.hpp
@@ -136,7 +136,7 @@ namespace ui {
void waitForDialog(void);
bool pageExists(void);
- void drawPage(std::string path);
+ void drawPage(const GLuint& tex);
void dontTypeOut(void);
/*
diff --git a/include/world.hpp b/include/world.hpp
index 0aea879..200b065 100644
--- a/include/world.hpp
+++ b/include/world.hpp
@@ -180,6 +180,9 @@ public:
// gets the world's width in TODO
int getTheWidth(void) const;
+ // gets the starting x coordinate of the world
+ float getWorldStart(void) const;
+
// gets a pointer to the most recently added light
Light *getLastLight(void);
@@ -305,6 +308,7 @@ public:
* transported to a temporary world with the player, and the Mob will be
* killed upon exiting the arena.
*/
+
class Arena : public World {
private:
@@ -323,21 +327,18 @@ public:
WorldSwitchInfo exitArena(Player *p);
};
-
std::string getWorldWeatherStr(WorldWeather ww);
/**
* Loads the player into the world created by the given XML file. If a world is
* already loaded it will be saved before the transition is made.
*/
-
World *loadWorldFromXML(std::string path);
/**
* Loads the player into the XML-scripted world, but does not save data from the
* previous world if one was loaded.
*/
-
World *loadWorldFromXMLNoSave(std::string path);
World *loadWorldFromPtr(World *ptr);