Skip to content

Commit

Permalink
- some reformatting on exit code, mainly to make searching for the co…
Browse files Browse the repository at this point in the history
…ntent easier.
  • Loading branch information
coelckers committed Oct 1, 2019
1 parent f3219ca commit 86ab366
Show file tree
Hide file tree
Showing 25 changed files with 55 additions and 50 deletions.
2 changes: 1 addition & 1 deletion libraries/asmjit/asmjit/core/compiler.h
Expand Up @@ -327,7 +327,7 @@ class FuncNode : public LabelNode {
FuncDetail _funcDetail;
//! Function frame.
FuncFrame _frame;
//! Function exit (label).
//! Function exit(label).

This comment has been minimized.

Copy link
@Iniquitatis

Iniquitatis Oct 3, 2019

Contributor

Oops 1.

LabelNode* _exitNode;
//! Function end (sentinel).
SentinelNode* _end;
Expand Down
2 changes: 1 addition & 1 deletion libraries/glslang/spirv/SpvBuilder.h
Expand Up @@ -493,7 +493,7 @@ class Builder {
// Add a branch to the continue_target of the current (innermost) loop.
void createLoopContinue();

// Add an exit (e.g. "break") from the innermost loop that we're currently
// Add an exit(e.g. "break") from the innermost loop that we're currently

This comment has been minimized.

Copy link
@Iniquitatis

Iniquitatis Oct 3, 2019

Contributor

Oops 2.

// in.
void createLoopExit();

Expand Down
4 changes: 2 additions & 2 deletions src/console/c_cmds.cpp
Expand Up @@ -101,12 +101,12 @@ bool CheckCheatmode (bool printmsg)

CCMD (quit)
{
if (!insave) exit (0);
if (!insave) exit(0);
}

CCMD (exit)
{
if (!insave) exit (0);
if (!insave) exit(0);
}

/*
Expand Down
2 changes: 1 addition & 1 deletion src/d_net.cpp
Expand Up @@ -1604,7 +1604,7 @@ void D_ArbitrateNetStart (void)
StartScreen->NetInit ("Exchanging game information", 1);
if (!StartScreen->NetLoop (DoArbitrate, &data))
{
exit (0);
exit(0);
}

if (consoleplayer == Net_Arbitrator)
Expand Down
2 changes: 1 addition & 1 deletion src/dobjtype.cpp
Expand Up @@ -209,7 +209,7 @@ static int cregcmp (const void *a, const void *b) NO_SANITIZE

void PClass::StaticInit ()
{
atterm (StaticShutdown);
atterm(StaticShutdown);

Namespaces.GlobalNamespace = Namespaces.NewNamespace(0);

Expand Down
14 changes: 7 additions & 7 deletions src/i_net.cpp
Expand Up @@ -435,7 +435,7 @@ void StartNetwork (bool autoPort)
}
#endif

atterm (CloseNetwork);
atterm(CloseNetwork);

netgame = true;
multiplayer = true;
Expand Down Expand Up @@ -689,14 +689,14 @@ void HostGame (int i)

doomcom.numnodes = 1;

atterm (SendAbort);
atterm(SendAbort);

StartScreen->NetInit ("Waiting for players", numplayers);

// Wait for numplayers-1 different connections
if (!StartScreen->NetLoop (Host_CheckForConnects, (void *)(intptr_t)numplayers))
{
exit (0);
exit(0);
}

// Now inform everyone of all machines involved in the game
Expand All @@ -706,7 +706,7 @@ void HostGame (int i)

if (!StartScreen->NetLoop (Host_SendAllHere, (void *)gotack))
{
exit (0);
exit(0);
}

popterm ();
Expand Down Expand Up @@ -858,20 +858,20 @@ void JoinGame (int i)
sendplayer[1] = 0;
doomcom.numnodes = 2;

atterm (SendAbort);
atterm(SendAbort);

// Let host know we are here
StartScreen->NetInit ("Contacting host", 0);

if (!StartScreen->NetLoop (Guest_ContactHost, NULL))
{
exit (0);
exit(0);
}

// Wait for everyone else to connect
if (!StartScreen->NetLoop (Guest_WaitForOthers, 0))
{
exit (0);
exit(0);
}

popterm ();
Expand Down
2 changes: 1 addition & 1 deletion src/m_misc.cpp
Expand Up @@ -320,7 +320,7 @@ void M_LoadDefaults ()
{
GameConfig = new FGameConfigFile;
GameConfig->DoGlobalSetup ();
atterm (M_SaveDefaultsFinal);
atterm(M_SaveDefaultsFinal);
}


Expand Down
2 changes: 1 addition & 1 deletion src/p_setup.cpp
Expand Up @@ -572,7 +572,7 @@ void P_SetupLevel(FLevelLocals *Level, int position, bool newGame)
//
void P_Init ()
{
atterm (P_Shutdown);
atterm(P_Shutdown);

P_InitEffects (); // [RH]
P_InitTerrainTypes ();
Expand Down
2 changes: 1 addition & 1 deletion src/posix/cocoa/i_main.mm
Expand Up @@ -512,7 +512,7 @@ int main(int argc, char** argv)

CreateMenu();

atterm(ReleaseApplicationController);
atexit(ReleaseApplicationController);

appCtrl = [ApplicationController new];
[NSApp setDelegate:appCtrl];
Expand Down
2 changes: 1 addition & 1 deletion src/posix/sdl/hardware.cpp
Expand Up @@ -84,5 +84,5 @@ void I_InitGraphics ()
if (Video == NULL)
I_FatalError ("Failed to initialize display");

atterm (I_ShutdownGraphics);
atterm(I_ShutdownGraphics);
}
2 changes: 1 addition & 1 deletion src/posix/sdl/i_input.cpp
Expand Up @@ -297,7 +297,7 @@ void MessagePump (const SDL_Event &sev)
switch (sev.type)
{
case SDL_QUIT:
exit (0);
exit(0);

case SDL_WINDOWEVENT:
extern void ProcessSDLWindowEvent(const SDL_WindowEvent &);
Expand Down
2 changes: 1 addition & 1 deletion src/posix/sdl/i_main.cpp
Expand Up @@ -241,7 +241,7 @@ int main (int argc, char **argv)
}
}

exit (-1);
return -1;
}
catch (...)
{
Expand Down
4 changes: 2 additions & 2 deletions src/posix/sdl/i_system.cpp
Expand Up @@ -98,7 +98,7 @@ void I_Init (void)
CheckCPUID (&CPU);
DumpCPUInfo (&CPU);

atterm (I_ShutdownSound);
atterm(I_ShutdownSound);
I_InitSound ();
}

Expand Down Expand Up @@ -171,7 +171,7 @@ void I_FatalError (const char *error, va_list ap)
}
// throw CFatalError (errortext);
fprintf (stderr, "%s\n", errortext);
exit (-1);
exit(-1);
}
std::terminate();
}
Expand Down
2 changes: 1 addition & 1 deletion src/rendering/r_utility.cpp
Expand Up @@ -380,7 +380,7 @@ FRenderer *CreateSWRenderer();

void R_Init ()
{
atterm (R_Shutdown);
atterm(R_Shutdown);

StartScreen->Progress();
R_InitTranslationTables ();
Expand Down
2 changes: 1 addition & 1 deletion src/rendering/v_video.cpp
Expand Up @@ -563,7 +563,7 @@ void V_InitScreenSize ()
const char *i;
int width, height, bits;

atterm (V_Shutdown);
atterm(V_Shutdown);


width = height = bits = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/sound/s_advsound.cpp
Expand Up @@ -986,7 +986,7 @@ void S_ParseSndInfo (bool redefine)
int lump;

if (!redefine) SavedPlayerSounds.Clear(); // clear skin sounds only for initial parsing.
atterm (S_ClearSoundData);
atterm(S_ClearSoundData);
S_ClearSoundData(); // remove old sound data first!

CurrentPitchMask = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/sound/s_environment.cpp
Expand Up @@ -643,7 +643,7 @@ void S_ParseReverbDef ()
{
int lump, lastlump = 0;

atterm (S_UnloadReverbDef);
atterm(S_UnloadReverbDef);
S_UnloadReverbDef ();

while ((lump = Wads.FindLump ("REVERBS", &lastlump)) != -1)
Expand Down
2 changes: 1 addition & 1 deletion src/sound/s_sound.cpp
Expand Up @@ -305,7 +305,7 @@ void S_Init ()
{
int curvelump;

atterm (S_Shutdown);
atterm(S_Shutdown);

// Heretic and Hexen have sound curve lookup tables. Doom does not.
curvelump = Wads.CheckNumForName ("SNDCURVE");
Expand Down
2 changes: 1 addition & 1 deletion src/win32/hardware.cpp
Expand Up @@ -152,5 +152,5 @@ void I_InitGraphics ()
if (Video == NULL)
I_FatalError ("Failed to initialize display");

atterm (I_ShutdownGraphics);
atterm(I_ShutdownGraphics);
}
6 changes: 3 additions & 3 deletions src/win32/i_input.cpp
Expand Up @@ -424,7 +424,7 @@ LRESULT CALLBACK WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
case WM_DESTROY:
SetPriorityClass (GetCurrentProcess(), NORMAL_PRIORITY_CLASS);
//PostQuitMessage (0);
exit (0);
exit(0);
break;

case WM_HOTKEY:
Expand Down Expand Up @@ -614,7 +614,7 @@ bool I_InitInput (void *hwnd)
HRESULT hr;

Printf ("I_InitInput\n");
atterm (I_ShutdownInput);
atterm(I_ShutdownInput);

noidle = !!Args->CheckParm ("-noidle");
g_pdi = NULL;
Expand Down Expand Up @@ -740,7 +740,7 @@ void I_GetEvent ()
while (PeekMessage (&mess, NULL, 0, 0, PM_REMOVE))
{
if (mess.message == WM_QUIT)
exit (mess.wParam);
exit(mess.wParam);

if (GUICapture)
{
Expand Down
12 changes: 6 additions & 6 deletions src/win32/i_main.cpp
Expand Up @@ -932,7 +932,7 @@ void DoMain (HINSTANCE hInstance)

if (!Window)
{
MessageBoc(nullptr, "Fatal", "Unable to create main window", MB_ICONEXCLAMATION|MB_OK);
MessageBoxA(nullptr, "Unable to create main window", "Fatal", MB_ICONEXCLAMATION|MB_OK);
exit(-1);
}

Expand Down Expand Up @@ -1019,7 +1019,7 @@ void DoMain (HINSTANCE hInstance)
Printf("%s\n", msg);
}
}
exit (-1);
exit(-1);
}
}

Expand Down Expand Up @@ -1133,7 +1133,7 @@ void CALLBACK ExitFatally (ULONG_PTR dummy)
I_ShutdownGraphics ();
RestoreConView ();
DisplayCrashLog ();
exit (-1);
exit(-1);
}

//==========================================================================
Expand Down Expand Up @@ -1233,7 +1233,7 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE nothing, LPWSTR cmdline, int
// don't support Windows 95, we have no obligation to provide assistance in
// getting it installed.
MessageBoxA(NULL, "Could not load riched20.dll", GAMENAME " Error", MB_OK | MB_ICONSTOP);
exit(0);
return 0;
}

#if !defined(__GNUC__) && defined(_DEBUG)
Expand All @@ -1248,7 +1248,7 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE nothing, LPWSTR cmdline, int
{
}
DisplayCrashLog ();
exit (0);
return 0;
}
if (__argc == 2 && __wargv != nullptr && wcscmp (__wargv[1], L"TestStackCrash") == 0)
{
Expand All @@ -1261,7 +1261,7 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE nothing, LPWSTR cmdline, int
{
}
DisplayCrashLog ();
exit (0);
return 0;
}
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/win32/i_system.cpp
Expand Up @@ -337,7 +337,7 @@ void I_Init()
CalculateCPUSpeed();
DumpCPUInfo(&CPU);

atterm (I_ShutdownSound);
atterm(I_ShutdownSound);
I_InitSound ();
}

Expand Down
25 changes: 15 additions & 10 deletions src/win32/st_start.cpp
Expand Up @@ -1343,13 +1343,11 @@ void FStrifeStartupScreen::DrawStuff(int old_laser, int new_laser)
//
//==========================================================================

void ST_Endoom()
int RunEndoom()
{
if (showendoom == 0) exit(0);

if (gameinfo.Endoom.Len() == 0)
if (showendoom == 0 || gameinfo.Endoom.Len() == 0)
{
exit(0);
return 0;
}

int endoom_lump = Wads.CheckNumForFullName (gameinfo.Endoom, true);
Expand All @@ -1363,25 +1361,25 @@ void ST_Endoom()

if (endoom_lump < 0 || Wads.LumpLength (endoom_lump) != 4000)
{
exit(0);
return 0;
}

if (Wads.GetLumpFile(endoom_lump) == Wads.GetMaxIwadNum() && showendoom == 2)
{
// showendoom==2 means to show only lumps from PWADs.
exit(0);
return 0;
}

font = ST_Util_LoadFont (TEXT_FONT_NAME);
if (font == NULL)
{
exit(0);
return 0;
}

if (!ST_Util_CreateStartupWindow())
{
ST_Util_FreeFont (font);
exit(0);
return 0;
}

I_ShutdownGraphics ();
Expand Down Expand Up @@ -1432,7 +1430,7 @@ void ST_Endoom()
}
ST_Util_FreeBitmap (StartupBitmap);
ST_Util_FreeFont (font);
exit (int(bRet == 0 ? mess.wParam : 0));
return int(bRet == 0 ? mess.wParam : 0);
}
else if (blinking && mess.message == WM_TIMER && mess.hwnd == Window && mess.wParam == 0x5A15A)
{
Expand All @@ -1444,6 +1442,13 @@ void ST_Endoom()
}
}

void ST_Endoom()
{
int code = RunEndoom();
exit(code);

}

//==========================================================================
//
// ST_Util_CreateStartupWindow
Expand Down

0 comments on commit 86ab366

Please sign in to comment.