SBSPSS/source/thing/thing.h

244 lines
5.8 KiB
C
Raw Normal View History

2001-02-26 21:27:20 +01:00
/*=========================================================================
thing.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __THING_THING_H__
#define __THING_THING_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef _GLOBAL_HEADER_
#include "system\global.h"
#endif
#ifndef __GAME_EVENT_H__
#include "game\event.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-04-06 23:25:18 +02:00
// Collision rectangle definition
typedef struct
{
int x1,y1,x2,y2;
}
CRECT;
2001-02-26 21:27:20 +01:00
// Thing manager class
class CThingManager
{
public:
static void init();
static void shutdown();
static void thinkAllThings(int _frames);
static void renderAllThings();
static void processEventAllThings(GAME_EVENT _event,class CThing *_sourceThing);
2001-04-06 23:25:18 +02:00
static CThing* checkCollisionAreaAgainstThings(CRECT *_area,int _type,int _continue);
2001-02-26 21:27:20 +01:00
protected:
static void addToThingList(class CThing *_this);
static void removeFromThingList(CThing *_this);
friend class CThing;
private:
static class CThing *s_thingLists[];
2001-02-26 21:42:25 +01:00
static int s_initialised;
2001-02-26 21:27:20 +01:00
};
// Base thing class
class CThing
{
public:
typedef enum
{
TYPE_PICKUP,
2001-03-08 21:12:47 +01:00
TYPE_PLATFORM,
2001-02-26 21:27:20 +01:00
TYPE_PLAYER,
2001-02-27 17:59:50 +01:00
TYPE_PLAYERPROJECTILE,
TYPE_NPC,
2001-02-26 21:27:20 +01:00
TYPE_ENEMY,
2001-02-27 17:59:50 +01:00
TYPE_ENEMYPROJECTILE,
TYPE_TRIGGER,
2001-04-24 17:01:42 +02:00
TYPE_HAZARD,
2001-02-26 21:27:20 +01:00
MAX_TYPE,
}
TYPE;
CThing() {;}
virtual ~CThing() {;}
2001-02-27 17:59:50 +01:00
virtual TYPE getThingType()=0;
2001-02-26 21:27:20 +01:00
virtual void init();
virtual void shutdown();
virtual void think(int _frames);
virtual void render();
2001-04-25 21:52:35 +02:00
virtual u8 isSetToShutdown() {return( false );}
2001-02-26 21:27:20 +01:00
// Linkage
void addChild(CThing *Child);
void removeChild(CThing *Child);
void removeAllChild();
2001-04-23 17:12:44 +02:00
void deleteAllChild();
2001-03-09 22:03:52 +01:00
bool hasChild(CThing *Child);
2001-04-19 01:12:24 +02:00
int getNumChildren();
2001-02-26 21:27:20 +01:00
DVECTOR getPos() {return Pos;}
2001-03-26 18:44:45 +02:00
void setPos(DVECTOR newPos) {Pos=newPos;}
2001-04-01 23:40:52 +02:00
DVECTOR getPosDelta() {return PosDelta;}
2001-03-08 21:12:47 +01:00
CThing *getNext() {return Next;}
2001-02-26 21:27:20 +01:00
virtual void processEvent(GAME_EVENT _event,CThing *_sourceThing);
protected:
// Linkage
CThing *Parent,*Next;
2001-04-19 01:12:24 +02:00
// Count
int m_numChildren;
2001-02-26 21:27:20 +01:00
// Pos
2001-04-01 23:40:52 +02:00
DVECTOR Pos, PosLast, PosDelta;
2001-02-26 21:27:20 +01:00
public:
class CThing *m_nextThing;
// -- Collision --
public:
2001-04-06 22:53:48 +02:00
DVECTOR getCollisionCentre() {return m_collisionCentre;}
2001-05-01 22:23:32 +02:00
DVECTOR getCollisionCentreOffset() {return m_collisionCentreOffset;}
2001-04-06 22:53:48 +02:00
int getCollisionRadius() {return m_collisionRadius;}
CRECT getCollisionArea() {return m_collisionArea;}
2001-04-27 21:57:12 +02:00
s16 getCollisionAngle() {return m_collisionAngle;} // pkg - move to CNpcPlatform?
DVECTOR getNewCollidedPos() {return m_newCollidedPos;} // pkg - to be removed?
2001-04-06 22:53:48 +02:00
DVECTOR getCollisionSize() {return m_collisionSize;}
2001-02-27 17:59:50 +01:00
virtual int canCollide() {return true;}
2001-04-01 23:40:52 +02:00
virtual int checkCollisionAgainst(CThing *_thisThing, int _frames);
2001-04-06 23:25:18 +02:00
int checkCollisionAgainstArea(CRECT *_rect);
2001-02-26 21:27:20 +01:00
void updateCollisionArea();
2001-02-27 17:59:50 +01:00
virtual void collidedWith(CThing *_thisThing) {;}
2001-03-31 00:43:35 +02:00
virtual void setHasPlatformCollided( bool newVal ) {;}
virtual bool getHasPlatformCollided() {return false;}
2001-04-06 22:53:48 +02:00
virtual s32 getNewYPos( CThing *_thisThing );
2001-04-27 21:57:12 +02:00
void setNewCollidedPos(DVECTOR newPos) {m_newCollidedPos = newPos;} // pkg - to be removed?
2001-04-06 23:25:18 +02:00
2001-02-26 21:27:20 +01:00
protected:
2001-04-27 21:57:12 +02:00
virtual void setCollisionSize(int _w,int _h);
virtual void setCollisionCentreOffset(int _x,int _y) {m_collisionCentreOffset.vx=_x;m_collisionCentreOffset.vy=_y;}
virtual void setCollisionCentreOffset(DVECTOR xy) {m_collisionCentreOffset=xy;}
virtual void setCollisionAngle(int newAngle) {m_collisionAngle = newAngle;} // pkg - move to CNpcPlatform?
2001-02-26 21:27:20 +01:00
private:
DVECTOR m_collisionSize;
DVECTOR m_collisionCentreOffset;
int m_collisionRadius;
CRECT m_collisionArea;
DVECTOR m_collisionCentre;
2001-04-27 21:57:12 +02:00
s16 m_collisionAngle; // pkg - move to CNpcPlatform?
DVECTOR m_newCollidedPos; // pkg - to be removed?
2001-02-26 21:27:20 +01:00
};
2001-02-27 17:59:50 +01:00
/* These are the individual base classes for each of the seperate thing types */
class CPickupThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_PICKUP;}
};
class CPlayerThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_PLAYER;}
};
class CPlayerProjectileThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_PLAYERPROJECTILE;}
};
class CNpcThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_NPC;}
};
class CEnemyThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_ENEMY;}
};
class CEnemyProjectileThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_ENEMYPROJECTILE;}
};
class CPlatformThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_PLATFORM;}
};
class CTriggerThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_TRIGGER;}
2001-04-17 22:09:33 +02:00
virtual void setPositionAndSize(int _x,int _y,int _w,int _h); // Wonder if this might be better in CThing? (pkg)
2001-05-04 03:35:52 +02:00
virtual void setTargetBox(int _x,int _y,int _w,int _h); // Wonder if this might be better in CThing? (pkg)
protected:
int m_boxX1,m_boxY1,m_boxX2,m_boxY2;
2001-02-27 17:59:50 +01:00
};
2001-04-24 17:01:42 +02:00
class CHazardThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_HAZARD;}
};
2001-02-27 17:59:50 +01:00
2001-02-26 21:27:20 +01:00
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __THING_THING_H__ */
/*===========================================================================
end */