diff --git a/source/build/src/sdlayer.cpp b/source/build/src/sdlayer.cpp index 7bd9f7376..8fa69d58a 100644 --- a/source/build/src/sdlayer.cpp +++ b/source/build/src/sdlayer.cpp @@ -1,45 +1,16 @@ // SDL interface layer for the Build Engine // Use SDL 1.2 or 2.0 from http://www.libsdl.org -#ifdef _WIN32 -#include -#include -#endif -#include -#include -#include -# include "gl_load.h" - #include "a.h" #include "build.h" #include "common.h" #include "compat.h" #include "engine_priv.h" -#include "osd.h" #include "palette.h" #include "baselayer.h" -#include "m_argv.h" #include "mmulti.h" -#include "scriptfile.h" -#include "zstring.h" -#include "gameconfigfile.h" -#include "gamecontrol.h" -#include "resourcefile.h" -#include "sc_man.h" -#include "i_specialpaths.h" -#include "inputstate.h" -#include "c_cvars.h" -#include "i_time.h" -#include "c_dispatch.h" -#include "d_gui.h" -#include "menu.h" -#include "utf8.h" -#include "imgui.h" -#include "imgui_impl_sdl.h" -#include "imgui_impl_opengl3.h" -# include "glsurface.h" - +#include "glsurface.h" double g_beforeSwapTime; @@ -66,47 +37,6 @@ int32_t lockcount=0; char modechange=1; char offscreenrendering=0; -#define MAX_ERRORTEXT 4096 - -//========================================================================== -// -// I_Error -// -// Throw an error that will send us to the console if we are far enough -// along in the startup process. -// -//========================================================================== - -void I_Error(const char *error, ...) -{ - va_list argptr; - char errortext[MAX_ERRORTEXT]; - - va_start(argptr, error); - vsnprintf(errortext, MAX_ERRORTEXT, error, argptr); - va_end(argptr); - #ifdef _WIN32 - OutputDebugStringA(errortext); - #endif - - throw std::runtime_error(errortext); -} - -void I_FatalError(const char* error, ...) -{ - va_list argptr; - char errortext[MAX_ERRORTEXT]; - - va_start(argptr, error); - vsnprintf(errortext, MAX_ERRORTEXT, error, argptr); - va_end(argptr); -#ifdef _WIN32 - OutputDebugStringA(errortext); -#endif - - throw std::runtime_error(errortext); -} - // Calculate ylookup[] and call setvlinebpl() void calc_ylookup(int32_t bpl, int32_t lastyidx) @@ -223,35 +153,5 @@ void videoEndDrawing(void) lockcount = 0; } -// -// -// --------------------------------------- -// -// Miscellany -// -// --------------------------------------- -// -// - auto vsnprintfptr = vsnprintf; // This is an inline in Visual Studio but we need an address for it to satisfy the MinGW compiled libraries. -// -// debugprintf() -- sends a debug string to the debugger -// -void debugprintf(const char* f, ...) -{ - va_list va; - va_start(va, f); - -#ifdef _WIN32 - if (!IsDebuggerPresent()) return; - - char buf[1024]; - vsnprintf(buf, 1024, f, va); - va_end(va); - OutputDebugStringA(buf); -#else - vprintf(f, va); -#endif -} - diff --git a/source/common/gamecontrol.cpp b/source/common/gamecontrol.cpp index 842af461c..d34a982d2 100644 --- a/source/common/gamecontrol.cpp +++ b/source/common/gamecontrol.cpp @@ -20,6 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ //------------------------------------------------------------------------- +#include #include "gamecontrol.h" #include "tarray.h" #include "zstring.h" @@ -807,3 +808,57 @@ void S_SetSoundPaused(int state) } #endif } + +#define MAX_ERRORTEXT 4096 + +//========================================================================== +// +// I_Error +// +// Throw an error that will send us to the console if we are far enough +// along in the startup process. +// +//========================================================================== + +void I_Error(const char* error, ...) +{ + va_list argptr; + char errortext[MAX_ERRORTEXT]; + + va_start(argptr, error); + vsnprintf(errortext, MAX_ERRORTEXT, error, argptr); + va_end(argptr); +#ifdef _WIN32 + OutputDebugStringA(errortext); +#endif + + throw std::runtime_error(errortext); +} + +void I_FatalError(const char* error, ...) +{ + va_list argptr; + char errortext[MAX_ERRORTEXT]; + + va_start(argptr, error); + vsnprintf(errortext, MAX_ERRORTEXT, error, argptr); + va_end(argptr); +#ifdef _WIN32 + OutputDebugStringA(errortext); +#endif + + throw std::runtime_error(errortext); +} + +// +// debugprintf() -- sends a debug string to the debugger +// +void debugprintf(const char* f, ...) +{ + va_list va; + va_start(va, f); + FString out; + out.VFormat(f, va); + I_DebugPrint(out); +} + diff --git a/source/common/sound/s_soundinternal.h b/source/common/sound/s_soundinternal.h index 08cfff2c5..0fdc5d107 100644 --- a/source/common/sound/s_soundinternal.h +++ b/source/common/sound/s_soundinternal.h @@ -358,7 +358,7 @@ public: { return id == 0 ? "" : S_sfx[id].name.GetChars(); } - TArray &GetSounds() //Thio should only be used for constructing the sound list or for diagnostics code prinring information about the sound list. + TArray &GetSounds() //Thio should only be used for constructing the sound list or for diagnostics code printing information about the sound list. { return S_sfx; }