X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FPerson.h;h=56d4f5490b87fe0562558594702b723037d25f97;hb=fe7e2a8681a5988af06f7cbd24b3c8cc447b0738;hp=e036f884925199ebb57583b0470c7fdced4a620a;hpb=fcdac6a36d47d719a12f3db7a7f0a0ae59e47ef7;p=lugaru.git diff --git a/Source/Person.h b/Source/Person.h index e036f88..56d4f54 100644 --- a/Source/Person.h +++ b/Source/Person.h @@ -337,27 +337,54 @@ class Person { return animation_bits[targetanimation] & ab_sit; } - bool isSleeping(); - - - bool wasCrouch(); - bool isCrouch(); + + bool isSleeping() + { + return animation_bits[targetanimation] & ab_sleep; + } + + bool wasCrouch() + { + return animation_bits[currentanimation] & ab_crouch; + } + bool isCrouch() + { + return animation_bits[targetanimation] & ab_crouch; + } int getCrouch(); - bool wasStop(); - bool isStop(); + bool wasStop() + { + return animation_bits[currentanimation] & ab_stop; + } + bool isStop() + { + return animation_bits[targetanimation] & ab_stop; + } int getStop(); bool wasSneak(); bool isSneak(); int getSneak(); - bool wasRun(); - bool isRun(); + bool wasRun() + { + return animation_bits[currentanimation] & ab_run; + } + bool isRun() + { + return animation_bits[targetanimation] & ab_run; + } int getRun(); - - bool wasLanding(); - bool isLanding(); + + bool wasLanding() + { + return animation_bits[currentanimation] & ab_land; + } + bool isLanding() + { + return animation_bits[targetanimation] & ab_land; + } int getLanding(); bool wasLandhard();