SBSPSS/source/player/psjump.cpp

128 lines
2.5 KiB
C++
Raw Permalink Normal View History

2001-01-19 23:54:48 +01:00
/*=========================================================================
psjump.cpp
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\psjump.h"
#ifndef __PLAYER_PLAYER_H__
#include "player\player.h"
#endif
2001-03-23 21:09:14 +01:00
#ifndef __PLAYER_PMODES_H__
#include "player\pmodes.h"
#endif
2001-02-01 18:01:12 +01:00
#ifndef __SOUND_SOUND_H__
#include "sound\sound.h"
#endif
2001-01-19 23:54:48 +01:00
/* Std Lib
------- */
/* Data
---- */
2001-02-26 21:05:31 +01:00
#ifndef __ANIM_SPONGEBOB_HEADER__
#include <ACTOR_SPONGEBOB_ANIM.h>
2001-01-19 23:54:48 +01:00
#endif
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Function Prototypes
------------------- */
/*----------------------------------------------------------------------
Vars
---- */
2001-04-03 18:47:07 +02:00
CPlayerStateJump s_stateJump;
2001-01-19 23:54:48 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-03-25 22:36:28 +02:00
void CPlayerStateJump::enter(CPlayerModeBase *_playerMode)
2001-01-19 23:54:48 +01:00
{
2001-07-16 18:27:50 +02:00
// If already in this state then don't do the entry code
if(_playerMode->getState()!=STATE_JUMP)
{
_playerMode->setAnimNo(ANIM_SPONGEBOB_JUMP);
m_jumpFrames=0;
2001-03-23 21:09:14 +01:00
2001-07-16 18:27:50 +02:00
_playerMode->jump();
2001-02-01 18:01:12 +01:00
2001-07-16 18:27:50 +02:00
CSoundMediator::playSfx(CSoundMediator::SFX_SPONGEBOB_JUMP);
}
2001-01-19 23:54:48 +01:00
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-03-25 22:36:28 +02:00
void CPlayerStateJump::think(CPlayerModeBase *_playerMode)
2001-01-19 23:54:48 +01:00
{
2001-01-22 23:58:12 +01:00
const PlayerMetrics *metrics;
2001-02-09 22:41:55 +01:00
int controlHeld,controlDown;
2001-01-22 22:02:59 +01:00
2001-03-23 21:09:14 +01:00
metrics=_playerMode->getPlayerMetrics();
controlHeld=_playerMode->getPadInputHeld();
controlDown=_playerMode->getPadInputDown();
2001-01-19 23:54:48 +01:00
2001-04-09 22:10:22 +02:00
_playerMode->advanceAnimFrameAndCheckForEndOfAnim();
2001-02-15 20:54:13 +01:00
if(m_jumpFrames<=metrics->m_metric[PM__MAX_JUMP_FRAMES]&&controlHeld&PI_JUMP)
2001-01-19 23:54:48 +01:00
{
m_jumpFrames++;
}
else
{
2001-03-23 21:09:14 +01:00
_playerMode->setState(STATE_FALL);
2001-01-19 23:54:48 +01:00
}
2001-02-09 18:01:04 +01:00
if(controlHeld&PI_LEFT)
2001-01-19 23:54:48 +01:00
{
2001-03-23 21:09:14 +01:00
_playerMode->moveLeft();
2001-01-19 23:54:48 +01:00
}
2001-02-09 18:01:04 +01:00
else if(controlHeld&PI_RIGHT)
2001-01-19 23:54:48 +01:00
{
2001-03-23 21:09:14 +01:00
_playerMode->moveRight();
2001-01-19 23:54:48 +01:00
}
else
{
2001-03-23 21:09:14 +01:00
_playerMode->slowdown();
}
2001-01-19 23:54:48 +01:00
}
/*===========================================================================
end */