From 1e9679aceb708f60b721fcb64b37c53d2c9ef439 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 14 Jul 2020 21:15:37 +0200 Subject: [PATCH] - removed faketimerhandler and the last static remains of EDuke's netcode. --- source/blood/src/blood.cpp | 2 +- source/blood/src/blood.h | 1 - source/blood/src/network.cpp | 7 +--- source/build/include/build.h | 2 -- source/build/src/engine.cpp | 6 ---- source/core/gamestruct.h | 1 - source/games/duke/CMakeLists.txt | 1 - source/games/duke/src/net.h | 2 -- source/games/duke/src/zz_game.cpp | 12 +++---- source/games/duke/src/zz_net.cpp | 46 --------------------------- source/games/duke/src/zz_savegame.cpp | 6 ++-- source/sw/src/game.cpp | 6 ---- source/sw/src/network.cpp | 2 -- 13 files changed, 11 insertions(+), 83 deletions(-) delete mode 100644 source/games/duke/src/zz_net.cpp diff --git a/source/blood/src/blood.cpp b/source/blood/src/blood.cpp index bf41b69e2..6d703a641 100644 --- a/source/blood/src/blood.cpp +++ b/source/blood/src/blood.cpp @@ -1208,7 +1208,7 @@ RESTART: break; if (i >= 0) break; - faketimerhandler(); + //faketimerhandler(); ProcessFrame(); gameUpdate = true; } diff --git a/source/blood/src/blood.h b/source/blood/src/blood.h index 83615a089..a3c5a4b98 100644 --- a/source/blood/src/blood.h +++ b/source/blood/src/blood.h @@ -139,7 +139,6 @@ void sndPlaySpecialMusicOrNothing(int nMusic); struct GameInterface : ::GameInterface { const char* Name() override { return "Blood"; } - void faketimerhandler() override; int app_main() override; void UpdateScreenSize() override; bool GenerateSavePic() override; diff --git a/source/blood/src/network.cpp b/source/blood/src/network.cpp index f9de77768..54cde2663 100644 --- a/source/blood/src/network.cpp +++ b/source/blood/src/network.cpp @@ -619,7 +619,7 @@ void netWaitForEveryone(char a1) if (inputState.EscapePressed() && a1) Bexit(0); gameHandleEvents(); - faketimerhandler(); + //faketimerhandler(); for (p = connecthead; p >= 0; p = connectpoint2[p]) if (gPlayerReady[p] < gPlayerReady[myconnectindex]) break; @@ -1323,11 +1323,6 @@ void faketimerhandler(void) // enet_host_service(gNetMode == NETWORK_SERVER ? gNetENetServer : gNetENetClient, NULL, 0); } -void GameInterface::faketimerhandler() -{ - ::Blood::faketimerhandler(); -} - void netPlayerQuit(int nPlayer) { char buffer[128]; diff --git a/source/build/include/build.h b/source/build/include/build.h index 1fc846d4b..587868865 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -487,8 +487,6 @@ EXTERN char gotsector[(MAXSECTORS+7)>>3]; extern uint32_t drawlinepat; -extern void faketimerhandler(void); - extern int32_t novoxmips; extern int16_t tiletovox[MAXTILES]; diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index ccc5e344e..54ac35bdd 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -140,12 +140,6 @@ static void getclosestpointonwall_internal(vec2_t const p, int32_t const dawall, } -void faketimerhandler() -{ -} - - - // // setslope // diff --git a/source/core/gamestruct.h b/source/core/gamestruct.h index 588496e09..1ae93a1d5 100644 --- a/source/core/gamestruct.h +++ b/source/core/gamestruct.h @@ -52,7 +52,6 @@ struct GameInterface virtual const char* Name() { return "$"; } virtual ~GameInterface() {} virtual bool GenerateSavePic() { return false; } - virtual void faketimerhandler() {} // This is a remnant of older versions, but Blood backend has not updated yet. virtual int app_main() = 0; virtual void UpdateScreenSize() {} virtual void FreeGameData() {} diff --git a/source/games/duke/CMakeLists.txt b/source/games/duke/CMakeLists.txt index a45fb835a..63b2fb520 100644 --- a/source/games/duke/CMakeLists.txt +++ b/source/games/duke/CMakeLists.txt @@ -47,7 +47,6 @@ set( PCH_SOURCES src/zz_common.cpp src/zz_game.cpp src/zz_global.cpp - src/zz_net.cpp src/zz_player.cpp src/zz_premap.cpp src/zz_savegame.cpp diff --git a/source/games/duke/src/net.h b/source/games/duke/src/net.h index 32d805eaf..0a3228054 100644 --- a/source/games/duke/src/net.h +++ b/source/games/duke/src/net.h @@ -30,7 +30,6 @@ struct ENetPacket; BEGIN_DUKE_NS -extern void *g_netServer; #define MAXSYNCBYTES 16 #define SYNCFIFOSIZ 1024 @@ -50,7 +49,6 @@ extern int syncvaltail, syncvaltottail; void Net_ClearFIFO(void); void Net_GetInput(void); -void Net_GetPackets(void); /* NETCODE_ENABLE is not defined */ // Connect/Disconnect diff --git a/source/games/duke/src/zz_game.cpp b/source/games/duke/src/zz_game.cpp index ec0c20ffa..01c2f02d8 100644 --- a/source/games/duke/src/zz_game.cpp +++ b/source/games/duke/src/zz_game.cpp @@ -160,7 +160,7 @@ void G_HandleLocalKeys(void) if (screenpeek == -1) screenpeek = 0; } - if ((g_netServer || ud.multimode > 1) && buttonMap.ButtonDown(gamefunc_Show_Opponents_Weapon)) + if ((ud.multimode > 1) && buttonMap.ButtonDown(gamefunc_Show_Opponents_Weapon)) { buttonMap.ClearButton(gamefunc_Show_Opponents_Weapon); ud.ShowOpponentWeapons = ud.showweapons = 1-ud.showweapons; @@ -588,7 +588,7 @@ int GameInterface::app_main() connectpoint2[0] = -1; - Net_GetPackets(); + //Net_GetPackets(); for (bssize_t i=0; i 1) + if (ud.multimode > 1) { ud.m_monsters_off = 1; ud.m_player_skill = 0; @@ -662,7 +662,7 @@ MAIN_LOOP_RESTART: //if (ud.warp_on == 0) { #if 0 // fixme once the game loop has been done. - if ((g_netServer || ud.multimode > 1) && boardfilename[0] != 0) + if ((ud.multimode > 1) && boardfilename[0] != 0) { auto maprecord = FindMap(boardfilename); ud.m_respawn_monsters = ud.m_player_skill == 4; @@ -708,7 +708,7 @@ MAIN_LOOP_RESTART: goto MAIN_LOOP_RESTART; } - Net_GetPackets(); + //Net_GetPackets(); G_HandleLocalKeys(); @@ -745,7 +745,7 @@ MAIN_LOOP_RESTART: advancequeue(myconnectindex); - if (((!System_WantGuiCapture() && (g_player[myconnectindex].ps->gm&MODE_MENU) != MODE_MENU) || ud.recstat == 2 || (g_netServer || ud.multimode > 1)) && + if (((!System_WantGuiCapture() && (g_player[myconnectindex].ps->gm&MODE_MENU) != MODE_MENU) || ud.recstat == 2 || (ud.multimode > 1)) && (g_player[myconnectindex].ps->gm&MODE_GAME)) { moveloop(); diff --git a/source/games/duke/src/zz_net.cpp b/source/games/duke/src/zz_net.cpp deleted file mode 100644 index d1cb88b83..000000000 --- a/source/games/duke/src/zz_net.cpp +++ /dev/null @@ -1,46 +0,0 @@ -//------------------------------------------------------------------------- -/* -Copyright (C) 2010 EDuke32 developers and contributors - -This file is part of EDuke32. - -EDuke32 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 "ns.h" // Must come before everything else! - -#ifndef NETWORK_DISABLE -#include "enet.h" -#endif - -#include "duke3d.h" -#include "game.h" -#include "gamedef.h" -#include "net.h" -#include "premap.h" -#include "savegame.h" - -#include "m_crc32.h" -#include "mapinfo.h" - -BEGIN_DUKE_NS - -void *g_netServer = NULL; -void faketimerhandler(void) {} -void Net_GetPackets(void) -{ -} - -END_DUKE_NS diff --git a/source/games/duke/src/zz_savegame.cpp b/source/games/duke/src/zz_savegame.cpp index 406a9a2e4..467c2597b 100644 --- a/source/games/duke/src/zz_savegame.cpp +++ b/source/games/duke/src/zz_savegame.cpp @@ -238,7 +238,7 @@ bool G_SavePlayer(FSaveGameNode *sv) fw.Close(); bool res = FinishSavegameWrite(); - if (!g_netServer && ud.multimode < 2) + if (ud.multimode < 2) { Printf("Saved: %s\n", fn.GetChars()); quoteMgr.InitializeQuote(QUOTE_RESERVED4, "Game Saved"); @@ -257,7 +257,7 @@ bool G_SavePlayer(FSaveGameNode *sv) bool GameInterface::LoadGame(FSaveGameNode* sv) { - if (g_netServer || ud.multimode > 1) + if (ud.multimode > 1) { quoteMgr.InitializeQuote(QUOTE_RESERVED4, "Multiplayer Loading Not Yet Supported"); FTA(QUOTE_RESERVED4, g_player[myconnectindex].ps); @@ -276,7 +276,7 @@ bool GameInterface::LoadGame(FSaveGameNode* sv) bool GameInterface::SaveGame(FSaveGameNode* sv) { - if (g_netServer || ud.multimode > 1) + if (ud.multimode > 1) { quoteMgr.InitializeQuote(QUOTE_RESERVED4, "Multiplayer Saving Not Yet Supported"); FTA(QUOTE_RESERVED4, g_player[myconnectindex].ps); diff --git a/source/sw/src/game.cpp b/source/sw/src/game.cpp index 5294a91bd..501a723d6 100644 --- a/source/sw/src/game.cpp +++ b/source/sw/src/game.cpp @@ -1404,7 +1404,6 @@ void LogoLevel(void) handleevents(); - // taken from top of faketimerhandler // limits checks to max of 40 times a second if (totalclock >= ototalclock + synctics) { @@ -1478,7 +1477,6 @@ void CreditsLevel(void) { handleevents(); - // taken from top of faketimerhandler // limits checks to max of 40 times a second if (totalclock >= ototalclock + synctics) { @@ -1630,7 +1628,6 @@ void MenuLevel(void) handleevents(); C_RunDelayedCommands(); - // taken from top of faketimerhandler // limits checks to max of 40 times a second if (totalclock >= ototalclock + synctics) { @@ -1902,7 +1899,6 @@ void BonusScreen() { handleevents(); - // taken from top of faketimerhandler if (totalclock < ototalclock + limit) { continue; @@ -2430,8 +2426,6 @@ void InitRunLevel(void) StartAmbientSound(); } -void faketimerhandler(); - void RunLevel(void) { InitRunLevel(); diff --git a/source/sw/src/network.cpp b/source/sw/src/network.cpp index d11aa913d..deb9d338e 100644 --- a/source/sw/src/network.cpp +++ b/source/sw/src/network.cpp @@ -908,8 +908,6 @@ AddSyncInfoToPacket(int *j) } } -void faketimerhandler(void) { ; } - void UpdateInputs(void) {