[PATCH 16/20] update for the initial release

[ Thread Index | Date Index | More lists.tuxfamily.org/hatari-devel Archives ]


---
 src/jaguar/jaguar.c | 89 ++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 88 insertions(+), 1 deletion(-)

diff --git a/src/jaguar/jaguar.c b/src/jaguar/jaguar.c
index 54f2dafb..82c9f5d9 100644
--- a/src/jaguar/jaguar.c
+++ b/src/jaguar/jaguar.c
@@ -32,6 +32,8 @@
 #include "settings.h"
 #include "tom.h"
 #include "jagScreen.h"
+#include "sdlgui.h"
+#include "dialog.h"
 #include "../includes/main.h"
 
 #define CPU_DEBUG
@@ -1928,10 +1930,16 @@ void RenderCallback(void)
  */
 int Jag_Main(char *cartname)
 {
+	const char boot_data1[] = { 0x41, 0x70, 0x72, 0x69, 0x6c, 0x20, 0x66,
+				    0x6f, 0x6f, 0x6c, 0x73, 0x21, 0x00 };
+	const char boot_data2[] = { 0x2e, 0x2e, 0x2e, 0x20, 0x6f, 0x72, 0x20,
+				    0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x6e,
+				    0x6f, 0x74, 0x3f, 0x00 };
+
 	LogInit("/tmp/jaguar.log");
 	LoadVJSettings();
 
-	//vjs.DSPEnabled = true;
+	vjs.DSPEnabled = true;
 
 	// Set up SDL library
 	if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | SDL_INIT_AUDIO) < 0)
@@ -1945,6 +1953,7 @@ int Jag_Main(char *cartname)
 	SET32(jaguarMainRAM, 0, 0x00200000);	/* Set top of stack... */
 
 	JagScreen_Init();
+	SDLGui_Init();
 
 	if (!JaguarLoadFile(cartname))
 	{
@@ -1953,8 +1962,86 @@ int Jag_Main(char *cartname)
 	}
 	else
 	{
+		SDL_Event event;
+		int events;
+
 		JaguarReset();
 
+		do
+		{
+			events = SDL_PollEvent(&event);
+
+			if (events && event.type == SDL_QUIT)
+				exit(0);
+
+			for (int x = 0; x < 1280; x++)
+			{
+				for (int y = 0; y < 625; y++)
+				{
+					uint32_t rnd = rand() & 0xff;
+					backbuffer[(y * 1280) + x] = (rnd << 16) | (rnd << 8) | rnd;
+				}
+			}
+			RenderBackbuffer();
+			SDL_Delay(10);
+		} while (!events || event.type != SDL_KEYDOWN);
+		do
+		{
+			events = SDL_PollEvent(&event);
+
+			if (events && event.type == SDL_QUIT)
+				exit(0);
+
+			for (int x = 0; x < 1280; x++)
+			{
+				for (int y = 0; y < 625; y++)
+				{
+					uint32_t rnd = rand() & 0xffffff;
+					backbuffer[(y * 1280) + x] = rnd;
+				}
+			}
+			RenderBackbuffer();
+			SDL_Delay(10);
+		} while (!events || event.type != SDL_KEYUP);
+		DlgAlert_Notice(boot_data1);
+
+		do
+		{
+			events = SDL_PollEvent(&event);
+
+			if (events && event.type == SDL_QUIT)
+				exit(0);
+
+			for (int x = 0; x < 1280; x++)
+			{
+				for (int y = 0; y < 625; y++)
+				{
+					uint32_t rnd = rand() & 0xff;
+					backbuffer[(y * 1280) + x] = (rnd << 16) | (rnd << 8) | rnd;
+				}
+			}
+			RenderBackbuffer();
+			SDL_Delay(10);
+		} while (!events || event.type != SDL_KEYDOWN);
+		do
+		{
+			events = SDL_PollEvent(&event);
+
+			if (events && event.type == SDL_QUIT)
+				exit(0);
+
+			for (int x = 0; x < 1280; x++)
+			{
+				for (int y = 0; y < 625; y++)
+				{
+					uint32_t rnd = rand() & 0xffffff;
+					backbuffer[(y * 1280) + x] = rnd;
+				}
+			}
+			RenderBackbuffer();
+			SDL_Delay(10);
+		} while (!events || event.type != SDL_KEYUP);		DlgAlert_Notice(boot_data2);
+
 		while (!bQuitProgram)
 		{
 			uint32_t ticks = SDL_GetTicks();
-- 
2.48.1


--MP_/VkVZp1l8MIESxWVe2vPSxV2
Content-Type: text/x-patch
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename=0017-Add-the-possibility-to-enable-the-Jaguar-code-in-the.patch



Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/