mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-03-06 14:27:44 +00:00
add crosshair effect (Harry Tuttle)
This commit is contained in:
parent
73ff32a10d
commit
80cf1f9b52
|
@ -693,69 +693,91 @@ static void PrintGLError(GLenum error)
|
|||
case GL_NO_ERROR: break;
|
||||
default: printf("unknown error\n"); break;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
static void UpdateCrosshairs(CInputs *Inputs, unsigned crosshairs)
|
||||
{
|
||||
float x[2], y[2];
|
||||
|
||||
crosshairs &= 3;
|
||||
if (!crosshairs)
|
||||
return;
|
||||
|
||||
// Set up the viewport and orthogonal projection
|
||||
glUseProgram(0); // no shaders
|
||||
glViewport(xOffset, yOffset, xRes, yRes);
|
||||
}
|
||||
*/
|
||||
|
||||
static void UpdateCrosshairs(uint32_t currentInputs, CInputs *Inputs, unsigned crosshairs)
|
||||
|
||||
{
|
||||
bool offscreenTrigger[2];
|
||||
float x[2], y[2];
|
||||
|
||||
crosshairs &= 3;
|
||||
if (!crosshairs)
|
||||
return;
|
||||
|
||||
// Set up the viewport and orthogonal projection
|
||||
glUseProgram(0); // no shaders
|
||||
glViewport(xOffset, yOffset, xRes, yRes);
|
||||
glMatrixMode(GL_PROJECTION);
|
||||
glLoadIdentity();
|
||||
gluOrtho2D(0.0, 1.0, 1.0, 0.0);
|
||||
glMatrixMode(GL_MODELVIEW);
|
||||
glLoadIdentity();
|
||||
glDisable(GL_TEXTURE_2D); // no texture mapping
|
||||
glDisable(GL_BLEND); // no blending
|
||||
glDisable(GL_DEPTH_TEST); // no Z-buffering needed
|
||||
glDisable(GL_LIGHTING);
|
||||
|
||||
// Convert gun coordinates to viewspace coordinates
|
||||
x[0] = (float) Inputs->gunX[0]->value;
|
||||
y[0] = (float) Inputs->gunY[0]->value;
|
||||
x[1] = (float) Inputs->gunX[1]->value;
|
||||
y[1] = (float) Inputs->gunY[1]->value;
|
||||
GunToViewCoords(&x[0], &y[0]);
|
||||
GunToViewCoords(&x[1], &y[1]);
|
||||
|
||||
// Draw visible crosshairs
|
||||
glBegin(GL_TRIANGLES);
|
||||
if ((crosshairs & 1) && !Inputs->trigger[0]->offscreenValue) // Player 1
|
||||
DrawCrosshair(x[0], y[0], 1.0f, 0.0f, 0.0f);
|
||||
if ((crosshairs & 2) && !Inputs->trigger[1]->offscreenValue) // Player 2
|
||||
DrawCrosshair(x[1], y[1], 0.0f, 1.0f, 0.0f);
|
||||
glEnd();
|
||||
|
||||
//PrintGLError(glGetError());
|
||||
}
|
||||
|
||||
glDisable(GL_BLEND); // no blending
|
||||
glDisable(GL_DEPTH_TEST); // no Z-buffering needed
|
||||
glDisable(GL_LIGHTING);
|
||||
|
||||
// Convert gun coordinates to viewspace coordinates
|
||||
if (currentInputs & Game::INPUT_ANALOG_GUN1)
|
||||
{
|
||||
x[0] = ((float)Inputs->analogGunX[0]->value / 255.0f);
|
||||
y[0] = ((255.0f - (float)Inputs->analogGunY[0]->value) / 255.0f);
|
||||
offscreenTrigger[0] = Inputs->analogTriggerLeft[0]->value || Inputs->analogTriggerRight[0]->value;
|
||||
}
|
||||
else if (currentInputs & Game::INPUT_GUN1)
|
||||
{
|
||||
x[0] = (float)Inputs->gunX[0]->value;
|
||||
y[0] = (float)Inputs->gunY[0]->value;
|
||||
GunToViewCoords(&x[0], &y[0]);
|
||||
offscreenTrigger[0] = (Inputs->trigger[0]->offscreenValue) > 0;
|
||||
}
|
||||
if (currentInputs & Game::INPUT_ANALOG_GUN2)
|
||||
{
|
||||
x[1] = ((float)Inputs->analogGunX[1]->value / 255.0f);
|
||||
y[1] = ((255.0f - (float)Inputs->analogGunY[1]->value) / 255.0f);
|
||||
offscreenTrigger[1] = Inputs->analogTriggerLeft[1]->value || Inputs->analogTriggerRight[1]->value;
|
||||
}
|
||||
else if (currentInputs & Game::INPUT_GUN2)
|
||||
{
|
||||
x[1] = (float)Inputs->gunX[1]->value;
|
||||
y[1] = (float)Inputs->gunY[1]->value;
|
||||
GunToViewCoords(&x[1], &y[1]);
|
||||
offscreenTrigger[1] = (Inputs->trigger[1]->offscreenValue) > 0;
|
||||
}
|
||||
// Draw visible crosshairs
|
||||
glBegin(GL_TRIANGLES);
|
||||
if ((crosshairs & 1) && !offscreenTrigger[0]) // Player 1
|
||||
DrawCrosshair(x[0], y[0], 1.0f, 0.0f, 0.0f);
|
||||
if ((crosshairs & 2) && !offscreenTrigger[1]) // Player 2
|
||||
DrawCrosshair(x[1], y[1], 0.0f, 1.0f, 0.0f);
|
||||
glEnd();
|
||||
|
||||
//PrintGLError(glGetError());
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
Video Callbacks
|
||||
******************************************************************************/
|
||||
|
||||
static CInputs *videoInputs = NULL;
|
||||
|
||||
bool BeginFrameVideo()
|
||||
{
|
||||
******************************************************************************/
|
||||
|
||||
static CInputs *videoInputs = NULL;
|
||||
static uint32_t currentInputs = 0;
|
||||
|
||||
bool BeginFrameVideo()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
void EndFrameVideo()
|
||||
{
|
||||
// Show crosshairs for light gun games
|
||||
if (videoInputs)
|
||||
UpdateCrosshairs(videoInputs, s_runtime_config["Crosshairs"].ValueAs<unsigned>());
|
||||
|
||||
// Swap the buffers
|
||||
SDL_GL_SwapBuffers();
|
||||
{
|
||||
// Show crosshairs for light gun games
|
||||
if (videoInputs)
|
||||
UpdateCrosshairs(currentInputs, videoInputs, s_runtime_config["Crosshairs"].ValueAs<unsigned>());
|
||||
|
||||
// Swap the buffers
|
||||
SDL_GL_SwapBuffers();
|
||||
}
|
||||
|
||||
static void SuperSleep(UINT32 time)
|
||||
|
@ -816,12 +838,14 @@ int Supermodel(const Game &game, ROMSet *rom_set, IEmulator *Model3, CInputs *In
|
|||
if (OKAY != OpenAudio())
|
||||
return 1;
|
||||
|
||||
// Hide mouse if fullscreen, enable crosshairs for gun games
|
||||
Inputs->GetInputSystem()->SetMouseVisibility(!s_runtime_config["FullScreen"].ValueAs<bool>());
|
||||
gameHasLightguns = !!(game.inputs & (Game::INPUT_GUN1|Game::INPUT_GUN2));
|
||||
if (gameHasLightguns)
|
||||
videoInputs = Inputs;
|
||||
else
|
||||
// Hide mouse if fullscreen, enable crosshairs for gun games
|
||||
Inputs->GetInputSystem()->SetMouseVisibility(!s_runtime_config["FullScreen"].ValueAs<bool>());
|
||||
gameHasLightguns = !!(game.inputs & (Game::INPUT_GUN1|Game::INPUT_GUN2));
|
||||
gameHasLightguns |= game.name == "lostwsga";
|
||||
currentInputs = game.inputs;
|
||||
if (gameHasLightguns)
|
||||
videoInputs = Inputs;
|
||||
else
|
||||
videoInputs = NULL;
|
||||
|
||||
// Attach the inputs to the emulator
|
||||
|
|
Loading…
Reference in a new issue