From bf7437c8274120ac84488f9fd78df97736a26fce Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 29 Dec 2021 19:27:13 +1100 Subject: [PATCH] - SW: Remove `ON` pre-processor define and eliminate `mytypes.h`. --- source/games/sw/src/cheats.cpp | 1 - source/games/sw/src/draw.cpp | 1 - source/games/sw/src/game.cpp | 1 - source/games/sw/src/game.h | 5 ++- source/games/sw/src/jweapon.cpp | 8 ++--- source/games/sw/src/light.cpp | 8 ++--- source/games/sw/src/mclip.cpp | 1 - source/games/sw/src/miscactr.cpp | 2 +- source/games/sw/src/morph.cpp | 4 +-- source/games/sw/src/mytypes.h | 52 -------------------------------- source/games/sw/src/osdcmds.cpp | 1 - source/games/sw/src/panel.h | 1 - source/games/sw/src/player.cpp | 1 - source/games/sw/src/serp.cpp | 2 +- source/games/sw/src/sounds.cpp | 1 - source/games/sw/src/sounds.h | 1 - source/games/sw/src/sumo.cpp | 2 +- 17 files changed, 17 insertions(+), 75 deletions(-) delete mode 100644 source/games/sw/src/mytypes.h diff --git a/source/games/sw/src/cheats.cpp b/source/games/sw/src/cheats.cpp index a23d38cab..fa640565a 100644 --- a/source/games/sw/src/cheats.cpp +++ b/source/games/sw/src/cheats.cpp @@ -31,7 +31,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "names2.h" #include "panel.h" #include "game.h" -#include "mytypes.h" #include "misc.h" #include "gamecontrol.h" diff --git a/source/games/sw/src/draw.cpp b/source/games/sw/src/draw.cpp index 2cd29b156..0bb744001 100644 --- a/source/games/sw/src/draw.cpp +++ b/source/games/sw/src/draw.cpp @@ -36,7 +36,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "jsector.h" -#include "mytypes.h" #include "gamecontrol.h" #include "gamefuncs.h" #include "network.h" diff --git a/source/games/sw/src/game.cpp b/source/games/sw/src/game.cpp index a0f058fea..e731c7078 100644 --- a/source/games/sw/src/game.cpp +++ b/source/games/sw/src/game.cpp @@ -49,7 +49,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "i_interface.h" -#include "mytypes.h" #include "menus.h" diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index f1b082ad9..4769750f9 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -37,7 +37,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "gamefuncs.h" #include "coreactor.h" -#include "mytypes.h" #include "sounds.h" #include "gamecvars.h" #include "raze_sound.h" @@ -59,6 +58,10 @@ class DSWActor; using HitInfo = THitInfo; using Collision = TCollision; +constexpr int BIT(int shift) +{ + return 1 << shift; +} typedef struct { diff --git a/source/games/sw/src/jweapon.cpp b/source/games/sw/src/jweapon.cpp index 240b8a3dc..aa48580bb 100644 --- a/source/games/sw/src/jweapon.cpp +++ b/source/games/sw/src/jweapon.cpp @@ -1962,7 +1962,7 @@ int DoCarryFlag(DSWActor* actor) if (fown != nullptr) { if (fown->spr.lotag) // Trigger everything if there is a lotag - DoMatchEverything(nullptr, fown->spr.lotag, ON); + DoMatchEverything(nullptr, fown->spr.lotag, 1); } if (!TEST_BOOL1(fown)) { @@ -1974,7 +1974,7 @@ int DoCarryFlag(DSWActor* actor) if (fown->user.filler >= SP_TAG5(fown)) { fown->user.filler = 0; - DoMatchEverything(nullptr, SP_TAG6(fown), ON); + DoMatchEverything(nullptr, SP_TAG6(fown), 1); } } } @@ -2092,7 +2092,7 @@ int DoCarryFlagNoDet(DSWActor* actor) if (actor->user.flagOwnerActor != nullptr) { if (fown->spr.lotag) // Trigger everything if there is a lotag - DoMatchEverything(nullptr, fown->spr.lotag, ON); + DoMatchEverything(nullptr, fown->spr.lotag, 1); fown->user.WaitTics = 0; // Tell it to respawn } if (!TEST_BOOL1(fown)) @@ -2105,7 +2105,7 @@ int DoCarryFlagNoDet(DSWActor* actor) if (fown->user.filler >= SP_TAG5(fown)) { fown->user.filler = 0; - DoMatchEverything(nullptr, SP_TAG6(fown), ON); + DoMatchEverything(nullptr, SP_TAG6(fown), 1); } } } diff --git a/source/games/sw/src/light.cpp b/source/games/sw/src/light.cpp index b79eea28c..dfa607428 100644 --- a/source/games/sw/src/light.cpp +++ b/source/games/sw/src/light.cpp @@ -136,7 +136,7 @@ void DoLightingMatch(short match, short state) if (state == -1) state = !TEST_BOOL1(itActor); - if (state == ON) + if (state == 1) { SET_BOOL1(itActor); itActor->spr.shade = -LIGHT_MaxBright(itActor); @@ -163,7 +163,7 @@ void DoLightingMatch(short match, short state) if (state == -1) state = !TEST_BOOL1(itActor); - if (state == ON) + if (state == 1) { // allow fade or flicker SET_BOOL1(itActor); @@ -186,7 +186,7 @@ void DoLightingMatch(short match, short state) //if (state == -1) // state = !TEST_BOOL1(itActor); - if (state == ON) + if (state == 1) { if (LIGHT_Dir(itActor) == 1) { @@ -214,7 +214,7 @@ void DoLightingMatch(short match, short state) if (state == -1) state = !TEST_BOOL1(itActor); - if (state == ON) + if (state == 1) { // allow fade or flicker SET_BOOL1(itActor); diff --git a/source/games/sw/src/mclip.cpp b/source/games/sw/src/mclip.cpp index 79eb4689f..bdafeb3db 100644 --- a/source/games/sw/src/mclip.cpp +++ b/source/games/sw/src/mclip.cpp @@ -27,7 +27,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "build.h" -#include "mytypes.h" #include "names2.h" #include "panel.h" #include "game.h" diff --git a/source/games/sw/src/miscactr.cpp b/source/games/sw/src/miscactr.cpp index f82b1b0b5..04e5d39e6 100644 --- a/source/games/sw/src/miscactr.cpp +++ b/source/games/sw/src/miscactr.cpp @@ -751,7 +751,7 @@ int PachinkoCheckWin(DSWActor* actor) // Do a possible combo switch if (ComboSwitchTest(TAG_COMBO_SWITCH_EVERYTHING, actor->spr.hitag)) { - DoMatchEverything(Player+myconnectindex, actor->spr.hitag, ON); + DoMatchEverything(Player+myconnectindex, actor->spr.hitag, 1); } ActorCoughItem(actor); // I WON! I WON! diff --git a/source/games/sw/src/morph.cpp b/source/games/sw/src/morph.cpp index 3d575cc73..bbde38ac3 100644 --- a/source/games/sw/src/morph.cpp +++ b/source/games/sw/src/morph.cpp @@ -148,11 +148,11 @@ short DoSOevent(short match, short state) else { SET_BOOL3(me_act); - state = ON; + state = 1; } } - if (state == ON) + if (state == 1) { spin_adj = (int)SP_TAG3(me_act); vel_adj = SP_TAG7(me_act); diff --git a/source/games/sw/src/mytypes.h b/source/games/sw/src/mytypes.h deleted file mode 100644 index 61b956f6a..000000000 --- a/source/games/sw/src/mytypes.h +++ /dev/null @@ -1,52 +0,0 @@ -//------------------------------------------------------------------------- -/* -Copyright (C) 1997, 2005 - 3D Realms Entertainment - -This file is part of Shadow Warrior version 1.2 - -Shadow Warrior is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -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. - -Original Source: 1997 - Frank Maddin and Jim Norwood -Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms -*/ -//------------------------------------------------------------------------- - -#ifndef TYPES_H - -#define TYPES_H - - - -#define ON 1 - - -/* -=========================== -= -= Bit manipulation -= -=========================== -*/ - -// mask definitions - -constexpr int BIT(int shift) -{ - return 1 << shift; -} - -#endif - diff --git a/source/games/sw/src/osdcmds.cpp b/source/games/sw/src/osdcmds.cpp index ab619844b..8f9843eb2 100644 --- a/source/games/sw/src/osdcmds.cpp +++ b/source/games/sw/src/osdcmds.cpp @@ -30,7 +30,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "names2.h" #include "panel.h" #include "game.h" -#include "mytypes.h" #include "gamecontrol.h" #include "gstrings.h" diff --git a/source/games/sw/src/panel.h b/source/games/sw/src/panel.h index 448a74f46..cff6a334a 100644 --- a/source/games/sw/src/panel.h +++ b/source/games/sw/src/panel.h @@ -28,7 +28,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #define PANEL_H -#include "mytypes.h" #include "game.h" BEGIN_SW_NS diff --git a/source/games/sw/src/player.cpp b/source/games/sw/src/player.cpp index 9b8bdbaee..7a75c54f2 100644 --- a/source/games/sw/src/player.cpp +++ b/source/games/sw/src/player.cpp @@ -27,7 +27,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "build.h" -#include "mytypes.h" #include "names2.h" #include "panel.h" #include "game.h" diff --git a/source/games/sw/src/serp.cpp b/source/games/sw/src/serp.cpp index a46a6f6a4..4ad239479 100644 --- a/source/games/sw/src/serp.cpp +++ b/source/games/sw/src/serp.cpp @@ -794,7 +794,7 @@ int DoSerpMove(DSWActor* actor) int DoDeathSpecial(DSWActor* actor) { - DoMatchEverything(nullptr, actor->spr.lotag, ON); + DoMatchEverything(nullptr, actor->spr.lotag, 1); if (!SW_SHAREWARE) { diff --git a/source/games/sw/src/sounds.cpp b/source/games/sw/src/sounds.cpp index 210b208e7..62a9c7919 100644 --- a/source/games/sw/src/sounds.cpp +++ b/source/games/sw/src/sounds.cpp @@ -28,7 +28,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms #include "build.h" #include "names2.h" -#include "mytypes.h" #include "panel.h" #include "game.h" diff --git a/source/games/sw/src/sounds.h b/source/games/sw/src/sounds.h index 6578b2e8d..b66fce96b 100644 --- a/source/games/sw/src/sounds.h +++ b/source/games/sw/src/sounds.h @@ -30,7 +30,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms // //**************************************************************************** -#include "mytypes.h" #ifndef sw_sounds_public_ diff --git a/source/games/sw/src/sumo.cpp b/source/games/sw/src/sumo.cpp index 1956946f3..cbd5b44e0 100644 --- a/source/games/sw/src/sumo.cpp +++ b/source/games/sw/src/sumo.cpp @@ -741,7 +741,7 @@ int DoSumoDeathMelt(DSWActor* actor) InitChemBomb(actor); actor->user.ID = 0; - DoMatchEverything(nullptr, actor->spr.lotag, ON); + DoMatchEverything(nullptr, actor->spr.lotag, 1); if (!SW_SHAREWARE) { // Resume the regular music - in a hack-free fashion.