shithub: cstory

Download patch

ref: 9b82baeb021dfa6b49225d7410586922c1b4f532
parent: cc1df04fabc69ad1f0665cef42249a06978bbce6
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon May 13 13:50:09 EDT 2019

Made MiniMap.cpp actually ASM-accurate

--- a/src/ArmsItem.cpp
+++ b/src/ArmsItem.cpp
@@ -129,10 +129,10 @@
 	}
 
 	if (i == ITEM_MAX)
-		return false;
+		return FALSE;
 
 	gItemData[i].code = code;
-	return true;
+	return TRUE;
 }
 
 BOOL SubItemData(long code)
@@ -388,7 +388,7 @@
 
 		if (gKeyTrg & KEY_ESCAPE)
 		{
-			switch (Call_Escape())
+			switch (Call_Escape(hWnd))
 			{
 				case 0:
 					return 0;
@@ -430,7 +430,7 @@
 			}
 		}
 
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
--- a/src/Draw.cpp
+++ b/src/Draw.cpp
@@ -48,8 +48,10 @@
 
 #define FRAMERATE 20
 
-BOOL Flip_SystemTask()
+BOOL Flip_SystemTask(int hWnd)
 {
+	(void)hWnd;
+
 	while (true)
 	{
 		if (!SystemTask())
--- a/src/Draw.h
+++ b/src/Draw.h
@@ -52,7 +52,7 @@
 
 extern SURFACE surf[SURFACE_ID_MAX];
 
-BOOL Flip_SystemTask();
+BOOL Flip_SystemTask(int hWnd);
 BOOL StartDirectDraw(int lMagnification, int lColourDepth);
 void EndDirectDraw();
 void ReleaseSurface(int s);
--- a/src/Ending.cpp
+++ b/src/Ending.cpp
@@ -410,7 +410,7 @@
 		// Escape menu
 		if (gKey & 0x8000)
 		{
-			int escRet = Call_Escape();
+			int escRet = Call_Escape(hWnd);
 			if (escRet == 0)
 				return 0;
 			if (escRet == 2)
@@ -464,7 +464,7 @@
 
 		// Draw window
 		PutFramePerSecound();
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
--- a/src/Escape.cpp
+++ b/src/Escape.cpp
@@ -7,7 +7,7 @@
 #include "KeyControl.h"
 #include "Main.h"
 
-int Call_Escape()
+int Call_Escape(int hWnd)
 {
 	RECT rc = {0, 128, 208, 144};
 
@@ -37,7 +37,7 @@
 		PutBitmap3(&grcFull, (WINDOW_WIDTH - 208) / 2, (WINDOW_HEIGHT - 16) / 2, &rc, SURFACE_ID_TEXT_BOX);
 		PutFramePerSecound();
 
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 		{
 			// Quit if window is closed
 			gKeyTrg = 0;
--- a/src/Escape.h
+++ b/src/Escape.h
@@ -1,3 +1,3 @@
 #pragma once
 
-int Call_Escape();
+int Call_Escape(int hWnd);
--- a/src/Game.cpp
+++ b/src/Game.cpp
@@ -141,7 +141,7 @@
 		// Escape menu
 		if (gKey & KEY_ESCAPE)
 		{
-			int escRet = Call_Escape();
+			int escRet = Call_Escape(hWnd);
 			if (escRet == 0)
 				return 0;
 			if (escRet == 2)
@@ -193,7 +193,7 @@
 		PutTextScript();
 		PutFramePerSecound();
 
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 
 		++gCounter;
@@ -204,7 +204,7 @@
 	{
 		CortBox(&grcGame, 0x000000);
 		PutFramePerSecound();
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 	return 2;
@@ -335,7 +335,7 @@
 
 		if (gKey & KEY_ESCAPE)
 		{
-			int escRet = Call_Escape();
+			int escRet = Call_Escape(hWnd);
 			if (escRet == 0)
 				return 0;
 			if (escRet == 2)
@@ -420,7 +420,7 @@
 
 		PutFramePerSecound();
 
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
@@ -433,7 +433,7 @@
 	{
 		CortBox(&grcGame, 0);
 		PutFramePerSecound();
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
@@ -479,7 +479,7 @@
 			// Escape menu
 			if (gKey & KEY_ESCAPE)
 			{
-				int escRet = Call_Escape();
+				int escRet = Call_Escape(hWnd);
 				if (escRet == 0)
 					return 0;
 				if (escRet == 2)
@@ -614,7 +614,7 @@
 			PutTextScript();
 
 			PutFramePerSecound();
-			if (!Flip_SystemTask())
+			if (!Flip_SystemTask(hWnd))
 				break;
 			++gCounter;
 		}
--- a/src/Main.cpp
+++ b/src/Main.cpp
@@ -32,6 +32,7 @@
 
 int gJoystickButtonTable[8];
 
+int hWnd;	// Placeholder until we restore the WinAPI code
 bool gbUseJoystick = false;
 bool bFps = false;
 
@@ -349,7 +350,7 @@
 			PutBitmap3(&clip_rect, (WINDOW_WIDTH - 64) / 2, (WINDOW_HEIGHT - 8) / 2, &loading_rect, SURFACE_ID_LOADING);
 
 			// Draw to screen
-			if (Flip_SystemTask())
+			if (Flip_SystemTask(hWnd))
 			{
 				// Initialize sound
 				InitDirectSound();
--- a/src/Main.h
+++ b/src/Main.h
@@ -1,4 +1,6 @@
 #pragma once
 
+extern int hWnd;
+
 void PutFramePerSecound();
 int GetFramePerSecound();
--- a/src/MiniMap.cpp
+++ b/src/MiniMap.cpp
@@ -79,12 +79,16 @@
 int MiniMapLoop()
 {
 	int f;
+	int line;
+	unsigned char my_wait;
 
+	RECT rcMiniMap;
+	RECT rcView;
+
 	RECT my_rect = {0, 57, 1, 58};
 	int my_x = (gMC.x / 0x200 + 8) / 16;
 	int my_y = (gMC.y / 0x200 + 8) / 16;
 
-	RECT rcView;
 	for (f = 0; f <= 8; f++)
 	{
 		GetTrg();
@@ -91,7 +95,7 @@
 
 		if (gKey & KEY_ESCAPE)
 		{
-			switch (Call_Escape())
+			switch (Call_Escape(hWnd))
 			{
 				case 0:
 					return 0;
@@ -111,11 +115,10 @@
 		CortBox(&rcView, 0);
 
 		PutFramePerSecound();
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
-	RECT rcMiniMap;
 	rcMiniMap.left = 0;
 	rcMiniMap.right = gMap.width;
 	rcMiniMap.top = 0;
@@ -125,8 +128,8 @@
 	rcView.bottom = --rcView.top + gMap.length + 2;
 	CortBox2(&rcMiniMap, 0, SURFACE_ID_MAP);
 
-	int line = 0;
-	unsigned char my_wait = 0;
+	line = 0;
+	my_wait = 0;
 	while (true)
 	{
 		GetTrg();
@@ -136,7 +139,7 @@
 
 		if (gKey & KEY_ESCAPE)
 		{
-			switch (Call_Escape())
+			switch (Call_Escape(hWnd))
 			{
 				case 0:
 					return 0;
@@ -167,7 +170,7 @@
 			PutBitmap3(&grcGame, my_x + rcView.left + 1, my_y + rcView.top + 1, &my_rect, SURFACE_ID_TEXT_BOX);
 
 		PutFramePerSecound();
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
@@ -177,7 +180,7 @@
 
 		if (gKey & KEY_ESCAPE)
 		{
-			switch (Call_Escape())
+			switch (Call_Escape(hWnd))
 			{
 				case 0:
 					return 0;
@@ -197,7 +200,7 @@
 		CortBox(&rcView, 0);
 
 		PutFramePerSecound();
-		if (!Flip_SystemTask())
+		if (!Flip_SystemTask(hWnd))
 			return 0;
 	}
 
--- a/src/SelStage.cpp
+++ b/src/SelStage.cpp
@@ -151,7 +151,7 @@
 
 		if (gKey & KEY_ESCAPE)
 		{
-			int escRet = Call_Escape();
+			int escRet = Call_Escape(hWnd);
 			if (escRet == 0)
 				return 0;
 			if (escRet == 2)
@@ -193,7 +193,7 @@
 
 		PutFramePerSecound();
 	}
-	while (Flip_SystemTask());
+	while (Flip_SystemTask(hWnd));
 
 	return 0;
 }