SBSPSS/source/player/player.cpp

995 lines
21 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 __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-02-06 18:15:28 +01:00
#ifndef __LAYER_COLLISION_H__
2001-03-23 21:09:14 +01:00
#include "level\layercollision.h"
2001-02-06 18:15:28 +01:00
#endif
2001-03-05 21:43:32 +01:00
#ifndef __PLAYER_PMODES_H__
#include "player\pmodes.h"
#endif
2001-03-25 23:33:20 +02:00
#ifndef __PLAYER_PMCHOP_H__
#include "player\pmchop.h"
2001-03-23 21:09:14 +01:00
#endif
2001-03-25 22:36:28 +02:00
#ifndef __PLAYER_PMBLOON_H__
#include "player\pmbloon.h"
#endif
2001-03-25 23:33:20 +02:00
#ifndef __PLAYER_PMDEAD_H__
#include "player\pmdead.h"
#endif
#ifndef __PLAYER_PMFLY_H__
#include "player\pmfly.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
---- */
/*----------------------------------------------------------------------
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-02-28 20:37:01 +01:00
// Two dice. One says 'Re' on every face, the other says 'boot',
// 'install', 'try', 'tire', 'sume' and 'number'
2001-03-02 17:02:30 +01:00
/*
WEAPON MODES
unamred constant
karate-chop constant
balloon timed ( respawn )
bubble mixture (un)limited supply ( respawn )
helmet constant ( respawn )
coral blower constant ( respawn )
net constant
jelly launcher limited supply ( respawn )
POWER-UPS
glasses constant
squeaky boots timed ( respawn )
mm & bb ring timed
*/
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_modeText[NUM_PLAYERMODES]=
{
"BASICUNARMED",
2001-03-25 23:33:20 +02:00
"FULLUNARMED",
2001-03-25 22:36:28 +02:00
"BALLOON",
2001-03-23 21:09:14 +01:00
// "NET",
// "CORALBLOWER",
"FLY",
2001-02-09 22:41:55 +01:00
};
#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
2001-03-02 20:53:13 +01:00
int SCREEN_GEOM_CENTRE_X=248;
int SCREEN_GEOM_CENTRE_Y=129;
int SCREEN_GEOM_PLAYER_OFS_X=9;
int SCREEN_GEOM_PLAYER_OFS_Y=-26;
2001-02-08 17:51:16 +01:00
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-03-13 18:19:13 +01:00
int CAMERA_SCROLLLIMIT=3;//8; // SB is this many tiles off centre at most
2001-02-12 16:26:00 +01:00
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
2001-03-25 22:36:28 +02:00
CPlayerModeBase PLAYERMODE;
2001-03-25 23:33:20 +02:00
CPlayerModeChop PLAYERMODECHOP;
2001-03-25 22:36:28 +02:00
CPlayerModeBalloon PLAYERMODEBALLOON;
2001-03-25 23:33:20 +02:00
CPlayerModeDead PLAYERMODEDEAD;
2001-03-23 21:09:14 +01:00
CPlayerModeFly PLAYERMODEFLY;
CPlayerMode *CPlayer::s_playerModes[NUM_PLAYERMODES]=
{
2001-03-25 22:36:28 +02:00
&PLAYERMODE, // PLAYER_MODE_BASICUNARMED
2001-03-25 23:33:20 +02:00
&PLAYERMODECHOP, // PLAYER_MODE_FULLUNARMED
2001-03-25 22:36:28 +02:00
&PLAYERMODEBALLOON, // PLAYER_MODE_BALLOON
2001-03-25 23:33:20 +02:00
&PLAYERMODEDEAD, // PLAYER_MODE_DEAD
2001-03-25 22:36:28 +02:00
&PLAYERMODEFLY, // PLAYER_MODE_FLY
2001-03-23 21:09:14 +01:00
};
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-02-27 17:59:50 +01:00
CPlayerThing::init();
2001-02-06 18:15:28 +01:00
m_layerCollision=NULL;
2001-03-06 21:13:16 +01:00
2001-03-23 21:09:14 +01:00
// m_onPlatform = false;
// m_prevOnPlatform = false;
2001-01-16 17:20:45 +01:00
2001-03-05 21:43:32 +01:00
m_skel.Init(ACTORS_SPONGEBOB_A3D);
2001-02-27 20:03:36 +01:00
TPLoadTex(ACTORS_ACTOR_SPONGEBOB_TEX);
2001-01-16 17:20:45 +01:00
2001-03-23 21:09:14 +01:00
for(int i=0;i<NUM_PLAYERMODES;i++)
{
s_playerModes[i]->initialise(this);
}
m_currentPlayerModeClass=NULL;
2001-03-27 22:01:22 +02:00
setMode(PLAYER_MODE_FULLUNARMED); //PKG
2001-03-23 21:09:14 +01:00
2001-01-20 00:37:40 +01:00
m_animNo=0;
m_animFrame=0;
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;
2001-03-02 19:00:19 +01:00
m_skel.setAng(512);
2001-02-08 17:51:16 +01:00
//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-03-02 17:02:30 +01:00
2001-03-02 20:53:13 +01:00
m_glassesFlag=0;
m_squeakyBootsTimer=0;
m_invinvibilityRingTimer=0;
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-03-27 22:01:22 +02:00
for(int i=0;i<NUM_PLAYERMODES;i++)
{
s_playerModes[i]->shutdown();
}
2001-02-09 22:41:55 +01:00
#ifdef _STATE_DEBUG_
s_debugFont.dump();
#endif
2001-02-27 17:59:50 +01:00
CPlayerThing::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-03-02 19:00:19 +01:00
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-02-27 17:59:50 +01:00
CPlayerThing::think(_frames);
2001-01-16 17:20:45 +01:00
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-03-23 21:09:14 +01:00
// s_modes[m_currentMode].m_modeControl->think();
// m_currentStateClass->think(this);
2001-03-27 22:01:22 +02:00
m_currentPlayerModeClass->think();
2001-01-25 23:19:47 +01:00
2001-03-02 17:02:30 +01:00
// Powerups
if(m_squeakyBootsTimer)
{
m_squeakyBootsTimer--;
}
if(m_invinvibilityRingTimer)
{
m_invinvibilityRingTimer--;
}
// Flashing..
if(m_invincibleFrameCount)
{
m_invincibleFrameCount--;
}
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-02-09 18:01:04 +01:00
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-03-02 20:53:13 +01:00
m_playerScreenGeomPos.vx=SCREEN_GEOM_PLAYER_OFS_X+((MAP2D_BLOCKSTEPSIZE*m_cameraScrollPos.vx)>>8);
m_playerScreenGeomPos.vy=SCREEN_GEOM_PLAYER_OFS_Y+((MAP2D_BLOCKSTEPSIZE*m_cameraScrollPos.vy)>>8);
2001-02-22 18:01:34 +01:00
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-03-02 19:00:19 +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-03-02 20:53:13 +01:00
m_playerScreenGeomPos.vx+=m_cameraPos.vx;
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-03-02 20:53:13 +01:00
m_playerScreenGeomPos.vx-=m_mapCameraEdges.vx-m_cameraPos.vx;
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-03-02 20:53:13 +01:00
m_playerScreenGeomPos.vy+=m_cameraPos.vy;
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-03-02 20:53:13 +01:00
m_playerScreenGeomPos.vy-=m_mapCameraEdges.vy-m_cameraPos.vy;
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
2001-01-16 20:27:14 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-01-20 00:37:40 +01:00
int panim=-1;
2001-03-01 18:01:37 +01:00
#include "gfx\prim.h" // (pkg)
int healthx=100;
2001-03-01 21:30:25 +01:00
int healthy=27;
2001-03-01 18:01:37 +01:00
int healthw=10;
int healthh=10;
int healthg=2;
2001-03-01 21:30:25 +01:00
int livesx=162;
int livesy=28;
2001-02-08 17:51:16 +01:00
2001-03-02 19:00:19 +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-02-27 17:59:50 +01:00
CPlayerThing::render();
2001-01-16 17:20:45 +01:00
2001-02-20 18:37:25 +01:00
#ifdef _STATE_DEBUG_
2001-03-23 21:09:14 +01:00
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-20 18:37:25 +01:00
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-03-02 20:53:13 +01:00
SetGeomOffset(SCREEN_GEOM_CENTRE_X+m_playerScreenGeomPos.vx,SCREEN_GEOM_CENTRE_Y+m_playerScreenGeomPos.vy);
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-03-27 22:01:22 +02:00
m_currentPlayerModeClass->render();
2001-03-02 20:53:13 +01:00
SetGeomOffset(SCREEN_GEOM_CENTRE_X,SCREEN_GEOM_CENTRE_Y);
2001-03-27 22:01:22 +02:00
2001-01-22 23:58:12 +01:00
}
2001-02-09 22:41:55 +01:00
#ifdef _STATE_DEBUG_
char buf[128];
sprintf(buf,"MODE: %s",s_modeText[m_currentMode]);
s_debugFont.print(40,210,buf);
#endif
2001-03-01 18:01:37 +01:00
2001-03-01 21:30:25 +01:00
// Temporary health/lives thing
2001-03-01 21:32:41 +01:00
#ifdef __USER_paul__
2001-03-01 18:01:37 +01:00
int i,x;
x=healthx;
for(i=0;i<5;i++)
{
POLY_F4 *f4;
f4=GetPrimF4();
setXYWH(f4,x,healthy,healthw,healthh);
if(i<s_health)
{
setRGB0(f4,0,255,0);
}
else
{
setRGB0(f4,255,0,0);
}
setSemiTrans(f4,true);
AddPrimToList(f4,0);
2001-03-01 21:30:25 +01:00
f4=GetPrimF4();
setXYWH(f4,x+1,healthy+1,healthw,healthh);
setRGB0(f4,0,0,0);
setSemiTrans(f4,true);
AddPrimToList(f4,1);
2001-03-01 18:01:37 +01:00
x+=healthw+healthg;
}
2001-03-01 21:30:25 +01:00
char lifebuf[5];
sprintf(lifebuf,"x%d",m_lives);
s_debugFont.print(livesx,livesy,lifebuf);
2001-03-01 21:32:41 +01:00
#endif
2001-01-15 23:09:47 +01:00
}
2001-01-20 00:37:40 +01:00
2001-02-12 16:26:00 +01:00
/*----------------------------------------------------------------------
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-03-01 21:30:25 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::addHealth(int _health)
{
s_health+=_health;
if(s_health>MAX_HEALTH)
{
s_health=MAX_HEALTH;
}
}
2001-01-20 00:37:40 +01:00
2001-03-01 21:30:25 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::addLife()
{
m_lives++;
if(m_lives>MAX_LIVES)
{
m_lives=MAX_LIVES;
}
}
2001-01-20 00:37:40 +01:00
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-03-23 21:09:14 +01:00
m_currentPlayerModeClass=s_playerModes[_mode];
m_currentPlayerModeClass->enter();
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;
2001-03-02 17:02:30 +01:00
if(m_squeakyBootsTimer)
2001-02-08 17:51:16 +01:00
{
// 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-03-02 17:02:30 +01:00
break;
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()
{
2001-03-27 22:01:22 +02:00
return m_skel.getFrameCount(m_animNo);
2001-01-20 00:37:40 +01:00
}
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
2001-02-12 18:55:01 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CPlayer::respawn()
{
// Strip any items that the player might be holding
2001-03-25 23:33:20 +02:00
if(m_currentMode!=PLAYER_MODE_BASICUNARMED)
{
setMode(PLAYER_MODE_FULLUNARMED);
}
else
{
2001-02-16 21:25:02 +01:00
setMode(PLAYER_MODE_BASICUNARMED);
2001-03-25 23:33:20 +02:00
}
2001-02-12 18:55:01 +01:00
2001-03-01 21:30:25 +01:00
s_health=MAX_HEALTH;
2001-03-27 22:01:22 +02:00
m_invincibleFrameCount=INVINCIBLE_FRAMES__START;
2001-02-12 18:55:01 +01:00
Pos=m_respawnPos;
}
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)
{
2001-03-02 19:00:19 +01:00
if(m_invincibleFrameCount==0&& // Don't take damage if still recovering from the last hit
m_invinvibilityRingTimer==0) // Or if we have the invincibility ring on
2001-02-06 22:09:45 +01:00
{
int ouchThatHurt=true;
// Check if we are currently immune to this damage type
switch(_damage)
{
2001-03-05 22:11:51 +01:00
case DAMAGE__NONE:
break;
2001-02-06 22:09:45 +01:00
case DAMAGE__FALL:
case DAMAGE__LAVA:
2001-02-27 17:59:50 +01:00
case DAMAGE__HIT_ENEMY:
2001-03-05 22:11:51 +01:00
case DAMAGE__SHOCK_ENEMY:
case DAMAGE__GAS_ENEMY:
case DAMAGE__POISON_ENEMY:
case DAMAGE__SWALLOW_ENEMY:
case DAMAGE__PINCH_ENEMY:
case DAMAGE__SQUASH_ENEMY:
case DAMAGE__BURN_ENEMY:
case DAMAGE__BITE_ENEMY:
2001-02-06 22:09:45 +01:00
break;
case DAMAGE__ELECTROCUTION:
2001-03-02 17:02:30 +01:00
if(m_squeakyBootsTimer)
2001-02-27 23:06:24 +01:00
{
ouchThatHurt=false;
}
2001-02-06 22:09:45 +01:00
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);
2001-03-25 23:33:20 +02:00
setMode(PLAYER_MODE_DEAD);
2001-03-23 21:09:14 +01:00
// setState(STATE_DEAD);
2001-02-06 22:09:45 +01:00
}
}
}
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++;
2001-03-05 16:08:50 +01:00
if(s_demoFrameCount==MAX_DEMO_TIME_IN_FRAMES)
2001-02-09 18:01:04 +01:00
{
writeDemoControls();
ASSERT(!"DEMO ENDED");
}
#endif
return input;
2001-01-29 23:35:18 +01:00
}
2001-03-06 21:13:16 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-03-23 21:09:14 +01:00
/*
2001-03-06 21:13:16 +01:00
void CPlayer::clearPlatform()
{
m_prevOnPlatform = m_onPlatform;
m_onPlatform = false;
}
2001-03-23 21:09:14 +01:00
*/
2001-03-06 21:13:16 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-03-23 21:09:14 +01:00
/*
2001-03-06 21:13:16 +01:00
void CPlayer::setPlatform( CThing *newPlatform )
{
int colHeight;
int platformHeight;
2001-03-08 21:12:47 +01:00
DVECTOR newPos;
DVECTOR testPos;
2001-03-06 21:13:16 +01:00
m_platform = newPlatform;
2001-03-08 21:12:47 +01:00
m_onPlatform = getCentreCollision();
2001-03-06 21:13:16 +01:00
if ( m_onPlatform )
{
2001-03-08 21:12:47 +01:00
newPos = getNewCollidedPos();
2001-03-06 21:13:16 +01:00
colHeight = m_layerCollision->getHeightFromGround( Pos.vx, Pos.vy, 16 );
2001-03-08 21:12:47 +01:00
platformHeight = newPos.vy - Pos.vy;
2001-03-06 21:13:16 +01:00
if ( platformHeight > colHeight )
{
m_onPlatform = false;
}
else
{
colHeight = platformHeight;
}
}
if ( m_onPlatform )
{
// have collided with a platform
m_moveVel.vy=0;
2001-03-08 21:12:47 +01:00
Pos = newPos;
2001-03-06 21:13:16 +01:00
if ( !m_prevOnPlatform )
{
2001-03-23 21:09:14 +01:00
// if( m_currentMode != PLAYER_MODE_BALLOON )
2001-03-06 21:13:16 +01:00
{
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);
setAnimNo(ANIM_SPONGEBOB_JUMPEND);
}
}
}
else
{
2001-03-08 21:12:47 +01:00
//Pos.vx += m_platform->getPos().vx - m_prevPlatformPos.vx;
2001-03-06 21:13:16 +01:00
}
// Move the camera offset
m_playerScreenGeomPos.vx=SCREEN_GEOM_PLAYER_OFS_X+((MAP2D_BLOCKSTEPSIZE*m_cameraScrollPos.vx)>>8);
m_playerScreenGeomPos.vy=SCREEN_GEOM_PLAYER_OFS_Y+((MAP2D_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);
m_cameraPos.vx=Pos.vx+m_cameraOffset.vx;
m_cameraPos.vy=Pos.vy+m_cameraOffset.vy;
// Limit camera scroll to the edges of the map
if(m_cameraPos.vx<0)
{
m_playerScreenGeomPos.vx+=m_cameraPos.vx;
m_cameraPos.vx=0;
m_cameraScrollDir=0;
}
else if(m_cameraPos.vx>m_mapCameraEdges.vx)
{
m_playerScreenGeomPos.vx-=m_mapCameraEdges.vx-m_cameraPos.vx;
m_cameraPos.vx=m_mapCameraEdges.vx;
m_cameraScrollDir=0;
}
if(m_cameraPos.vy<0)
{
m_playerScreenGeomPos.vy+=m_cameraPos.vy;
m_cameraPos.vy=0;
m_cameraScrollDir=0;
}
else if(m_cameraPos.vy>m_mapCameraEdges.vy)
{
m_playerScreenGeomPos.vy-=m_mapCameraEdges.vy-m_cameraPos.vy;
m_cameraPos.vy=m_mapCameraEdges.vy;
m_cameraScrollDir=0;
}
this->updateCollisionArea();
m_prevPlatformPos = m_platform->getPos();
}
2001-03-08 21:12:47 +01:00
else
{
newPlatform->removeChild( this );
}
}
2001-03-23 21:09:14 +01:00
*/
2001-03-08 21:12:47 +01:00
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
2001-03-23 21:09:14 +01:00
/*
2001-03-08 21:12:47 +01:00
void CPlayer::shove( DVECTOR move )
{
2001-03-08 22:51:22 +01:00
DVECTOR newPos;
newPos.vx = Pos.vx + move.vx;
newPos.vy = Pos.vy + move.vy;
int colHeight = m_layerCollision->getHeightFromGround( newPos.vx, newPos.vy, 1 );
2001-03-08 21:12:47 +01:00
if( colHeight < 0 )
{
// target position in within wall, abort
return;
}
else
{
2001-03-08 22:51:22 +01:00
Pos.vx = newPos.vx;
Pos.vy = newPos.vy;
2001-03-08 21:12:47 +01:00
}
2001-03-06 21:13:16 +01:00
}
2001-03-23 21:09:14 +01:00
*/
2001-03-06 21:13:16 +01:00
2001-01-16 20:27:14 +01:00
/*===========================================================================
end */