summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2005-01-05 15:39:43 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2005-01-05 15:39:43 +0000
commitb1acd70f999fcd981512829cf6100ad9d358d0e6 (patch)
tree612280d20fce53c15160e1765e4202d4f19c5337 /src/being.cpp
parent9978e58ee7d9a15814b939fa8dd42254e16702b2 (diff)
downloadmana-client-b1acd70f999fcd981512829cf6100ad9d358d0e6.tar.gz
mana-client-b1acd70f999fcd981512829cf6100ad9d358d0e6.tar.bz2
mana-client-b1acd70f999fcd981512829cf6100ad9d358d0e6.tar.xz
mana-client-b1acd70f999fcd981512829cf6100ad9d358d0e6.zip
- Fixing DevCpp project file again
- Started being structure conversion
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 65eb707e..66d7cea0 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -147,3 +147,34 @@ void empty_path(NODE *node) {
node->path = NULL;
}
}
+
+// Beings restructuration
+
+Being::Being() {
+ id = 0; job = 0;
+ action = 0; frame = 0;
+ path = NULL; speech = NULL; speech_time = 0;
+ tick_time = 0; speed = 150;
+ emotion = 0; emotion_time = 0;
+ text_x = 0; text_y = 0;
+ hair_style = 1; hair_color = 1;
+ weapon = 0;
+ x = 0; y = 0; direction = 0;
+ speech_color = makecol(0, 0, 0);
+}
+
+Being::~Being() {
+ if(path) {
+ PATH_NODE *temp = path;
+ PATH_NODE *next;
+ while (temp) {
+ next = temp->next;
+ delete temp;
+ temp = next;
+ }
+ path = NULL;
+ }
+ if(speech) {
+ free(speech);
+ }
+} \ No newline at end of file