shithub: cstory

ref: 409e94a2debeea403d22bfd0be3dd559324ef80e
dir: /src/Escape.cpp/

View raw version
#include "WindowsWrapper.h"
#include "Draw.h"
#include "KeyControl.h"

int Call_Escape()
{
	RECT rc = {0, 128, 208, 144};
	
	while (Flip_SystemTask())
	{
		//Get pressed keys
		GetTrg();
		
		if (gKeyTrg & 0x8000) //Escape is pressed, quit game
		{
			gKeyTrg = 0;
			return 0;
		}
		if (gKeyTrg & 0x400) //F1 is pressed, continue
		{
			gKeyTrg = 0;
			return 1;
		}
		if (gKeyTrg & 0x800) //F2 is pressed, reset
		{
			gKeyTrg = 0;
			return 2;
		}
		
		//Draw screen
		CortBox(&grcFull, 0x000000);
		PutBitmap3(&grcFull, 56, 112, &rc, 26);
		//PutFramePerSecound();
	}
	
	//Quit if window is closed
	gKeyTrg = 0;
	return 0;
}