From 29a4955f791b79dab05589ac86a6f247a16059ae Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 5 Oct 2020 20:44:30 +0200 Subject: [PATCH] - missing global variables. --- source/common/engine/i_net.h | 1 + source/core/gamecontrol.cpp | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/source/common/engine/i_net.h b/source/common/engine/i_net.h index e50955295..87d720014 100644 --- a/source/common/engine/i_net.h +++ b/source/common/engine/i_net.h @@ -81,5 +81,6 @@ struct doomcom_t extern doomcom_t doomcom; extern bool netgame, multiplayer; +extern int consoleplayer; #endif diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index 53cf0fad6..c391693f7 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -1850,3 +1850,23 @@ bool validFilter(const char* str) } return false; } + +#include "vm.h" + +DEFINE_ACTION_FUNCTION(_Screen, GetViewWindow) +{ + PARAM_PROLOGUE; + if (numret > 0) ret[0].SetInt(windowxy1.x); + if (numret > 1) ret[1].SetInt(windowxy1.y); + if (numret > 2) ret[2].SetInt(windowxy2.x - windowxy1.x + 1); + if (numret > 3) ret[3].SetInt(windowxy2.y - windowxy1.y + 1); + return MIN(numret, 4); +} + +extern bool demoplayback; +DEFINE_GLOBAL(multiplayer) +DEFINE_GLOBAL(netgame) +DEFINE_GLOBAL(gameaction) +DEFINE_GLOBAL(gamestate) +DEFINE_GLOBAL(demoplayback) +DEFINE_GLOBAL(consoleplayer)