2019-09-19 22:42:45 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 Nuke.YKT
|
|
|
|
|
|
|
|
This file is part of NBlood.
|
|
|
|
|
|
|
|
NBlood is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
#pragma once
|
2019-09-22 06:39:22 +00:00
|
|
|
|
2020-07-25 18:34:40 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "filesystem.h"
|
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
BEGIN_BLD_NS
|
|
|
|
|
2020-07-29 21:18:08 +00:00
|
|
|
void playlogos();
|
2019-09-19 22:42:45 +00:00
|
|
|
unsigned int qrand(void);
|
|
|
|
int wrand(void);
|
|
|
|
void wsrand(int);
|
2020-07-25 18:34:40 +00:00
|
|
|
void FireInit(void);
|
|
|
|
void FireProcess(void);
|
|
|
|
void UpdateNetworkMenus(void);
|
|
|
|
void InitMirrors(void);
|
|
|
|
void sub_5571C(char mode);
|
|
|
|
void sub_557C4(int x, int y, int interpolation);
|
2020-09-01 13:00:35 +00:00
|
|
|
void DrawMirrors(int x, int y, int z, fixed_t a, fixed_t horiz, int smooth, int viewPlayer);
|
2020-07-25 18:34:40 +00:00
|
|
|
int32_t registerosdcommands(void);
|
|
|
|
int qanimateoffs(int a1, int a2);
|
|
|
|
int32_t qgetpalookup(int32_t a1, int32_t a2);
|
|
|
|
void HookReplaceFunctions();
|
2019-09-22 06:39:22 +00:00
|
|
|
|
2020-07-25 22:07:59 +00:00
|
|
|
struct QAV;
|
|
|
|
struct PLAYER;
|
|
|
|
extern QAV* weaponQAV[];
|
|
|
|
|
|
|
|
void WeaponInit(void);
|
2020-08-14 19:18:14 +00:00
|
|
|
void WeaponDraw(PLAYER *pPlayer, int a2, double a3, double a4, int a5);
|
2020-07-25 22:07:59 +00:00
|
|
|
void WeaponRaise(PLAYER *pPlayer);
|
|
|
|
void WeaponLower(PLAYER *pPlayer);
|
|
|
|
char WeaponUpgrade(PLAYER *pPlayer, char newWeapon);
|
|
|
|
void WeaponProcess(PLAYER *pPlayer);
|
|
|
|
void WeaponUpdateState(PLAYER* pPlayer);
|
|
|
|
void sub_51340(spritetype *pMissile, int a2);
|
|
|
|
void StartQAV(PLAYER* pPlayer, int nWeaponQAV, int a3 = -1, char a4 = 0);
|
|
|
|
void WeaponPrecache(void);
|
|
|
|
|
|
|
|
struct ZONE {
|
|
|
|
int x, y, z;
|
|
|
|
short sectnum, ang;
|
|
|
|
};
|
|
|
|
extern ZONE gStartZone[8];
|
|
|
|
|
|
|
|
void warpInit(void);
|
|
|
|
int CheckLink(spritetype *pSprite);
|
|
|
|
int CheckLink(int *x, int *y, int *z, int *nSector);
|
|
|
|
|
|
|
|
extern int costable[2048];
|
|
|
|
|
|
|
|
int GetOctant(int x, int y);
|
|
|
|
void RotateVector(int *dx, int *dy, int nAngle);
|
|
|
|
void RotatePoint(int *x, int *y, int nAngle, int ox, int oy);
|
|
|
|
void trigInit();
|
|
|
|
|
2020-09-01 13:00:35 +00:00
|
|
|
#include "m_fixed.h"
|
|
|
|
|
2020-07-25 22:07:59 +00:00
|
|
|
inline int Sin(int ang)
|
|
|
|
{
|
|
|
|
return costable[(ang - 512) & 2047];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int Cos(int ang)
|
|
|
|
{
|
|
|
|
return costable[ang & 2047];
|
2020-09-01 13:00:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline int SinScale16(int ang)
|
|
|
|
{
|
|
|
|
return FixedToInt(costable[(ang - 512) & 2047]);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int CosScale16(int ang)
|
|
|
|
{
|
|
|
|
return FixedToInt(costable[ang & 2047]);
|
|
|
|
}
|
2020-07-25 22:07:59 +00:00
|
|
|
|
|
|
|
enum SurfaceType {
|
|
|
|
kSurfNone = 0,
|
|
|
|
kSurfStone,
|
|
|
|
kSurfMetal,
|
|
|
|
kSurfWood,
|
|
|
|
kSurfFlesh,
|
|
|
|
kSurfWater,
|
|
|
|
kSurfDirt,
|
|
|
|
kSurfClay,
|
|
|
|
kSurfSnow,
|
|
|
|
kSurfIce,
|
|
|
|
kSurfLeaves,
|
|
|
|
kSurfCloth,
|
|
|
|
kSurfPlant,
|
|
|
|
kSurfGoo,
|
|
|
|
kSurfLava,
|
|
|
|
kSurfMax
|
|
|
|
};
|
|
|
|
|
|
|
|
extern char surfType[MAXTILES];
|
|
|
|
extern signed char tileShade[MAXTILES];
|
|
|
|
extern short voxelIndex[MAXTILES];
|
|
|
|
|
|
|
|
extern int nPrecacheCount;
|
|
|
|
extern char precachehightile[2][(MAXTILES+7)>>3];
|
|
|
|
|
|
|
|
int tileInit(char a1, const char *a2);
|
|
|
|
void tileProcessGLVoxels(void);
|
|
|
|
const uint8_t * tileLoadTile(int nTile);
|
|
|
|
uint8_t * tileAllocTile(int nTile, int x, int y);
|
|
|
|
void tilePreloadTile(int nTile);
|
|
|
|
void tilePrecacheTile(int nTile, int nType = 1);
|
|
|
|
char tileGetSurfType(int hit);
|
|
|
|
|
2020-08-02 11:54:36 +00:00
|
|
|
void scrLoadPalette(void);
|
2020-08-02 15:45:03 +00:00
|
|
|
void DrawMenuCaption(const char* text);
|
2020-07-25 22:07:59 +00:00
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
END_BLD_NS
|