aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-10-04 19:39:08 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-10-04 19:39:08 -0400
commite58c8920f5332678e4446a8c33bc74a716024010 (patch)
tree7cc26dfbf5c7999047a39659794eafcd00769d3d /include/entities.h
parent63dc9b399db9faef611c31629e0265b954d74197 (diff)
parenta277430f0ddde9ea2583f4b0c44fcafe8a2528bf (diff)
Added texture support and basic textures
Diffstat (limited to 'include/entities.h')
-rw-r--r--include/entities.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/entities.h b/include/entities.h
index d4df811..a2ecfac 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -2,18 +2,25 @@
#define ENTITIES_H
#include <common.h>
+#include <inventory.h>
#define NPCp(n) ((NPC *)n)
+#define PLAYER_INV_SIZE 30 // The size of the player's inventory
+#define NPC_INV_SIZE 3 // Size of an NPC's inventory
+
extern FILE* names;
class Entity{
public:
+ Inventory *inv;
+
void *inWorld;
+
float width; //width and height of the player
float height;
float speed; //speed of the play
- //type and subtype
+
int subtype;
_TYPE type;
//example:
@@ -21,8 +28,10 @@ public:
// |(subtype)
// |-> 0 Base NPC
// |-> 1 Merchant
+
vec2 loc; //location and velocity of the entity
vec2 vel;
+
bool near;
bool right,left, canMove; //movement variables
bool alive; //the flag for whether or not the entity is alive