aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-04-21 18:44:47 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-04-21 18:44:47 -0400
commite04fae7b72b424e5019429a071ad2de9edf4df1f (patch)
treec45e432ed541ba287cf8e0924974315ff3b2afb2 /include/entities.hpp
parent941c1965002f114c6612dad6fc3f35d48261baff (diff)
more world rewriting
Diffstat (limited to 'include/entities.hpp')
-rw-r--r--include/entities.hpp48
1 files changed, 47 insertions, 1 deletions
diff --git a/include/entities.hpp b/include/entities.hpp
index 6cd5731..f38a5fe 100644
--- a/include/entities.hpp
+++ b/include/entities.hpp
@@ -13,7 +13,6 @@
#define NPCp(n) ((NPC *)n)
#define Structurep(n) ((Structures *)n)
#define Mobp(n) ((Mob *)n)
-#define Objectp(n) ((Object *)n)
#define PLAYER_INV_SIZE 43 // The size of the player's inventory
#define NPC_INV_SIZE 3 // Size of an NPC's inventory
@@ -275,7 +274,54 @@ public:
void reloadTexture(void);
void interact(void);
+
+ bool operator==(const Object &o) {
+ return !strcmp(name, o.name) && (loc == o.loc);
+ }
+};
+
+/**
+ * The light structure, used to store light coordinates and color.
+ */
+
+class Light{
+public:
+ vec2 loc; /**< Light location */
+ Color color; /**< Light color */
+ float radius; /**< Light radius */
+
+ bool belongsTo;
+ Entity *following;
+
+ bool flame;
+ float fireFlicker;
+ vec2 fireLoc;
+
+ Light(vec2 l, Color c, float r){
+ loc = l;
+ color = c;
+ radius = r;
+
+ belongsTo = false;
+ following = nullptr;
+
+ flame = false;
+ }
+
+ void makeFlame(void){
+ flame = true;
+ }
+
+ void follow(Entity *f){
+ following=f;
+ belongsTo = true;
+ }
};
+
+constexpr Object *Objectp(Entity *e) {
+ return (Object *)e;
+}
+
#endif // ENTITIES_H
/**