aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-11 21:20:57 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-11 21:20:57 -0500
commitb018bfd5d69a51b352cc87cf92136a0b20712845 (patch)
tree7f2406454b286f017b9507239714674a6f7e0fc0 /include
parent37ae27d47e148f3b4b7eaaa76ce98df680abcc6f (diff)
who knows
Diffstat (limited to 'include')
-rw-r--r--include/common.hpp23
-rw-r--r--include/components.hpp11
2 files changed, 15 insertions, 19 deletions
diff --git a/include/common.hpp b/include/common.hpp
index 1178540..12231dc 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -54,8 +54,6 @@ using uint = unsigned int;
*/
#define DEBUG_printf(message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__)
-#define BREAKPOINT __asm__("int $3")
-
#define coalesce(v1, v2) ((v1 != nullptr) ? v1 : v2)
/**
@@ -193,12 +191,12 @@ public:
/**
* The amount of game ticks that should occur each second.
*/
-constexpr const unsigned int TICKS_PER_SEC = 20;
+constexpr unsigned int TICKS_PER_SEC = 20;
/**
* The amount of milliseconds it takes for a game tick to fire.
*/
-constexpr const float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC;
+constexpr float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC;
/**
* Separates a string into tokens using the given delimiter.
@@ -218,16 +216,6 @@ std::vector<std::string> StringTokenizer(const std::string& str, char delim);
vec2 str2coord(std::string s);
/**
- * A function to draw a colored box for OpenGL.
- * To use it, the lower left hand and upper right hand coords are given.
- *
- * @param the lower left coordinate
- * @param the upper right coordinate
- * @param the z coordinate
- */
-void drawRect(vec2 ll, vec2 ur, float z);
-
-/**
* Returns a measurement in HLINEs
*
* @param the number of HLINEs, integer or decimal
@@ -252,7 +240,7 @@ inline T HLINES(const T &n)
#define randGet rand
// defines pi for calculations that need it.
-constexpr const float PI = 3.1415926535f;
+constexpr float PI = 3.1415926535f;
// references the variable in main.cpp, used for drawing with the player
extern vec2 offset;
@@ -266,10 +254,7 @@ void DEBUG_prints(const char* file, int line, const char *s,...);
unsigned int millis(void);
// reads the names of files in a directory into the given string vector
-int getdir(std::string dir, std::vector<std::string> &files);
-
-// sorts a vector of strings alphabetically
-void strVectorSortAlpha(std::vector<std::string> *v);
+int getdir(std::string dir, std::list<std::string>& files);
// reads the given file into a buffer and returns a pointer to the buffer
std::string readFile(const std::string& path);
diff --git a/include/components.hpp b/include/components.hpp
index 805e8b2..00ac8fa 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -335,9 +335,20 @@ class RenderSystem : public entityx::System<RenderSystem> {
private:
std::string loadTexString;
Texture loadTexResult;
+
+ float fadeIntensity;
+ bool fadeIn;
public:
+ RenderSystem(void)
+ : fadeIntensity(1), fadeIn(true) {}
+
Texture loadTexture(const std::string& file);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
+
+ void fade(void);
+ void fadeLock(void);
+ void unfade(void);
+ void unfadeLock(void);
};
class DialogSystem : public entityx::System<DialogSystem>, public entityx::Receiver<DialogSystem> {