mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-05 23:40:55 +00:00
- SW: renamed all unsigned chars to uint8_t
Also deletes some unused declarations
This commit is contained in:
parent
4f493d3de1
commit
b878bf8aac
7 changed files with 26 additions and 40 deletions
|
@ -1579,7 +1579,7 @@ enum
|
|||
AWAY = -1
|
||||
};
|
||||
|
||||
int FindNewAngle(DSWActor* actor, signed char dir, int DistToMove)
|
||||
int FindNewAngle(DSWActor* actor, int dir, int DistToMove)
|
||||
{
|
||||
USERp u = actor->u();
|
||||
SPRITEp sp = &actor->s();
|
||||
|
|
|
@ -65,7 +65,6 @@ int display_mirror;
|
|||
static int OverlapDraw = false;
|
||||
extern bool QuitFlag, SpriteInfo;
|
||||
extern bool Voxel;
|
||||
extern char buffer[];
|
||||
bool DrawScreen;
|
||||
extern short f_c;
|
||||
|
||||
|
|
|
@ -600,19 +600,6 @@ void BossHealthMeter(void);
|
|||
|
||||
// Global variables used for modifying variouse things from the Console
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// CALLER - DLL handler
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
extern unsigned char DLL_Loaded;
|
||||
extern int DLL_Handle; // Global DLL handle
|
||||
extern char *DLL_path; // DLL path name
|
||||
|
||||
int DLL_Load(char *DLLpathname);
|
||||
bool DLL_Unload(int procHandle);
|
||||
bool DLL_ExecFunc(int procHandle, char *fName);
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// JPlayer
|
||||
|
@ -863,7 +850,7 @@ struct PLAYERstruct
|
|||
}
|
||||
|
||||
// Key stuff
|
||||
unsigned char HasKey[8];
|
||||
uint8_t HasKey[8];
|
||||
|
||||
// Weapon stuff
|
||||
short SwordAng;
|
||||
|
@ -874,12 +861,12 @@ struct PLAYERstruct
|
|||
PANEL_SPRITEp CurWpn;
|
||||
PANEL_SPRITEp Wpn[MAX_WEAPONS];
|
||||
PANEL_SPRITEp Chops;
|
||||
unsigned char WpnRocketType; // rocket type
|
||||
unsigned char WpnRocketHeat; // 5 to 0 range
|
||||
unsigned char WpnRocketNuke; // 1, you have it, or you don't
|
||||
unsigned char WpnFlameType; // Guardian weapons fire
|
||||
unsigned char WpnFirstType; // First weapon type - Sword/Shuriken
|
||||
unsigned char WeaponType; // for weapons with secondary functions
|
||||
uint8_t WpnRocketType; // rocket type
|
||||
uint8_t WpnRocketHeat; // 5 to 0 range
|
||||
uint8_t WpnRocketNuke; // 1, you have it, or you don't
|
||||
uint8_t WpnFlameType; // Guardian weapons fire
|
||||
uint8_t WpnFirstType; // First weapon type - Sword/Shuriken
|
||||
uint8_t WeaponType; // for weapons with secondary functions
|
||||
short FirePause; // for sector objects - limits rapid firing
|
||||
//
|
||||
// Inventory Vars
|
||||
|
@ -907,30 +894,30 @@ struct PLAYERstruct
|
|||
//char RocketBarrel;
|
||||
char PlayerName[32];
|
||||
|
||||
unsigned char UziShellLeftAlt;
|
||||
unsigned char UziShellRightAlt;
|
||||
unsigned char TeamColor; // used in team play and also used in regular mulit-play for show
|
||||
uint8_t UziShellLeftAlt;
|
||||
uint8_t UziShellRightAlt;
|
||||
uint8_t TeamColor; // used in team play and also used in regular mulit-play for show
|
||||
|
||||
// palette fading up and down for player hit and get items
|
||||
short FadeTics; // Tics between each fade cycle
|
||||
short FadeAmt; // Current intensity of fade
|
||||
bool NightVision; // Is player's night vision active?
|
||||
unsigned char StartColor; // Darkest color in color range being used
|
||||
uint8_t StartColor; // Darkest color in color range being used
|
||||
//short electro[64];
|
||||
bool IsAI; // Is this and AI character?
|
||||
short fta,ftq; // First time active and first time quote, for talking in multiplayer games
|
||||
short NumFootPrints; // Number of foot prints left to lay down
|
||||
unsigned char WpnUziType; // Toggle between single or double uzi's if you own 2.
|
||||
unsigned char WpnShotgunType; // Shotgun has normal or fully automatic fire
|
||||
unsigned char WpnShotgunAuto; // 50-0 automatic shotgun rounds
|
||||
unsigned char WpnShotgunLastShell; // Number of last shell fired
|
||||
unsigned char WpnRailType; // Normal Rail Gun or EMP Burst Mode
|
||||
uint8_t WpnUziType; // Toggle between single or double uzi's if you own 2.
|
||||
uint8_t WpnShotgunType; // Shotgun has normal or fully automatic fire
|
||||
uint8_t WpnShotgunAuto; // 50-0 automatic shotgun rounds
|
||||
uint8_t WpnShotgunLastShell; // Number of last shell fired
|
||||
uint8_t WpnRailType; // Normal Rail Gun or EMP Burst Mode
|
||||
bool Bloody; // Is player gooey from the slaughter?
|
||||
bool InitingNuke;
|
||||
bool TestNukeInit;
|
||||
bool NukeInitialized; // Nuke already has counted down
|
||||
short FistAng; // KungFu attack angle
|
||||
unsigned char WpnKungFuMove; // KungFu special moves
|
||||
uint8_t WpnKungFuMove; // KungFu special moves
|
||||
short HitBy; // SpriteNum of whatever player was last hit by
|
||||
short Reverb; // Player's current reverb setting
|
||||
short Heads; // Number of Accursed Heads orbiting player
|
||||
|
@ -2061,7 +2048,7 @@ extern int16_t StatDamageList[STAT_DAMAGE_LIST_SIZE];
|
|||
///////////////////////////////////////////////////////////////
|
||||
|
||||
#define COLOR_PAIN 128 // Light red range
|
||||
extern void SetFadeAmt(PLAYERp pp, short damage, unsigned char startcolor);
|
||||
extern void SetFadeAmt(PLAYERp pp, short damage, uint8_t startcolor);
|
||||
extern void DoPaletteFlash(PLAYERp pp);
|
||||
extern bool NightVision;
|
||||
|
||||
|
|
|
@ -78,9 +78,9 @@ static int faderamp[32] =
|
|||
|
||||
typedef struct RGB_color_typ
|
||||
{
|
||||
unsigned char red;
|
||||
unsigned char green;
|
||||
unsigned char blue;
|
||||
uint8_t red;
|
||||
uint8_t green;
|
||||
uint8_t blue;
|
||||
} RGB_color, * RGB_color_ptr;
|
||||
|
||||
|
||||
|
@ -88,7 +88,7 @@ typedef struct RGB_color_typ
|
|||
// Set the amount of redness for damage
|
||||
// the player just took
|
||||
//////////////////////////////////////////
|
||||
void SetFadeAmt(PLAYERp pp, short damage, unsigned char startcolor)
|
||||
void SetFadeAmt(PLAYERp pp, short damage, uint8_t startcolor)
|
||||
{
|
||||
const int FADE_DAMAGE_FACTOR = 3; // 100 health / 32 shade cycles = 3.125
|
||||
|
||||
|
|
|
@ -124,7 +124,7 @@ bool ToggleFlyMode = false;
|
|||
|
||||
extern bool DebugOperate;
|
||||
|
||||
//unsigned char synctics, lastsynctics;
|
||||
//uint8_t synctics, lastsynctics;
|
||||
|
||||
int ChopTics;
|
||||
|
||||
|
|
|
@ -731,7 +731,7 @@ SectorObjectSetupBounds(SECTOR_OBJECTp sop)
|
|||
SECTORp *sectp;
|
||||
USERp u = sop->sp_child->u();
|
||||
|
||||
static unsigned char StatList[] =
|
||||
static uint8_t StatList[] =
|
||||
{
|
||||
STAT_DEFAULT, STAT_MISC, STAT_ITEM, STAT_TRAP,
|
||||
STAT_SPAWN_SPOT, STAT_SOUND_SPOT, STAT_WALL_MOVE,
|
||||
|
|
|
@ -14174,7 +14174,7 @@ InitStar(PLAYERp pp)
|
|||
|
||||
static short dang[] = {-12, 12};
|
||||
// static short dang[] = {-0, 0};
|
||||
unsigned char i;
|
||||
uint8_t i;
|
||||
SPRITEp np;
|
||||
USERp nu;
|
||||
short nw;
|
||||
|
|
Loading…
Reference in a new issue