diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-11 13:21:37 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-11 13:21:37 -0600 |
commit | eb2b9c4c9cfacd6ec5aae8dae27f0a9389a9205d (patch) | |
tree | 29998c311150d8b13c55bb2b0f9e65aa7d2657de /src/being.cpp | |
parent | a3d675e1dde4c80e687c7264bc86c6189c13dddb (diff) | |
download | mana-eb2b9c4c9cfacd6ec5aae8dae27f0a9389a9205d.tar.gz mana-eb2b9c4c9cfacd6ec5aae8dae27f0a9389a9205d.tar.bz2 mana-eb2b9c4c9cfacd6ec5aae8dae27f0a9389a9205d.tar.xz mana-eb2b9c4c9cfacd6ec5aae8dae27f0a9389a9205d.zip |
Fix segfault when being count reaches 0 too often
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 56 |
1 files changed, 27 insertions, 29 deletions
diff --git a/src/being.cpp b/src/being.cpp index e6a8229f..4d3bcfa0 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -58,7 +58,6 @@ #define BEING_EFFECTS_FILE "effects.xml" #define HAIR_FILE "hair.xml" -int Being::instances = 0; int Being::mNumberOfHairstyles = 1; std::vector<AnimatedSprite*> Being::emotionSet; @@ -100,29 +99,6 @@ Being::Being(int id, int job, Map *map): mSpeechBubble = new SpeechBubble; - if (instances == 0) - { - // Setup emote sprites - for (int i = 0; i <= EmoteDB::getLast(); i++) - { - EmoteInfo info = EmoteDB::get(i); - - std::string file = "graphics/sprites/" + info.sprites.front()->sprite; - int variant = info.sprites.front()->variant; - emotionSet.push_back(AnimatedSprite::load(file, variant)); - } - - // Hairstyles are encoded as negative numbers. Count how far negative - // we can go. - int hairstyles = 1; - while (ItemDB::get(-hairstyles).getSprite(GENDER_MALE) != "error.xml") - { - hairstyles++; - } - mNumberOfHairstyles = hairstyles; - } - - instances++; mSpeech = ""; mNameColor = 0x202020; mText = 0; @@ -139,11 +115,6 @@ Being::~Being() setMap(NULL); - instances--; - - if (instances == 0) - delete_all(emotionSet); - delete mSpeechBubble; delete mText; } @@ -860,3 +831,30 @@ static void initializeHair() hairInitialized = 1; } + +void Being::load() +{ + // Setup emote sprites + for (int i = 0; i <= EmoteDB::getLast(); i++) + { + EmoteInfo info = EmoteDB::get(i); + + std::string file = "graphics/sprites/" + info.sprites.front()->sprite; + int variant = info.sprites.front()->variant; + emotionSet.push_back(AnimatedSprite::load(file, variant)); + } + + // Hairstyles are encoded as negative numbers. Count how far negative + // we can go. + int hairstyles = 1; + while (ItemDB::get(-hairstyles).getSprite(GENDER_MALE) != "error.xml") + { + hairstyles++; + } + mNumberOfHairstyles = hairstyles; +} + +void Being::cleanup() +{ + delete_all(emotionSet); +}
\ No newline at end of file |