84 lines
1.8 KiB
C++
84 lines
1.8 KiB
C++
|
|
||
|
/*=========================================================================
|
||
|
|
||
|
pshitgnd.cpp
|
||
|
|
||
|
Author: PKG
|
||
|
Created:
|
||
|
Project: Spongebob
|
||
|
Purpose:
|
||
|
|
||
|
Copyright (c) 2001 Climax Development Ltd
|
||
|
|
||
|
===========================================================================*/
|
||
|
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Includes
|
||
|
-------- */
|
||
|
|
||
|
#include "player\pshitgnd.h"
|
||
|
|
||
|
#ifndef __PLAYER_PMODES_H__
|
||
|
#include "player\pmodes.h"
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/* Std Lib
|
||
|
------- */
|
||
|
|
||
|
/* Data
|
||
|
---- */
|
||
|
|
||
|
#ifndef __ANIM_SPONGEBOB_HEADER__
|
||
|
#include <ACTOR_SPONGEBOB_ANIM.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Tyepdefs && Defines
|
||
|
------------------- */
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Structure defintions
|
||
|
-------------------- */
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Function Prototypes
|
||
|
------------------- */
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Vars
|
||
|
---- */
|
||
|
|
||
|
CPlayerStateHitGround s_stateHitGround;
|
||
|
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Function:
|
||
|
Purpose:
|
||
|
Params:
|
||
|
Returns:
|
||
|
---------------------------------------------------------------------- */
|
||
|
void CPlayerStateHitGround::enter(CPlayerModeBase *_playerMode)
|
||
|
{
|
||
|
_playerMode->setAnimNo(ANIM_SPONGEBOB_HITGROUND);
|
||
|
}
|
||
|
|
||
|
/*----------------------------------------------------------------------
|
||
|
Function:
|
||
|
Purpose:
|
||
|
Params:
|
||
|
Returns:
|
||
|
---------------------------------------------------------------------- */
|
||
|
void CPlayerStateHitGround::think(CPlayerModeBase *_playerMode)
|
||
|
{
|
||
|
if(_playerMode->advanceAnimFrameAndCheckForEndOfAnim())
|
||
|
{
|
||
|
_playerMode->setState(STATE_GETUP);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*===========================================================================
|
||
|
end */
|