(svn r2748) Remove unused cruft from the main loop
authortron
Fri, 29 Jul 2005 16:40:29 +0000
changeset 2228 93cdde0f85ba
parent 2227 4a6aba550173
child 2229 04b5d913acec
(svn r2748) Remove unused cruft from the main loop
hal.h
openttd.c
video/dedicated_v.c
video/null_v.c
video/sdl_v.c
video/win32_v.c
--- a/hal.h	Fri Jul 29 15:55:14 2005 +0000
+++ b/hal.h	Fri Jul 29 16:40:29 2005 +0000
@@ -12,16 +12,11 @@
 	const char *(*start)(const char * const *parm);
 	void (*stop)(void);
 	void (*make_dirty)(int left, int top, int width, int height);
-	int (*main_loop)(void);
+	void (*main_loop)(void);
 	bool (*change_resolution)(int w, int h);
 	void (*toggle_fullscreen)(bool fullscreen);
 } HalVideoDriver;
 
-enum {
-	ML_QUIT = 0,
-	ML_SWITCHDRIVER = 1,
-};
-
 typedef struct {
 	const char *(*start)(const char * const *parm);
 	void (*stop)(void);
--- a/openttd.c	Fri Jul 29 15:55:14 2005 +0000
+++ b/openttd.c	Fri Jul 29 16:40:29 2005 +0000
@@ -521,7 +521,7 @@
 	}
 #endif /* ENABLE_NETWORK */
 
-	while (_video_driver->main_loop() == ML_SWITCHDRIVER) {}
+	_video_driver->main_loop();
 
 	JoinOTTDThread();
 	IConsoleFree();
--- a/video/dedicated_v.c	Fri Jul 29 15:55:14 2005 +0000
+++ b/video/dedicated_v.c	Fri Jul 29 16:40:29 2005 +0000
@@ -215,7 +215,7 @@
 	IConsoleCmdExec(input_line); // execute command
 }
 
-static int DedicatedVideoMainLoop(void)
+static void DedicatedVideoMainLoop(void)
 {
 	uint32 next_tick;
 	uint32 cur_ticks;
@@ -257,14 +257,12 @@
 
 	if (!_networking) {
 		DEBUG(net, 1)("Dedicated server could not be launched. Aborting.");
-		return ML_QUIT;
+		return;
 	}
 
-	while (true) {
+	while (!_exit_game) {
 		InteractiveRandom(); // randomness
 
-		if (_exit_game) return ML_QUIT;
-
 		if (!_dedicated_forks)
 			DedicatedHandleKeyInput();
 
--- a/video/null_v.c	Fri Jul 29 15:55:14 2005 +0000
+++ b/video/null_v.c	Fri Jul 29 16:40:29 2005 +0000
@@ -21,7 +21,7 @@
 
 static void NullVideoMakeDirty(int left, int top, int width, int height) {}
 
-static int NullVideoMainLoop(void)
+static void NullVideoMainLoop(void)
 {
 	uint i;
 
@@ -30,8 +30,6 @@
 		_screen.dst_ptr = _null_video_mem;
 		UpdateWindows();
 	}
-
-	return ML_QUIT;
 }
 
 static bool NullVideoChangeRes(int w, int h) { return false; }
--- a/video/sdl_v.c	Fri Jul 29 15:55:14 2005 +0000
+++ b/video/sdl_v.c	Fri Jul 29 16:40:29 2005 +0000
@@ -350,11 +350,11 @@
 		if (_game_mode != GM_MENU) {
 			if(_patches.autosave_on_exit) {
 				DoExitSave();
-				return ML_QUIT;
+				return 0;
 			} else
 				AskExitGame();
 		} else
-			return ML_QUIT;
+			return 0;
 		break;
 
 		case SDL_KEYDOWN: /* Toggle full-screen on ALT + ENTER/F */
@@ -400,7 +400,7 @@
 	SdlClose(SDL_INIT_VIDEO);
 }
 
-static int SdlVideoMainLoop(void)
+static void SdlVideoMainLoop(void)
 {
 	uint32 next_tick = SDL_CALL SDL_GetTicks() + 30;
 	uint32 cur_ticks;
@@ -414,9 +414,9 @@
 		InteractiveRandom(); // randomness
 
 		while ((i = PollEvent()) == -1) {}
-		if (i >= 0) return i;
+		if (i >= 0) return;
 
-		if (_exit_game) return ML_QUIT;
+		if (_exit_game) return;
 
 		mod = SDL_CALL SDL_GetModState();
 		keys = SDL_CALL SDL_GetKeyState(&numkeys);
--- a/video/win32_v.c	Fri Jul 29 15:55:14 2005 +0000
+++ b/video/win32_v.c	Fri Jul 29 16:40:29 2005 +0000
@@ -21,7 +21,6 @@
 	HPALETTE gdi_palette;
 	int width,height;
 	int width_org, height_org;
-	bool switch_driver;
 	bool fullscreen;
 	bool double_size;
 	bool has_focus;
@@ -698,7 +697,7 @@
 	InvalidateRect(_wnd.main_wnd, NULL, FALSE);
 }
 
-static int Win32GdiMainLoop(void)
+static void Win32GdiMainLoop(void)
 {
 	MSG mesg;
 	uint32 next_tick = GetTickCount() + 30, cur_ticks;
@@ -711,8 +710,7 @@
 			TranslateMessage(&mesg);
 			DispatchMessage(&mesg);
 		}
-		if (_exit_game) return ML_QUIT;
-		if (_wnd.switch_driver) return ML_SWITCHDRIVER;
+		if (_exit_game) return;
 
 #if defined(_DEBUG)
 		if (_wnd.has_focus && GetAsyncKeyState(VK_SHIFT) < 0) {