aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.hpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-06-16 08:49:43 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-06-16 08:49:43 -0400
commit18377e3c0efe9359c341c0c330f6de1697afb788 (patch)
tree3ee15915820fa10832dfb17a0cf63382b476de58 /include/entities.hpp
parent1b49be1c9c8e8887564dbb0aa69519bc538d81e7 (diff)
Changes
Diffstat (limited to 'include/entities.hpp')
-rw-r--r--include/entities.hpp100
1 files changed, 57 insertions, 43 deletions
diff --git a/include/entities.hpp b/include/entities.hpp
index 7e68be3..2523364 100644
--- a/include/entities.hpp
+++ b/include/entities.hpp
@@ -109,6 +109,60 @@ extern const unsigned int NPC_INV_SIZE;
class World;
/**
+ * 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()
+ {
+ loc = vec2(0,0);
+ color = Color(1.0, 1.0, 1.0);
+ radius = 0;
+
+ belongsTo = false;
+ following = nullptr;
+
+ flame = false;
+ }
+
+ Light(vec2 l, float r, Color c)
+ {
+ loc = l;
+ color = c;
+ radius = r;
+
+ belongsTo = false;
+ following = nullptr;
+
+ flame = false;
+ }
+
+ void follow(Entity *f)
+ {
+ following = f;
+ belongsTo = true;
+ }
+
+ void makeFlame(void)
+ {
+ flame = true;
+ }
+
+ void createFromXML(XMLElement *e);
+};
+
+/**
* The entity class.
* This class contains common functions and variables for all types of
* entities, i.e. a common structure.
@@ -174,6 +228,9 @@ public:
// the entity's inventory
Inventory *inv;
+ // the entity's light
+ Light light;
+
// the entity's health
float health;
@@ -349,49 +406,6 @@ public:
};
/**
- * 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, float r, Color c)
- {
- loc = l;
- color = c;
- radius = r;
-
- belongsTo = false;
- following = nullptr;
-
- flame = false;
- }
-
- void follow(Entity *f)
- {
- following = f;
- belongsTo = true;
- }
-
- void makeFlame(void)
- {
- flame = true;
- }
-
- void createFromXML(XMLElement *e);
-};
-
-/**
* The particle class, handles a single particle.
*/
class Particles{