mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 04:48:42 +00:00
82 lines
1.9 KiB
C++
82 lines
1.9 KiB
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseControlDevice.h"
|
|
#include "KeyManager.h"
|
|
#include "IKeyManager.h"
|
|
#include "PPU.h"
|
|
|
|
class Zapper : public BaseControlDevice
|
|
{
|
|
protected:
|
|
bool HasCoordinates() override { return true; }
|
|
|
|
string GetKeyNames() override
|
|
{
|
|
return "F";
|
|
}
|
|
|
|
enum Buttons { Fire };
|
|
|
|
void InternalSetStateFromInput() override
|
|
{
|
|
if(EmulationSettings::InputEnabled()) {
|
|
SetPressedState(Buttons::Fire, KeyManager::IsMouseButtonPressed(MouseButton::LeftButton));
|
|
}
|
|
|
|
MousePosition pos = KeyManager::GetMousePosition();
|
|
if(KeyManager::IsMouseButtonPressed(MouseButton::RightButton)) {
|
|
pos.X = -1;
|
|
pos.Y = -1;
|
|
}
|
|
SetCoordinates(pos);
|
|
}
|
|
|
|
bool IsLightFound()
|
|
{
|
|
return StaticIsLightFound(GetCoordinates());
|
|
}
|
|
|
|
public:
|
|
Zapper(uint8_t port) : BaseControlDevice(port)
|
|
{
|
|
}
|
|
|
|
uint8_t ReadRAM(uint16_t addr) override
|
|
{
|
|
uint8_t output = 0;
|
|
if(IsCurrentPort(addr)) {
|
|
output = (IsLightFound() ? 0 : 0x08) | (IsPressed(Zapper::Buttons::Fire) ? 0x10 : 0x00);
|
|
}
|
|
return output;
|
|
}
|
|
|
|
void WriteRAM(uint16_t addr, uint8_t value) override
|
|
{
|
|
}
|
|
|
|
static bool StaticIsLightFound(MousePosition pos)
|
|
{
|
|
int32_t scanline = PPU::GetCurrentScanline();
|
|
int32_t cycle = PPU::GetCurrentCycle();
|
|
int radius = (int)EmulationSettings::GetZapperDetectionRadius();
|
|
|
|
if(pos.X >= 0 && pos.Y >= 0) {
|
|
for(int yOffset = -radius; yOffset <= radius; yOffset++) {
|
|
int yPos = pos.Y + yOffset;
|
|
if(yPos >= 0 && yPos < PPU::ScreenHeight) {
|
|
for(int xOffset = -radius; xOffset <= radius; xOffset++) {
|
|
int xPos = pos.X + xOffset;
|
|
if(xPos >= 0 && xPos < PPU::ScreenWidth) {
|
|
if(scanline >= yPos && (scanline - yPos <= 20) && (scanline != yPos || cycle > xPos) && PPU::GetPixelBrightness(xPos, yPos) >= 85) {
|
|
//Light cannot be detected if the Y/X position is further ahead than the PPU, or if the PPU drew a dark color
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}; |