openmohaa/code/fgame/actor_weaponless.cpp

192 lines
3.7 KiB
C++
Raw Normal View History

2016-03-27 11:49:47 +02:00
/*
===========================================================================
Copyright (C) 2015 the OpenMoHAA team
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_weaponless.cpp
#include "actor.h"
void Actor::InitWeaponless
(
GlobalFuncs_t *func
)
{
func->ThinkState = &Actor::Think_Weaponless;
func->BeginState = &Actor::Begin_Weaponless;
func->SuspendState = &Actor::Suspend_Weaponless;
func->PassesTransitionConditions = &Actor::PassesTransitionConditions_Attack;
func->FinishedAnimation = &Actor::FinishedAnimation_Weaponless;
func->IsState = &Actor::IsAttackState;
}
void Actor::Begin_Weaponless
(
void
)
{
2018-08-29 14:41:48 +02:00
DoForceActivate();
m_csMood = STRING_ALERT;
m_csIdleMood = STRING_NERVOUS;
if (level.inttime < m_iEnemyChangeTime + 200)
{
SetLeashHome(origin);
if (AttackEntryAnimation())
{
m_bLockThinkState = true;
2019-06-30 23:03:24 +02:00
TransitionState(902, 0);
2018-08-29 14:41:48 +02:00
}
}
2019-06-30 23:03:24 +02:00
TransitionState(900, 0);
2016-03-27 11:49:47 +02:00
}
void Actor::Suspend_Weaponless
(
void
)
{
2018-08-29 14:41:48 +02:00
if (m_State <= 902)
{
2019-06-30 23:03:24 +02:00
TransitionState(900, 0);
2018-08-29 14:41:48 +02:00
}
2016-03-27 11:49:47 +02:00
}
void Actor::Think_Weaponless
(
void
)
{
2018-08-29 14:41:48 +02:00
if (RequireThink())
{
UpdateEyeOrigin();
NoPoint();
UpdateEnemy(500);
if (m_State == 902)
{
ContinueAnimation();
}
else
{
m_bLockThinkState = false;
if (!m_Enemy)
{
2018-09-05 16:55:10 +02:00
SetThinkState(THINKSTATE_IDLE, THINKLEVEL_NORMAL);
2018-08-29 14:41:48 +02:00
IdleThink();
return;
}
if (m_State == 900)
{
State_Weaponless_Normal();
}
else if (m_State == 901)
{
2018-09-17 23:50:38 +02:00
State_Weaponless_Grenade();
2018-08-29 14:41:48 +02:00
}
else
{
Com_Printf("Think_Weaponless: invalid think state %i\n", m_State);
2018-09-17 23:50:38 +02:00
char assertStr[16317] = { 0 };
strcpy(assertStr, "\"invalid think state\"\n\tMessage: ");
Q_strcat(assertStr, sizeof(assertStr), DumpCallTrace("thinkstate = %i", m_State));
assert(!assertStr);
2018-08-29 14:41:48 +02:00
}
2018-09-17 23:50:38 +02:00
CheckForTransition(THINKSTATE_GRENADE, THINKLEVEL_NORMAL);
2018-08-29 14:41:48 +02:00
}
PostThink(true);
if (GetWeapon(WEAPON_MAIN))
2018-09-05 16:55:10 +02:00
SetThink(THINKSTATE_ATTACK, THINK_TURRET);
2018-08-29 14:41:48 +02:00
}
2016-03-27 11:49:47 +02:00
}
void Actor::FinishedAnimation_Weaponless
(
void
)
{
2018-08-29 14:41:48 +02:00
if (m_State <= 902)
{
2019-06-30 23:03:24 +02:00
TransitionState(900, 4000);
2018-08-29 14:41:48 +02:00
}
2016-03-27 11:49:47 +02:00
}
void Actor::State_Weaponless_Normal
(
void
)
{
2018-08-29 14:41:48 +02:00
int iStateTime;
if (m_bScriptGoalValid)
SetPath(
m_vScriptGoal,
2018-09-17 23:50:38 +02:00
NULL,
2018-08-29 14:41:48 +02:00
0,
NULL,
0);
if (PathExists() && !PathComplete())
{
FaceMotion();
Anim_RunToDanger(3);
}
else
{
m_bScriptGoalValid = false;
2018-09-17 23:50:38 +02:00
AimAtTargetPos();
2018-08-29 14:41:48 +02:00
Anim_Stand();
2018-09-05 16:55:10 +02:00
if (level.inttime >= m_iStateTime)
2018-08-29 14:41:48 +02:00
{
if (DecideToThrowGrenade(m_Enemy->velocity + m_Enemy->origin, &m_vGrenadeVel, &m_eGrenadeMode))
{
2018-09-05 16:55:10 +02:00
SetDesiredYawDir(m_vGrenadeVel);
2018-08-29 14:41:48 +02:00
m_State = 901;
m_eNextAnimMode = 1;
m_bNextForceStart = false;
m_csNextAnimString = (m_eGrenadeMode == AI_GREN_TOSS_ROLL) ? STRING_ANIM_GRENADETOSS_SCR : STRING_ANIM_GRENADETHROW_SCR;
iStateTime = level.inttime;
}
else
{
m_State = 900;
iStateTime = level.inttime + 1000;
}
m_iStateTime = iStateTime;
}
}
2016-03-27 11:49:47 +02:00
}
2018-09-17 23:50:38 +02:00
void Actor::State_Weaponless_Grenade
(
void
)
{
GenericGrenadeTossThink();
}