]> git.localhorst.tv Git - blobs.git/commitdiff
log death just once
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 4 Dec 2017 14:05:16 +0000 (15:05 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 4 Dec 2017 14:05:16 +0000 (15:05 +0100)
src/creature/creature.cpp

index 39b96b22cafda71e9cfdae849e5cb50234319ffa..8c7d23569ac42b039f4ffe604b0cd2d9e177969d 100644 (file)
@@ -209,22 +209,6 @@ void Creature::DoWork(double amount) noexcept {
 void Creature::Hurt(double amount) noexcept {
        stats.Damage().Add(amount);
        if (stats.Damage().Full()) {
-               std::ostream &log = sim.Log() << name << " ";
-               if (stats.Exhaustion().Full()) {
-                       log << "died of exhaustion";
-               } else if (stats.Breath().Full()) {
-                       log << "suffocated";
-               } else if (stats.Thirst().Full()) {
-                       log << "died of thirst";
-               } else if (stats.Hunger().Full()) {
-                       log << "starved to death";
-               } else {
-                       log << "succumed to wounds";
-               }
-               log << " at an age of " << ui::TimeString(Age())
-                       << " (" << ui::PercentageString(Age() / properties.Lifetime())
-                       << " of life expectancy of " << ui::TimeString(properties.Lifetime())
-                       << ")" << std::endl;
                Die();
        }
 }
@@ -232,6 +216,23 @@ void Creature::Hurt(double amount) noexcept {
 void Creature::Die() noexcept {
        if (Dead()) return;
 
+       std::ostream &log = sim.Log() << name << " ";
+       if (stats.Exhaustion().Full()) {
+               log << "died of exhaustion";
+       } else if (stats.Breath().Full()) {
+               log << "suffocated";
+       } else if (stats.Thirst().Full()) {
+               log << "died of thirst";
+       } else if (stats.Hunger().Full()) {
+               log << "starved to death";
+       } else {
+               log << "succumed to wounds";
+       }
+       log << " at an age of " << ui::TimeString(Age())
+               << " (" << ui::PercentageString(Age() / properties.Lifetime())
+               << " of life expectancy of " << ui::TimeString(properties.Lifetime())
+               << ")" << std::endl;
+
        sim.SetDead(this);
        death = sim.Time();
        steering.Off();