openmohaa/code/fgame/actor_killed.cpp

73 lines
1.9 KiB
C++
Raw Normal View History

2016-03-27 11:49:47 +02:00
/*
===========================================================================
2023-10-12 18:19:22 +02:00
Copyright (C) 2023 the OpenMoHAA team
2016-03-27 11:49:47 +02:00
This file is part of OpenMoHAA source code.
OpenMoHAA source code is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
OpenMoHAA source code is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenMoHAA source code; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
// actor_killed.cpp
#include "actor.h"
2023-10-12 18:19:22 +02:00
void Actor::InitDead(GlobalFuncs_t *func)
2016-03-27 11:49:47 +02:00
{
2023-10-12 18:19:22 +02:00
func->IsState = &Actor::IsKilledState;
2016-03-27 11:49:47 +02:00
}
2023-10-12 18:19:22 +02:00
void Actor::InitKilled(GlobalFuncs_t *func)
2016-03-27 11:49:47 +02:00
{
2023-10-12 18:19:22 +02:00
func->BeginState = &Actor::Begin_Killed;
func->ThinkState = &Actor::Think_Killed;
func->FinishedAnimation = &Actor::FinishedAnimation_Killed;
func->IsState = &Actor::IsKilledState;
2016-03-27 11:49:47 +02:00
}
2023-10-12 18:19:22 +02:00
void Actor::Begin_Killed(void)
2016-03-27 11:49:47 +02:00
{
2023-10-12 18:19:22 +02:00
ClearPath();
ResetBoneControllers();
2018-08-29 14:41:48 +02:00
2023-10-22 15:45:08 +02:00
PostEvent(EV_Actor_DeathEmbalm, 0.05f);
TransitionState(ACTOR_STATE_KILLED_BEGIN, 0);
2016-03-27 11:49:47 +02:00
}
2023-10-12 18:19:22 +02:00
void Actor::Think_Killed(void)
2016-03-27 11:49:47 +02:00
{
2023-10-12 18:19:22 +02:00
Unregister(STRING_ANIMDONE);
2023-10-22 15:45:08 +02:00
if (m_State != ACTOR_STATE_KILLED_BEGIN) {
2023-10-12 18:19:22 +02:00
m_pszDebugState = "end";
2023-10-22 15:45:08 +02:00
return;
2023-10-12 18:19:22 +02:00
}
2023-10-22 15:45:08 +02:00
m_pszDebugState = "begin";
NoPoint();
ForwardLook();
StopTurning();
Anim_Killed();
PostThink(false);
2016-03-27 11:49:47 +02:00
}
2023-10-12 18:19:22 +02:00
void Actor::FinishedAnimation_Killed(void)
2016-03-27 11:49:47 +02:00
{
2023-10-12 18:19:22 +02:00
BecomeCorpse();
2023-10-22 15:45:08 +02:00
TransitionState(ACTOR_STATE_KILLED_END);
2016-03-27 11:49:47 +02:00
}