From 310eff6e7162c15f2c11408d7e0f0c28c453398b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 28 Sep 2022 19:27:35 +0200 Subject: [PATCH] - clean out many wrappers. --- source/CMakeLists.txt | 1 - source/core/gamefuncs.h | 21 ------------------ source/games/blood/all.cpp | 1 - source/games/blood/src/actor.h | 11 ---------- source/games/blood/src/misc.h | 2 -- source/games/blood/src/trig.cpp | 39 --------------------------------- 6 files changed, 75 deletions(-) delete mode 100644 source/games/blood/src/trig.cpp diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index fd05c12ea..2ed218e84 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -706,7 +706,6 @@ set( NOT_COMPILED_SOURCE_FILES games/blood/src/sfx.cpp games/blood/src/sound.cpp games/blood/src/tile.cpp - games/blood/src/trig.cpp games/blood/src/triggers.cpp games/blood/src/view.cpp games/blood/src/warp.cpp diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 7e917cd33..dab34788b 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -196,11 +196,6 @@ inline int bsin(const int ang, int shift = 0) return int(g_sinbam(ang * BAMUNIT) * sinscale(shift)); } -inline int Sin(int ang) -{ - return bsin(ang, 16); -} - //--------------------------------------------------------------------------- // // Build cosine inline functions. @@ -219,22 +214,6 @@ inline int bcos(const int ang, int shift = 0) return int(g_cosbam(ang * BAMUNIT) * sinscale(shift)); } -inline int Cos(int ang) -{ - return bcos(ang, 16); -} - -//--------------------------------------------------------------------------- -// -// High precision vector angle function, mainly for the renderer. -// -//--------------------------------------------------------------------------- - -inline int getangle(double xvect, double yvect) -{ - return DVector2(xvect, yvect).Angle().Buildang(); -} - //--------------------------------------------------------------------------- // // diff --git a/source/games/blood/all.cpp b/source/games/blood/all.cpp index 27d4dc7a0..9d5a25080 100644 --- a/source/games/blood/all.cpp +++ b/source/games/blood/all.cpp @@ -60,7 +60,6 @@ #include "src/sfx.cpp" #include "src/sound.cpp" #include "src/tile.cpp" -#include "src/trig.cpp" #include "src/triggers.cpp" #include "src/view.cpp" #include "src/warp.cpp" diff --git a/source/games/blood/src/actor.h b/source/games/blood/src/actor.h index 8ba4f80c4..439cecc21 100644 --- a/source/games/blood/src/actor.h +++ b/source/games/blood/src/actor.h @@ -255,17 +255,6 @@ int actGetRespawnTime(DBloodActor *pSprite); bool actCheckRespawn(DBloodActor *pSprite); void actFireVector(DBloodActor* shooter, double offset, double zoffset, DVector3 dv, VECTOR_TYPE vectorType); -[[deprecated]] -inline void actFireVector(DBloodActor* pShooter, int a2, int a3, int a4, int a5, int a6, VECTOR_TYPE vectorType) -{ - // Yay, yet another fixed point format... :( - actFireVector(pShooter, a2 * inttoworld, a3 * zinttoworld, DVector3(FixedToFloat<14>(a4), FixedToFloat<14>(a5), FixedToFloat<14>(a6)), vectorType); -} -[[deprecated]] -inline void actFireVectorf(DBloodActor *pShooter, int a2, double a3, int a4, int a5, int a6, VECTOR_TYPE vectorType) -{ - actFireVector(pShooter, a2, a3 * zworldtoint, a4, a5, a6, vectorType); -} void actPostSprite(DBloodActor* actor, int status); void actPostProcess(void); void MakeSplash(DBloodActor *actor); diff --git a/source/games/blood/src/misc.h b/source/games/blood/src/misc.h index 750aa0a71..b74d46cf8 100644 --- a/source/games/blood/src/misc.h +++ b/source/games/blood/src/misc.h @@ -69,8 +69,6 @@ void warpInit(TArray& actors); int CheckLink(DBloodActor* pSprite); int CheckLink(DVector3& cPos, sectortype** pSector); -void RotateVector(int* dx, int* dy, int nAngle); - #include "m_fixed.h" enum SurfaceType { diff --git a/source/games/blood/src/trig.cpp b/source/games/blood/src/trig.cpp deleted file mode 100644 index d917d6b10..000000000 --- a/source/games/blood/src/trig.cpp +++ /dev/null @@ -1,39 +0,0 @@ -#include "ns.h" // Must come before everything else! - -//---------------------------------------------------------------------- -/* -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. -*/ -//------------------------------------------------------------------------- -#include "build.h" -#include "blood.h" - -BEGIN_BLD_NS - - -void RotateVector(int* dx, int* dy, int nAngle) -{ - int ox = *dx; - int oy = *dy; - *dx = dmulscale30r(ox, Cos(nAngle), -oy, Sin(nAngle)); - *dy = dmulscale30r(ox, Sin(nAngle), oy, Cos(nAngle)); -} - -END_BLD_NS