mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 17:32:13 +00:00
110 lines
3.1 KiB
C
110 lines
3.1 KiB
C
#pragma once
|
|
|
|
#include "game.h"
|
|
|
|
// This consolidates the contents of several smaller includes
|
|
BEGIN_SW_NS
|
|
|
|
enum
|
|
{
|
|
CACHE_SOUND_PRECACHE = 0,
|
|
CACHE_SOUND_PLAY =1
|
|
};
|
|
|
|
void DoTheCache(void);
|
|
|
|
void InitCheats();
|
|
|
|
void MapColors(short num,COLOR_MAP cm,short create);
|
|
int32_t CONFIG_ReadSetup(void);
|
|
|
|
DSWActor* WarpPlane(int32_t* x, int32_t* y, int32_t* z, int* sectnum);
|
|
bool WarpSectorInfo(short sectnum, DSWActor** sp_warp);
|
|
DSWActor* Warp(int32_t* x, int32_t* y, int32_t* z, int* sectnum);
|
|
|
|
[[deprecated]]
|
|
DSWActor* Warp(int32_t* x, int32_t* y, int32_t* z, int16_t* sectnum)
|
|
{
|
|
int sect16 = *sectnum;
|
|
auto p= Warp(x, y, z, §16);
|
|
*sectnum = sect16;
|
|
return p;
|
|
}
|
|
|
|
[[deprecated]]
|
|
DSWActor* WarpPlane(int32_t* x, int32_t* y, int32_t* z, int16_t* sectnum)
|
|
{
|
|
int sect16 = *sectnum;
|
|
auto p= WarpPlane(x, y, z, §16);
|
|
*sectnum = sect16;
|
|
return p;
|
|
}
|
|
|
|
|
|
void ProcessVisOn(void);
|
|
void VisViewChange(PLAYERp pp, int* vis);
|
|
void SpawnVis(DSWActor* Parent, short sectnum, int x, int y, int z, int amt);
|
|
|
|
enum TriggerType { TRIGGER_TYPE_REMOTE_SO };
|
|
|
|
int ActorFollowTrack(DSWActor*, short locktics);
|
|
void ActorLeaveTrack(short SpriteNum);
|
|
void RefreshPoints(SECTOR_OBJECTp sop, int nx, int ny, bool dynamic);
|
|
void TrackSetup(void);
|
|
void PlaceSectorObject(SECTOR_OBJECTp sop, int newx, int newy);
|
|
void PlaceSectorObjectsOnTracks(void);
|
|
void PlaceActorsOnTracks(void);
|
|
void SetupSectorObject(short sectnum, short tag);
|
|
void PostSetupSectorObject(void);
|
|
void VehicleSetSmoke(SECTOR_OBJECTp sop, ANIMATORp animator);
|
|
void CollapseSectorObject(SECTOR_OBJECTp sop, int nx, int ny);
|
|
void KillSectorObjectSprites(SECTOR_OBJECTp sop);
|
|
void MoveSectorObjects(SECTOR_OBJECTp sop, short locktics);
|
|
|
|
#define TEXT_INFO_TIME (3)
|
|
#define TEXT_INFO_Y (40)
|
|
#define TEXT_INFO_YOFF (10)
|
|
inline constexpr int TEXT_INFO_LINE(int line) { return (TEXT_INFO_Y + ((line)*TEXT_INFO_YOFF)); }
|
|
|
|
void PutStringInfo(PLAYERp pp, const char* string);
|
|
|
|
|
|
void DoSlidorMatch(PLAYERp pp, short match, bool);
|
|
bool TestSlidorMatchActive(short match);
|
|
void InterpSectorSprites(short sectnum, bool state);
|
|
|
|
using INTERP_FUNC = void(*)(int, int);
|
|
|
|
void SetSlidorActive(DSWActor*);
|
|
void DoSlidorInterp(DSWActor*, INTERP_FUNC);
|
|
|
|
int DoBeginJump(DSWActor* actor);
|
|
int DoJump(DSWActor* actor);
|
|
int DoBeginFall(DSWActor* actor);
|
|
int DoFall(DSWActor* actor);
|
|
void KeepActorOnFloor(DSWActor* actor);
|
|
int DoActorSlide(DSWActor* actor);
|
|
int DoActorSectorDamage(DSWActor* actor);
|
|
int DoScaleSprite(DSWActor* actor);
|
|
int DoActorStopFall(DSWActor* actor);
|
|
|
|
void InitPlayerSprite(PLAYERp pp);
|
|
void InitAllPlayerSprites(void);
|
|
void PlayerPanelSetup(void);
|
|
void PlayerDeathReset(PLAYERp pp);
|
|
void SpawnPlayerUnderSprite(PLAYERp pp);
|
|
|
|
void DoQuakeMatch(short match);
|
|
void ProcessQuakeOn(void);
|
|
void ProcessQuakeSpot(void);
|
|
void QuakeViewChange(PLAYERp pp, int* z_diff, int* x_diff, int* y_diff, short* ang_diff);
|
|
void DoQuake(PLAYERp pp);
|
|
bool SetQuake(PLAYERp pp, short tics, short amt);
|
|
int SetExpQuake(int16_t Weapon);
|
|
int SetGunQuake(int16_t SpriteNum);
|
|
int SetPlayerQuake(PLAYERp mpp);
|
|
int SetNuclearQuake(int16_t Weapon);
|
|
int SetSumoQuake(DSWActor*);
|
|
int SetSumoFartQuake(DSWActor*);
|
|
|
|
END_SW_NS
|