SBSPSS/source/player/player.cpp

1170 lines
25 KiB
C++
Raw Normal View History

2001-01-16 20:27:14 +01:00
/*=========================================================================
2001-01-09 21:38:20 +01:00
2001-01-16 20:27:14 +01:00
player.cpp
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
/*----------------------------------------------------------------------
Includes
-------- */
#include "player\player.h"
#ifndef __ANIM_HEADER__
2001-01-12 23:40:39 +01:00
#include "gfx\anim.h"
2001-01-16 20:27:14 +01:00
#endif
2001-01-09 21:38:20 +01:00
2001-01-16 20:27:14 +01:00
#ifndef __PAD_PADS_H__
2001-01-15 23:09:47 +01:00
#include "pad\pads.h"
2001-01-16 20:27:14 +01:00
#endif
2001-01-15 23:09:47 +01:00
2001-01-22 23:58:12 +01:00
#ifndef __GAME_GAMESLOT_H__
#include "game\gameslot.h"
#endif
2001-01-16 20:27:14 +01:00
2001-01-30 16:02:01 +01:00
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
2001-02-06 18:15:28 +01:00
#ifndef __LAYER_COLLISION_H__
#include "level\collision.h"
#endif
2001-01-16 20:27:14 +01:00
// to be removed
2001-01-12 23:40:39 +01:00
#include "gfx\tpage.h"
2001-01-16 20:27:14 +01:00
2001-01-12 23:40:39 +01:00
2001-01-16 20:27:14 +01:00
/* Std Lib
------- */
2001-01-15 23:09:47 +01:00
2001-01-16 20:27:14 +01:00
/* Data
---- */
2001-02-26 21:42:25 +01:00
#ifndef __ANIM_SPONGEBOB_HEADER__
#include <ACTOR_SPONGEBOB_ANIM.h>
2001-01-25 16:25:46 +01:00
#endif
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
2001-02-09 18:01:04 +01:00
//#define _RECORD_DEMO_MODE_
2001-02-09 22:41:55 +01:00
#ifdef __USER_paul__
#define _STATE_DEBUG_
#endif
2001-02-09 18:01:04 +01:00
2001-02-14 18:34:11 +01:00
#define SLIPSPEED 10 // Speed that player slips on icy surfaces
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-01-15 23:09:47 +01:00
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function Prototypes
------------------- */
/*----------------------------------------------------------------------
Vars
---- */
2001-01-15 23:09:47 +01:00
2001-02-09 18:01:04 +01:00
#ifdef _RECORD_DEMO_MODE_
#include "player\demoplay.h"
#define MAX_DEMO_SIZE 512 // So max size of a demo is 1k
2001-02-12 16:26:00 +01:00
#define MAX_DEMO_TIME_IN_FRAMES 30*60 // Recorded demo will last 30 seconds
2001-02-09 18:01:04 +01:00
static CDemoPlayer::demoPlayerControl s_demoControls[MAX_DEMO_SIZE]={{PI_NONE,0}};
static int s_demoSize=0;
static int s_demoFrameCount=0;
static void writeDemoControls()
{
char filename[32];
int fh;
int fc=MAX_DEMO_TIME_IN_FRAMES;
sprintf(filename,"demo____.dmo");
fh=PCcreat((char *)filename,0);
ASSERT(fh!=-1);
PCwrite(fh,(char*)&fc,sizeof(fc)); // frame count
PCwrite(fh,(char*)&s_demoSize,sizeof(s_demoSize)); // demo size
for(int i=0;i<s_demoSize;i++)
PCwrite(fh,(char*)&s_demoControls[i],sizeof(CDemoPlayer::demoPlayerControl)); // control data
PCclose(fh);
SYSTEM_DBGMSG("Written demo file %s with %d frames",filename,s_demoSize);
}
#endif
2001-02-09 22:41:55 +01:00
#ifdef _STATE_DEBUG_
static const char *s_stateText[NUM_STATES]=
{
"IDLE",
"IDLETEETER",
"JUMP",
"RUN",
"FALL",
"FALLFAR",
"BUTTBOUNCE",
"BUTTFALL",
"BUTTLAND",
"ATTACK",
"RUNATTACK",
"AIRATTACK",
"DUCK",
"SOAKUP",
"GETUP",
"DEAD",
};
static const char *s_modeText[NUM_PLAYERMODES]=
{
"BASICUNARMED",
"FULLUNARMED",
"SQUEAKYBOOTS",
"NET",
"CORALBLOWER",
};
#include "gfx\font.h"
FontBank s_debugFont;
#endif
2001-02-09 18:01:04 +01:00
2001-02-06 22:09:45 +01:00
int s_health;
2001-02-08 17:51:16 +01:00
int s_screenPos;
2001-02-14 21:28:57 +01:00
DVECTOR m_cameraScrollPos={0,600};
2001-02-08 17:51:16 +01:00
int MAP3D_CENTRE_X=170;
int MAP3D_CENTRE_Y=500;
int MAP3D_BLOCKSTEPSIZE=315;
int MAP2D_CENTRE_X=-256;
2001-02-22 18:01:34 +01:00
int MAP2D_CENTRE_Y=-136;
2001-02-08 17:51:16 +01:00
int MAP2D_BLOCKSTEPSIZE=16;
2001-02-12 16:26:00 +01:00
int CAMERA_SCROLLLIMIT=8; // SB is this many tiles off centre at most
int CAMERA_SCROLLTHRESHOLD=6; // If SB moves when more than this many tiles off-centre, the camera will *always* scroll
int CAMERA_STARTMOVETHRESHOLD=20; // If SB moves faster than this then the camera starts scrolling
int CAMERA_STOPMOVETHRESHOLD=10; // If SB moves slower than this then the camera stops scrolling
int CAMERA_SCROLLSPEED=60; // Speed of the scroll ( 60=1 tile scrolled every 4 and a bit frames )
2001-02-08 17:51:16 +01:00
int angg=900;
2001-02-09 18:01:04 +01:00
2001-02-06 22:09:45 +01:00
2001-01-22 23:58:12 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-12 23:40:39 +01:00
void CPlayer::init()
2001-01-09 21:38:20 +01:00
{
2001-01-16 17:20:45 +01:00
CThing::init();
2001-02-06 18:15:28 +01:00
m_layerCollision=NULL;
2001-01-16 17:20:45 +01:00
2001-02-22 16:37:03 +01:00
sActorHdr *Hdr=m_skel.Load(ACTORS_SPONGEBOB_A3D);
2001-01-16 17:20:45 +01:00
m_skel.Init(Hdr);
TPLoadTex(ACTORS_SPONGEBOB_TEX);
2001-02-26 21:42:25 +01:00
m_skel.setAnimDatabase(CAnimDB::Load(ACTORS_SPONGEBOB_ABK));
2001-01-16 17:20:45 +01:00
2001-02-12 18:55:01 +01:00
2001-02-14 21:28:57 +01:00
// Temporary default respawn pos... should realy be set with setRespawnPos() from the level (pkg)
m_respawnPos.vx=23*16;
m_respawnPos.vy=10*16;
2001-02-12 18:55:01 +01:00
2001-01-20 00:37:40 +01:00
m_animNo=0;
m_animFrame=0;
2001-01-26 19:20:41 +01:00
m_currentMode=PLAYER_MODE_BASICUNARMED;
2001-01-16 20:27:14 +01:00
setFacing(FACING_RIGHT);
2001-02-12 18:55:01 +01:00
respawn();
2001-01-20 00:37:40 +01:00
2001-01-22 23:58:12 +01:00
m_lives=CGameSlotManager::getSlotData().m_lives;
2001-01-25 16:25:46 +01:00
m_cameraOffset.vx=0;
m_cameraOffset.vy=0;
2001-02-14 21:28:57 +01:00
m_cameraScrollDir=0;
2001-01-29 23:35:18 +01:00
2001-02-09 18:01:04 +01:00
m_lastPadInput=m_padInput=PI_NONE;
2001-02-06 22:09:45 +01:00
2001-02-08 17:51:16 +01:00
s_screenPos=128;
m_skel.setAng(512);
//m_skel.setAngInc(678);
2001-02-09 22:41:55 +01:00
#ifdef _STATE_DEBUG_
s_debugFont.initialise(&standardFont);
s_debugFont.setJustification(FontBank::JUST_LEFT);
#endif
2001-02-26 21:42:25 +01:00
setCollisionSize(25,50);
setCollisionCentreOffset(0,-25);
2001-01-09 21:38:20 +01:00
}
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-12 23:40:39 +01:00
void CPlayer::shutdown()
2001-01-09 21:38:20 +01:00
{
2001-02-09 22:41:55 +01:00
#ifdef _STATE_DEBUG_
s_debugFont.dump();
#endif
2001-01-16 17:20:45 +01:00
CThing::shutdown();
2001-01-09 21:38:20 +01:00
}
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-02-06 18:15:28 +01:00
int newmode=-1;
2001-02-20 18:37:25 +01:00
#ifdef _STATE_DEBUG_
char posBuf[100];
#endif
2001-01-15 23:09:47 +01:00
void CPlayer::think(int _frames)
{
2001-01-25 16:25:46 +01:00
int i;
2001-01-16 17:20:45 +01:00
CThing::think(_frames);
2001-02-08 17:51:16 +01:00
m_skel.setAng(angg);
2001-01-29 23:35:18 +01:00
2001-02-06 18:15:28 +01:00
if(PadGetHeld(0)&PAD_L1&&PadGetHeld(0)&PAD_L2)
{
2001-02-12 20:35:29 +01:00
respawn();
2001-02-06 18:15:28 +01:00
}
2001-01-29 23:35:18 +01:00
if(newmode!=-1)
{
setMode((PLAYER_MODE)newmode);
newmode=-1;
}
2001-01-20 00:37:40 +01:00
2001-01-25 16:25:46 +01:00
for(i=0;i<_frames;i++)
2001-01-15 23:09:47 +01:00
{
2001-01-20 00:37:40 +01:00
// Think
2001-01-29 23:35:18 +01:00
updatePadInput();
2001-01-26 19:20:41 +01:00
m_currentStateClass->think(this);
2001-02-16 21:25:02 +01:00
thinkVerticalMovement();
thinkHorizontalMovement();
2001-01-25 23:19:47 +01:00
2001-02-20 18:37:25 +01:00
#ifdef _STATE_DEBUG_
sprintf(posBuf,"%03d (%02d) ,%03d (%02d) = dfg:%+02d",Pos.vx,Pos.vx&0x0f,Pos.vy,Pos.vy&0x0f,m_layerCollision->getHeightFromGround(Pos.vx,Pos.vy));
2001-02-16 21:25:02 +01:00
#endif
2001-01-31 21:16:34 +01:00
2001-01-22 23:58:12 +01:00
2001-02-16 23:53:16 +01:00
if(Pos.vx<64)Pos.vx=64;
else if(Pos.vx>m_mapEdge.vx-64)Pos.vx=m_mapEdge.vx-64;
if(Pos.vy<64)Pos.vy=64;
else if(Pos.vy>m_mapEdge.vy-64)Pos.vy=m_mapEdge.vy-64;
2001-02-12 21:14:31 +01:00
2001-01-25 16:25:46 +01:00
// Flashing..
2001-01-22 23:58:12 +01:00
if(m_invincibleFrameCount)
{
m_invincibleFrameCount--;
}
2001-01-31 22:05:12 +01:00
2001-02-09 18:01:04 +01:00
// Teeter if on an edge
if(m_currentState==STATE_IDLE&&isOnEdge())
{
setState(STATE_IDLETEETER);
}
2001-01-31 22:05:12 +01:00
// Look around
int pad=getPadInputHeld();
2001-02-09 22:41:55 +01:00
if(PadGetDown(0)&PAD_CIRCLE)
2001-02-02 18:48:40 +01:00
{
m_skel.blink();
}
2001-02-08 17:51:16 +01:00
2001-02-09 18:01:04 +01:00
// Camera scroll..
if(m_cameraScrollDir==-1)
2001-02-08 17:51:16 +01:00
{
2001-02-14 21:28:57 +01:00
if(m_cameraScrollPos.vx>-CAMERA_SCROLLLIMIT<<8)
2001-02-08 17:51:16 +01:00
{
2001-02-14 21:28:57 +01:00
m_cameraScrollPos.vx-=CAMERA_SCROLLSPEED;
if(m_cameraScrollPos.vx<-CAMERA_SCROLLLIMIT<<8)
2001-02-09 18:01:04 +01:00
{
2001-02-14 21:28:57 +01:00
m_cameraScrollPos.vx=-CAMERA_SCROLLLIMIT<<8;
2001-02-09 18:01:04 +01:00
m_cameraScrollDir=0;
}
2001-02-08 17:51:16 +01:00
}
}
2001-02-09 18:01:04 +01:00
else if(m_cameraScrollDir==+1)
2001-02-08 17:51:16 +01:00
{
2001-02-14 21:28:57 +01:00
if(m_cameraScrollPos.vx<(CAMERA_SCROLLLIMIT<<8))
2001-02-08 17:51:16 +01:00
{
2001-02-14 21:28:57 +01:00
m_cameraScrollPos.vx+=CAMERA_SCROLLSPEED;
if(m_cameraScrollPos.vx>CAMERA_SCROLLLIMIT<<8)
2001-02-09 18:01:04 +01:00
{
2001-02-14 21:28:57 +01:00
m_cameraScrollPos.vx=CAMERA_SCROLLLIMIT<<8;
2001-02-09 18:01:04 +01:00
m_cameraScrollDir=0;
}
2001-02-08 17:51:16 +01:00
}
}
2001-01-15 23:09:47 +01:00
}
2001-01-25 16:25:46 +01:00
2001-02-14 21:28:57 +01:00
2001-01-25 16:25:46 +01:00
// Move the camera offset
2001-02-22 18:01:34 +01:00
m_playerScreenPos.vx=MAP3D_CENTRE_X+((MAP3D_BLOCKSTEPSIZE*m_cameraScrollPos.vx)>>8);
m_playerScreenPos.vy=MAP3D_CENTRE_Y+((MAP3D_BLOCKSTEPSIZE*m_cameraScrollPos.vy)>>8);
m_cameraOffset.vx=MAP2D_CENTRE_X+((MAP2D_BLOCKSTEPSIZE*(-m_cameraScrollPos.vx))>>8);
m_cameraOffset.vy=MAP2D_CENTRE_Y+((MAP2D_BLOCKSTEPSIZE*(-m_cameraScrollPos.vy))>>8);
2001-02-09 18:01:04 +01:00
2001-02-12 16:26:00 +01:00
m_cameraPos.vx=Pos.vx+m_cameraOffset.vx;
m_cameraPos.vy=Pos.vy+m_cameraOffset.vy;
2001-02-09 18:01:04 +01:00
2001-02-12 16:26:00 +01:00
// Limit camera scroll to the edges of the map
if(m_cameraPos.vx<0)
{
2001-02-14 21:28:57 +01:00
m_playerScreenPos.vx+=m_cameraPos.vx*MAP3D_BLOCKSTEPSIZE/MAP2D_BLOCKSTEPSIZE;
2001-02-12 16:26:00 +01:00
m_cameraPos.vx=0;
2001-02-12 23:16:14 +01:00
m_cameraScrollDir=0;
2001-02-12 16:26:00 +01:00
}
else if(m_cameraPos.vx>m_mapCameraEdges.vx)
{
2001-02-14 21:28:57 +01:00
m_playerScreenPos.vx-=(m_mapCameraEdges.vx-m_cameraPos.vx)*MAP3D_BLOCKSTEPSIZE/MAP2D_BLOCKSTEPSIZE;
2001-02-12 16:26:00 +01:00
m_cameraPos.vx=m_mapCameraEdges.vx;
2001-02-12 23:16:14 +01:00
m_cameraScrollDir=0;
2001-02-12 16:26:00 +01:00
}
if(m_cameraPos.vy<0)
{
2001-02-14 21:28:57 +01:00
m_playerScreenPos.vy+=m_cameraPos.vy*MAP3D_BLOCKSTEPSIZE/MAP2D_BLOCKSTEPSIZE;
2001-02-12 16:26:00 +01:00
m_cameraPos.vy=0;
2001-02-12 23:16:14 +01:00
m_cameraScrollDir=0;
2001-02-12 16:26:00 +01:00
}
else if(m_cameraPos.vy>m_mapCameraEdges.vy)
{
2001-02-14 21:28:57 +01:00
m_playerScreenPos.vy-=(m_mapCameraEdges.vy-m_cameraPos.vy)*MAP3D_BLOCKSTEPSIZE/MAP2D_BLOCKSTEPSIZE;
2001-02-12 16:26:00 +01:00
m_cameraPos.vy=m_mapCameraEdges.vy;
2001-02-12 23:16:14 +01:00
m_cameraScrollDir=0;
2001-02-12 16:26:00 +01:00
}
2001-01-15 23:09:47 +01:00
}
2001-02-16 21:25:02 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::thinkVerticalMovement()
{
int colHeight;
2001-02-16 23:53:16 +01:00
colHeight=m_layerCollision->getHeightFromGround(Pos.vx,Pos.vy,1);
2001-02-16 21:25:02 +01:00
if(colHeight>=0)
{
// Above or on the ground
// Are we falling?
if(m_moveVel.vy>0)
{
// Yes.. Check to see if we're about to hit/go through the ground
2001-02-16 23:53:16 +01:00
colHeight=m_layerCollision->getHeightFromGround(Pos.vx,Pos.vy+(m_moveVel.vy>>VELOCITY_SHIFT),PLAYER_TERMINAL_VELOCITY+1);
2001-02-16 21:25:02 +01:00
if(colHeight<=0)
{
// Just hit the ground
// Stick at ground level
Pos.vy+=(m_moveVel.vy>>VELOCITY_SHIFT)+colHeight;
m_moveVel.vy=0;
m_fallFrames=0;
if(m_currentState==STATE_BUTTFALL)
{
// Landed from a butt bounce
setState(STATE_BUTTLAND);
}
else if(m_currentState==STATE_FALLFAR)
{
// Landed from a painfully long fall
setState(STATE_IDLE);
takeDamage(DAMAGE__FALL);
m_moveVel.vx=0;
CSoundMediator::playSfx(CSoundMediator::SFX_SPONGEBOB_LAND_AFTER_FALL);
}
else if(m_moveVel.vx)
{
// Landed from a jump with x movement
setState(STATE_RUN);
}
else
{
// Landed from a jump with no x movement
setState(STATE_IDLE);
2001-02-26 21:42:25 +01:00
setAnimNo(ANIM_SPONGEBOB_JUMPEND);
2001-02-16 21:25:02 +01:00
}
}
}
else if(colHeight)
{
if(m_currentState!=STATE_FALL&&m_currentState!=STATE_FALLFAR&&
m_currentState!=STATE_BUTTFALL&&m_currentState!=STATE_BUTTBOUNCE&&
m_currentState!=STATE_JUMP)
{
// Was floating in the air.. fall!
setState(STATE_FALL);
}
}
}
else
{
/*
// Below ground
// Perhaps we should be falling?
if(m_currentState!=STATE_FALL&&m_currentState!=STATE_FALLFAR&&
m_currentState!=STATE_BUTTFALL&&m_currentState!=STATE_BUTTBOUNCE&&
m_currentState!=STATE_JUMP)
{
setState(STATE_FALL);
}
*/
}
Pos.vy+=m_moveVel.vy>>VELOCITY_SHIFT;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::thinkHorizontalMovement()
{
if(m_moveVel.vx)
{
2001-02-16 23:53:16 +01:00
int colHeight;
colHeight=m_layerCollision->getHeightFromGround(Pos.vx,Pos.vy,5);
if(colHeight==0)
2001-02-16 21:25:02 +01:00
{
// Ok.. we're on the ground. What happens if we move left/right
colHeight=m_layerCollision->getHeightFromGround(Pos.vx+(m_moveVel.vx>>VELOCITY_SHIFT),Pos.vy);
if(colHeight<-8)
{
// Big step up. Stop at the edge of the obstruction
int dir,vx,cx,i;
if(m_moveVel.vx<0)
{
dir=-1;
vx=-m_moveVel.vx>>VELOCITY_SHIFT;
}
else
{
dir=+1;
vx=m_moveVel.vx>>VELOCITY_SHIFT;
}
cx=Pos.vx;
for(i=0;i<vx;i++)
{
if(m_layerCollision->getHeightFromGround(cx,Pos.vy)<-8)
{
break;
}
cx+=dir;
}
Pos.vx=cx-dir;
// If running then go to idle, otherwise leave in same state
if(m_currentState==STATE_RUN)
{
setState(STATE_IDLE);
}
m_moveVel.vx=0;
// Get the height at this new position and then try the step-up code below.
// Without this, there are problems when you run up a slope and hit a wall at the same time
colHeight=m_layerCollision->getHeightFromGround(Pos.vx,Pos.vy);
}
if(colHeight&&colHeight>=-8&&colHeight<=8)
{
// Small step up/down. Follow the contour of the level
Pos.vy+=colHeight;
}
}
else
{
// In the air
2001-02-19 22:49:02 +01:00
// if(!(colHeight<0&&m_currentState==STATE_JUMP)) // Lets you jump through platforms from below
if(colHeight>=0) // Lets you jump through platforms from below
2001-02-16 21:25:02 +01:00
{
2001-02-16 23:53:16 +01:00
colHeight=m_layerCollision->getHeightFromGround(Pos.vx+(m_moveVel.vx>>VELOCITY_SHIFT),Pos.vy,5);
if(colHeight<0)
2001-02-16 21:25:02 +01:00
{
2001-02-16 23:53:16 +01:00
// Stop at the edge of the obstruction
int dir,vx,cx,i;
if(m_moveVel.vx<0)
2001-02-16 21:25:02 +01:00
{
2001-02-16 23:53:16 +01:00
dir=-1;
vx=-m_moveVel.vx>>VELOCITY_SHIFT;
2001-02-16 21:25:02 +01:00
}
2001-02-16 23:53:16 +01:00
else
{
dir=+1;
vx=m_moveVel.vx>>VELOCITY_SHIFT;
}
cx=Pos.vx;
for(i=0;i<vx;i++)
{
if(m_layerCollision->getHeightFromGround(cx,Pos.vy)<0)
{
break;
}
cx+=dir;
}
Pos.vx=cx-dir;
m_moveVel.vx=0;
2001-02-16 21:25:02 +01:00
}
}
}
Pos.vx+=m_moveVel.vx>>VELOCITY_SHIFT;
}
}
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-20 00:37:40 +01:00
int panim=-1;
2001-02-08 17:51:16 +01:00
2001-02-02 18:48:40 +01:00
#ifdef __USER_paul__
int mouth=-1,eyes=-1;
#endif
2001-01-15 23:09:47 +01:00
void CPlayer::render()
{
2001-01-16 17:20:45 +01:00
CThing::render();
2001-02-20 18:37:25 +01:00
#ifdef _STATE_DEBUG_
s_debugFont.print(40,40,posBuf);
#endif
2001-01-15 23:09:47 +01:00
// Render
2001-01-25 16:25:46 +01:00
if(m_invincibleFrameCount==0||m_invincibleFrameCount&2)
2001-01-22 23:58:12 +01:00
{
2001-02-02 18:48:40 +01:00
#ifdef __USER_paul__
if(mouth!=-1)
{
m_skel.setMouthTex(mouth);
mouth=-1;
}
if(eyes!=-1)
{
m_skel.setEyeTex(eyes);
eyes=-1;
}
#endif
2001-02-08 17:51:16 +01:00
2001-02-14 21:28:57 +01:00
//int xval=(255-(MAP2D_BLOCKSTEPSIZE*(-m_cameraScrollPos.vx>>8)));
2001-02-08 17:51:16 +01:00
//DrawLine(xval-7,0,xval-7,255,0,128,255,0);
//DrawLine(xval+7,0,xval+7,255,0,128,255,0);
2001-02-14 21:28:57 +01:00
m_skel.setPos(m_playerScreenPos);
2001-01-22 23:58:12 +01:00
if(panim!=-1)
m_skel.setAnimNo(panim);
else
m_skel.setAnimNo(m_animNo);
2001-01-30 00:01:20 +01:00
m_skel.setFrame(m_animFrame);
2001-01-22 23:58:12 +01:00
m_skel.Animate(this);
m_skel.Render(this);
}
2001-02-09 22:41:55 +01:00
#ifdef _STATE_DEBUG_
char buf[128];
sprintf(buf,"STATE: %s",s_stateText[m_currentState]);
s_debugFont.print(40,200,buf);
sprintf(buf,"MODE: %s",s_modeText[m_currentMode]);
s_debugFont.print(40,210,buf);
#endif
2001-01-15 23:09:47 +01:00
}
2001-01-20 00:37:40 +01:00
2001-01-25 16:25:46 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
DVECTOR CPlayer::getCameraPos()
{
2001-02-12 16:26:00 +01:00
return m_cameraPos;
}
/*----------------------------------------------------------------------
Function:
Purpose: Pre-calcs the visible edges of the map ( ie: the hard limits
for the camera pos )
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::setMapSize(DVECTOR _mapSize)
{
m_mapCameraEdges.vx=(_mapSize.vx-34)*MAP2D_BLOCKSTEPSIZE; // Made up numbers! :) (pkg)
m_mapCameraEdges.vy=(_mapSize.vy-18)*MAP2D_BLOCKSTEPSIZE;
2001-02-12 21:14:31 +01:00
m_mapEdge.vx=_mapSize.vx*MAP2D_BLOCKSTEPSIZE;
m_mapEdge.vy=_mapSize.vy*MAP2D_BLOCKSTEPSIZE;
2001-01-25 16:25:46 +01:00
}
2001-01-20 00:37:40 +01:00
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-22 23:58:12 +01:00
const PlayerMetrics *CPlayer::getPlayerMetrics()
2001-01-15 23:09:47 +01:00
{
2001-01-26 19:20:41 +01:00
return &s_modes[m_currentMode].m_metrics;
2001-01-15 23:09:47 +01:00
}
2001-01-20 00:37:40 +01:00
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-31 23:50:59 +01:00
int CPlayer::setState(PLAYER_STATE _state)
2001-01-20 00:37:40 +01:00
{
2001-01-26 19:20:41 +01:00
CPlayerState *nextState;
2001-01-31 23:50:59 +01:00
int ret=false;
2001-01-26 19:20:41 +01:00
nextState=s_modes[m_currentMode].m_states[_state];
if(nextState)
{
m_currentStateClass=nextState;
m_currentStateClass->enter(this);
m_currentState=_state;
2001-01-31 23:50:59 +01:00
ret=true;
2001-01-26 19:20:41 +01:00
}
2001-01-31 23:50:59 +01:00
return ret;
2001-01-26 19:20:41 +01:00
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-31 23:50:59 +01:00
void CPlayer::setMode(PLAYER_MODE _mode)
2001-01-26 19:20:41 +01:00
{
m_currentMode=_mode;
2001-02-08 17:51:16 +01:00
// Need to do something about this setState() for when the new mode doesn't have that state (pkg)
2001-01-26 19:20:41 +01:00
setState(m_currentState);
2001-01-16 20:27:14 +01:00
}
2001-01-15 23:09:47 +01:00
2001-01-20 00:37:40 +01:00
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-20 00:37:40 +01:00
int CPlayer::getFacing()
{
return m_facing;
}
void CPlayer::setFacing(int _facing)
2001-01-15 23:09:47 +01:00
{
2001-01-20 00:37:40 +01:00
if(m_facing!=_facing)
2001-01-15 23:09:47 +01:00
{
2001-01-31 23:50:59 +01:00
m_facing=_facing;
m_skel.setDir(_facing);
2001-01-15 23:09:47 +01:00
}
2001-01-12 23:40:39 +01:00
}
2001-02-01 18:01:12 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-20 00:37:40 +01:00
int CPlayer::getAnimFrame()
{
return m_animFrame;
}
void CPlayer::setAnimFrame(int _animFrame)
{
2001-02-01 18:32:16 +01:00
const AnimSfx *sfx;
2001-02-01 18:01:12 +01:00
2001-01-20 00:37:40 +01:00
m_animFrame=_animFrame;
2001-02-01 18:01:12 +01:00
// Are there any sfx for this frame?
sfx=&s_animSfx[m_animNo];
if(sfx->m_numAnimFrameSfx)
{
2001-02-01 18:32:16 +01:00
const AnimFrameSfx *frameSfx;
int i;
2001-02-01 18:01:12 +01:00
frameSfx=sfx->m_animFrameSfx;
for(i=0;i<sfx->m_numAnimFrameSfx;i++)
{
if(m_animFrame==frameSfx->m_frame)
{
2001-02-08 17:51:16 +01:00
CSoundMediator::SFXID sfxId=frameSfx->m_sfxId;
if(m_currentMode==PLAYER_MODE_SQUEAKYBOOTS)
{
// Ugh.. horrible way to change the sfx when wearing squeaky boots (pkg)
if(sfxId==CSoundMediator::SFX_SPONGEBOB_WALK_1)sfxId=CSoundMediator::SFX_SPONGEBOB_SQUEAKY_SHOES_1;
else if(sfxId==CSoundMediator::SFX_SPONGEBOB_WALK_2)sfxId=CSoundMediator::SFX_SPONGEBOB_SQUEAKY_SHOES_2;
}
CSoundMediator::playSfx(sfxId);
2001-02-01 18:01:12 +01:00
}
if(m_animFrame<frameSfx->m_frame)
{
break;
}
frameSfx++;
}
}
2001-01-20 00:37:40 +01:00
}
int CPlayer::getAnimFrameCount()
{
return m_skel.getFrameCount();
}
int CPlayer::getAnimNo()
{
return m_animNo;
}
void CPlayer::setAnimNo(int _animNo)
{
m_animNo=_animNo;
2001-02-02 16:26:25 +01:00
setAnimFrame(0);
2001-01-20 00:37:40 +01:00
}
2001-02-01 18:01:12 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-20 00:37:40 +01:00
DVECTOR CPlayer::getMoveVelocity()
{
return m_moveVel;
}
void CPlayer::setMoveVelocity(DVECTOR *_moveVel)
{
m_moveVel=*_moveVel;
}
2001-01-26 19:20:41 +01:00
DVECTOR CPlayer::getPlayerPos()
{
return Pos;
}
2001-02-12 22:54:44 +01:00
void CPlayer::setPlayerPos(DVECTOR *_pos)
{
Pos=*_pos;
}
2001-02-01 18:01:12 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-02-09 18:01:04 +01:00
PLAYERINPUT CPlayer::getPadInputHeld()
2001-01-20 00:37:40 +01:00
{
2001-01-29 23:35:18 +01:00
return m_padInput;
}
2001-02-09 18:01:04 +01:00
PLAYERINPUT CPlayer::getPadInputDown()
2001-01-29 23:35:18 +01:00
{
return m_padInputDown;
2001-01-20 00:37:40 +01:00
}
2001-02-06 18:15:28 +01:00
2001-02-14 18:34:11 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
int CPlayer::isOnSlippySurface()
{
2001-02-22 16:14:49 +01:00
int ret=false;
if(m_layerCollision->getHeightFromGround(Pos.vx,Pos.vy,5)==0&&
m_layerCollision->getCollisionType(Pos.vx,Pos.vy)&COLLISION_TYPE_FLAG_SLIPPERY)
{
ret=true;
}
return ret;
2001-02-06 18:15:28 +01:00
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns: FACING_LEFT if left half of player is hanging, FACING_RIGHT
if right half of player is hanging or 0 if no part of the
player is hanging
---------------------------------------------------------------------- */
2001-02-19 22:49:02 +01:00
int csize=5;
2001-02-16 23:53:16 +01:00
int cheight=15;
2001-02-06 18:15:28 +01:00
int CPlayer::isOnEdge()
{
int ret=0;
2001-02-16 23:53:16 +01:00
if(m_layerCollision->getHeightFromGround(Pos.vx-csize,Pos.vy,cheight+1)>cheight)
2001-02-06 18:15:28 +01:00
{
ret=FACING_LEFT;
}
2001-02-16 23:53:16 +01:00
else if(m_layerCollision->getHeightFromGround(Pos.vx+csize,Pos.vy,cheight+1)>cheight)
2001-02-06 18:15:28 +01:00
{
ret=FACING_RIGHT;
}
return ret;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
int CPlayer::canMoveLeft()
{
2001-02-16 23:53:16 +01:00
return m_layerCollision->getHeightFromGround(Pos.vx-1,Pos.vy,16)>-8?true:false;
2001-02-06 18:15:28 +01:00
}
int CPlayer::canMoveRight()
{
2001-02-16 23:53:16 +01:00
return m_layerCollision->getHeightFromGround(Pos.vx+1,Pos.vy,16)>-8?true:false;
2001-01-20 00:37:40 +01:00
}
2001-01-25 23:19:47 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-20 00:37:40 +01:00
void CPlayer::moveLeft()
{
2001-01-22 23:58:12 +01:00
const PlayerMetrics *metrics;
2001-01-22 22:02:59 +01:00
metrics=getPlayerMetrics();
2001-01-20 00:37:40 +01:00
setFacing(FACING_LEFT);
if(m_moveVel.vx<=0)
{
2001-01-22 22:02:59 +01:00
m_moveVel.vx-=metrics->m_metric[PM__RUN_SPEEDUP];
if(m_moveVel.vx<-metrics->m_metric[PM__MAX_RUN_VELOCITY]<<VELOCITY_SHIFT)
2001-01-20 00:37:40 +01:00
{
2001-01-22 22:02:59 +01:00
m_moveVel.vx=-metrics->m_metric[PM__MAX_RUN_VELOCITY]<<VELOCITY_SHIFT;
2001-01-20 00:37:40 +01:00
}
}
else
{
2001-01-22 22:02:59 +01:00
m_moveVel.vx-=metrics->m_metric[PM__RUN_REVERSESLOWDOWN];
2001-01-20 00:37:40 +01:00
}
2001-02-08 17:51:16 +01:00
2001-02-14 21:28:57 +01:00
if(m_moveVel.vx<-CAMERA_STARTMOVETHRESHOLD||m_cameraScrollPos.vx<-CAMERA_SCROLLTHRESHOLD<<8)
2001-02-08 17:51:16 +01:00
{
m_cameraScrollDir=+1;
}
else if(m_moveVel.vx>-CAMERA_STOPMOVETHRESHOLD)
{
m_cameraScrollDir=0;
}
2001-01-16 20:27:14 +01:00
}
2001-01-20 00:37:40 +01:00
void CPlayer::moveRight()
{
2001-01-22 23:58:12 +01:00
const PlayerMetrics *metrics;
2001-01-22 22:02:59 +01:00
metrics=getPlayerMetrics();
2001-01-20 00:37:40 +01:00
setFacing(FACING_RIGHT);
if(m_moveVel.vx>=0)
{
2001-01-22 22:02:59 +01:00
m_moveVel.vx+=metrics->m_metric[PM__RUN_SPEEDUP];
if(m_moveVel.vx>metrics->m_metric[PM__MAX_RUN_VELOCITY]<<VELOCITY_SHIFT)
2001-01-20 00:37:40 +01:00
{
2001-01-22 22:02:59 +01:00
m_moveVel.vx=metrics->m_metric[PM__MAX_RUN_VELOCITY]<<VELOCITY_SHIFT;
2001-01-20 00:37:40 +01:00
}
}
else
{
2001-01-22 22:02:59 +01:00
m_moveVel.vx+=metrics->m_metric[PM__RUN_REVERSESLOWDOWN];
2001-01-20 00:37:40 +01:00
}
2001-02-08 17:51:16 +01:00
2001-02-14 21:28:57 +01:00
if(m_moveVel.vx>CAMERA_STARTMOVETHRESHOLD||m_cameraScrollPos.vx>CAMERA_SCROLLTHRESHOLD<<8)
2001-02-08 17:51:16 +01:00
{
m_cameraScrollDir=-1;
}
else if(m_moveVel.vx<CAMERA_STOPMOVETHRESHOLD)
{
m_cameraScrollDir=0;
}
2001-01-20 00:37:40 +01:00
}
void CPlayer::slowdown()
{
2001-01-22 23:58:12 +01:00
const PlayerMetrics *metrics;
2001-02-14 18:34:11 +01:00
int stopSpeed;
2001-01-22 22:02:59 +01:00
metrics=getPlayerMetrics();
2001-02-14 18:34:11 +01:00
if(isOnSlippySurface())
{
stopSpeed=SLIPSPEED;
}
else
{
stopSpeed=0;
}
2001-01-20 00:37:40 +01:00
if(m_moveVel.vx<0)
{
2001-02-14 18:34:11 +01:00
if(-stopSpeed<m_moveVel.vx)
{
stopSpeed=-m_moveVel.vx;
}
2001-01-22 22:02:59 +01:00
m_moveVel.vx+=metrics->m_metric[PM__RUN_SLOWDOWN];
2001-02-14 18:34:11 +01:00
if(m_moveVel.vx>-stopSpeed)
{
m_moveVel.vx=-stopSpeed;
if(m_currentState==STATE_RUN)
{
setState(STATE_IDLE);
}
}
2001-01-20 00:37:40 +01:00
}
else if(m_moveVel.vx>0)
{
2001-02-14 18:34:11 +01:00
if(stopSpeed>m_moveVel.vx)
{
stopSpeed=m_moveVel.vx;
}
2001-01-22 22:02:59 +01:00
m_moveVel.vx-=metrics->m_metric[PM__RUN_SLOWDOWN];
2001-02-14 18:34:11 +01:00
if(m_moveVel.vx<stopSpeed)
{
m_moveVel.vx=stopSpeed;
if(m_currentState==STATE_RUN)
{
setState(STATE_IDLE);
}
}
2001-01-20 00:37:40 +01:00
}
}
void CPlayer::jump()
{
}
void CPlayer::fall()
{
2001-02-06 22:09:45 +01:00
const PlayerMetrics *metrics;
metrics=getPlayerMetrics();
m_moveVel.vy+=PLAYER_GRAVITY;
if(m_moveVel.vy>=PLAYER_TERMINAL_VELOCITY<<VELOCITY_SHIFT)
{
m_moveVel.vy=PLAYER_TERMINAL_VELOCITY<<VELOCITY_SHIFT;
m_fallFrames++;
if(m_currentState!=STATE_BUTTFALL)
{
if(m_fallFrames>metrics->m_metric[PM__MAX_SAFE_FALL_FRAMES])
{
setState(STATE_FALLFAR);
}
}
}
}
2001-02-12 18:55:01 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::respawn()
{
setState(STATE_IDLE);
// Strip any items that the player might be holding
if(m_currentMode!=PLAYER_MODE_BASICUNARMED)
{
setMode(PLAYER_MODE_FULLUNARMED);
}
2001-02-16 21:25:02 +01:00
else
{
setMode(PLAYER_MODE_BASICUNARMED);
}
2001-02-12 18:55:01 +01:00
s_health=5;
m_invincibleFrameCount=INVIBCIBLE_FRAMES__START;
Pos=m_respawnPos;
2001-02-16 21:25:02 +01:00
m_moveVel.vx=0;
m_moveVel.vy=0;
m_fallFrames=0;
2001-02-12 18:55:01 +01:00
}
2001-02-06 22:09:45 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
#ifdef __VERSION_DEBUG__
2001-02-12 18:55:01 +01:00
int invincibleSponge=false; // NB: This is for debugging purposes only so don't try and use it for a permenant cheat mode..
2001-02-06 22:09:45 +01:00
#endif
void CPlayer::takeDamage(DAMAGE_TYPE _damage)
{
// Don't take damage if still recovering from the last hit
if(!m_invincibleFrameCount)
{
int ouchThatHurt=true;
// Check if we are currently immune to this damage type
switch(_damage)
{
case DAMAGE__FALL:
case DAMAGE__LAVA:
break;
case DAMAGE__ELECTROCUTION:
// if squeaky boots then ouchThatHurt=false;
break;
}
if(ouchThatHurt)
{
#ifdef __VERSION_DEBUG__
if(invincibleSponge){m_invincibleFrameCount=INVINCIBLE_FRAMES__HIT;return;}
#endif
if(s_health)
{
m_invincibleFrameCount=INVINCIBLE_FRAMES__HIT;
s_health--;
}
else
{
CSoundMediator::playSfx(CSoundMediator::SFX_SPONGEBOB_DEFEATED_JINGLE);
setState(STATE_DEAD);
}
}
}
2001-01-20 00:37:40 +01:00
}
2001-01-15 23:09:47 +01:00
2001-01-29 23:35:18 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::updatePadInput()
{
m_lastPadInput=m_padInput;
m_padInput=readPadInput();
2001-02-09 18:01:04 +01:00
m_padInputDown=(PLAYERINPUT)(m_padInput&(m_lastPadInput^-1));
2001-01-29 23:35:18 +01:00
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-02-09 18:01:04 +01:00
PLAYERINPUT CPlayer::readPadInput()
2001-01-29 23:35:18 +01:00
{
2001-02-09 18:01:04 +01:00
PLAYERINPUT input;
int pad;
input=PI_NONE;
pad=PadGetHeld(0);
if(pad&CPadConfig::getButton(CPadConfig::PAD_CFG_UP))
{
input=(PLAYERINPUT)(input|PI_UP);
}
if(pad&CPadConfig::getButton(CPadConfig::PAD_CFG_DOWN))
{
input=(PLAYERINPUT)(input|PI_DOWN);
}
if(pad&CPadConfig::getButton(CPadConfig::PAD_CFG_LEFT))
{
input=(PLAYERINPUT)(input|PI_LEFT);
}
if(pad&CPadConfig::getButton(CPadConfig::PAD_CFG_RIGHT))
{
input=(PLAYERINPUT)(input|PI_RIGHT);
}
if(pad&CPadConfig::getButton(CPadConfig::PAD_CFG_JUMP))
{
input=(PLAYERINPUT)(input|PI_JUMP);
}
if(pad&CPadConfig::getButton(CPadConfig::PAD_CFG_ACTION))
{
input=(PLAYERINPUT)(input|PI_ACTION);
}
#ifdef _RECORD_DEMO_MODE_
CDemoPlayer::demoPlayerControl *crnt;
PLAYERINPUT lastInput;
crnt=&s_demoControls[s_demoSize];
if(s_demoFrameCount==0)
{
crnt->m_inputValue=input;
}
lastInput=(PLAYERINPUT)crnt->m_inputValue;
if(crnt->m_length==255)
{
lastInput=(PLAYERINPUT)(input-1);
}
if(lastInput==input)
{
crnt->m_length++;
}
else
{
s_demoSize++;
ASSERT(s_demoSize<MAX_DEMO_SIZE);
crnt++;
crnt->m_inputValue=input;
crnt->m_length=1;
}
s_demoFrameCount++;
if(s_demoFrameCount==30*60)
{
writeDemoControls();
ASSERT(!"DEMO ENDED");
}
#endif
return input;
2001-01-29 23:35:18 +01:00
}
2001-01-16 20:27:14 +01:00
/*===========================================================================
end */