ddnet/src/game/collision.h

128 lines
3.8 KiB
C
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#ifndef GAME_COLLISION_H
#define GAME_COLLISION_H
#include <base/vmath.h>
2010-09-26 02:25:05 +00:00
#include <list>
2010-05-29 07:25:38 +00:00
class CCollision
{
class CTile *m_pTiles;
int m_Width;
int m_Height;
class CLayers *m_pLayers;
2011-01-06 03:46:10 +00:00
//bool IsTileSolid(int x, int y);
//int GetTile(int x, int y);
2011-01-06 03:46:10 +00:00
2010-05-29 07:25:38 +00:00
public:
enum
{
COLFLAG_SOLID=1,
COLFLAG_DEATH=2,
COLFLAG_NOHOOK=4,
// DDRace
COLFLAG_NOLASER=8,
2013-07-18 22:27:17 +00:00
COLFLAG_THROUGH=16,
COLFLAG_TELE=32
2010-05-29 07:25:38 +00:00
};
2011-01-06 03:46:10 +00:00
2010-05-29 07:25:38 +00:00
CCollision();
void Init(class CLayers *pLayers);
bool CheckPoint(float x, float y) { return IsSolid(round(x), round(y)); }
bool CheckPoint(vec2 Pos) { return CheckPoint(Pos.x, Pos.y); }
int GetCollisionAt(float x, float y) { return GetTile(round(x), round(y)); }
2010-05-29 07:25:38 +00:00
int GetWidth() { return m_Width; };
int GetHeight() { return m_Height; };
int IntersectLine(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision, bool AllowThrough);
2013-08-13 02:59:25 +00:00
int IntersectLineTeleWeapon(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision, int *pTeleNr, bool AllowThrough);
int IntersectLineTeleHook(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision, int *pTeleNr, bool AllowThrough);
2011-02-12 09:30:47 +00:00
void MovePoint(vec2 *pInoutPos, vec2 *pInoutVel, float Elasticity, int *pBounces);
2010-05-29 07:25:38 +00:00
void MoveBox(vec2 *pInoutPos, vec2 *pInoutVel, vec2 Size, float Elasticity);
bool TestBox(vec2 Pos, vec2 Size);
// DDRace
void Dest();
2010-09-25 16:39:52 +00:00
void SetCollisionAt(float x, float y, int Flag);
void SetDTile(float x, float y, bool State);
void SetDCollisionAt(float x, float y, int Type, int Flags, int Number);
int GetDTileIndex(int Index);
int GetDTileFlags(int Index);
int GetDTileNumber(int Index);
int GetFCollisionAt(float x, float y) { return GetFTile(round(x), round(y)); }
int IntersectNoLaser(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision);
int IntersectNoLaserNW(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision);
int IntersectAir(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision);
int GetIndex(int x, int y);
2013-07-18 22:27:17 +00:00
int GetIndex(vec2 Pos);
int GetIndex(vec2 PrevPos, vec2 Pos);
int GetFIndex(int x, int y);
int GetTile(int x, int y);
int GetFTile(int x, int y);
int Entity(int x, int y, int Layer);
int GetPureMapIndex(vec2 Pos);
std::list<int> GetMapIndices(vec2 PrevPos, vec2 Pos, unsigned MaxIndices = 0);
int GetMapIndex(vec2 Pos);
bool TileExists(int Index);
bool TileExistsNext(int Index);
vec2 GetPos(int Index);
int GetTileIndex(int Index);
int GetFTileIndex(int Index);
2010-11-01 01:51:17 +00:00
int GetTileFlags(int Index);
int GetFTileFlags(int Index);
int IsTeleport(int Index);
int IsEvilTeleport(int Index);
int IsCheckTeleport(int Index);
2013-08-13 02:59:25 +00:00
int IsTeleportWeapon(int Index);
int IsTeleportHook(int Index);
int IsTCheckpoint(int Index);
//int IsCheckpoint(int Index);
int IsSpeedup(int Index);
void GetSpeedup(int Index, vec2 *Dir, int *Force, int *MaxSpeed);
int IsSwitch(int Index);
2010-11-22 20:43:22 +00:00
int GetSwitchNumber(int Index);
int GetSwitchDelay(int Index);
int IsSolid(int x, int y);
int IsThrough(int x, int y);
int IsNoLaser(int x, int y);
int IsFNoLaser(int x, int y);
2010-10-30 18:48:30 +00:00
int IsCheckpoint(int Index);
2010-10-30 18:48:30 +00:00
int IsFCheckpoint(int Index);
int IsMover(int x, int y, int* Flags);
2010-11-01 01:51:17 +00:00
vec2 CpSpeed(int index, int Flags = 0);
class CTeleTile *TeleLayer() { return m_pTele; }
class CSwitchTile *SwitchLayer() { return m_pSwitch; }
class CLayers *Layers() { return m_pLayers; }
2010-11-22 20:43:22 +00:00
int m_NumSwitchers;
private:
class CTeleTile *m_pTele;
class CSpeedupTile *m_pSpeedup;
class CTile *m_pFront;
class CSwitchTile *m_pSwitch;
class CDoorTile *m_pDoor;
struct SSwitchers
{
bool m_Status[16];
int m_EndTick[16];
int m_Type[16];
};
public:
SSwitchers* m_pSwitchers;
2010-05-29 07:25:38 +00:00
};
2011-01-07 23:26:17 +00:00
void ThroughOffset(vec2 Pos0, vec2 Pos1, int *Ox, int *Oy);
2010-05-29 07:25:38 +00:00
#endif