Mesen2/Core/NES/Input/ArkanoidController.h

87 lines
No EOL
1.9 KiB
C++

#pragma once
#include "pch.h"
#include "Shared/BaseControlDevice.h"
#include "Shared/KeyManager.h"
#include "Shared/Emulator.h"
#include "Utilities/Serializer.h"
class ArkanoidController : public BaseControlDevice
{
private:
uint32_t _currentValue = (0xF4 - 0x54) / 2;
uint32_t _stateBuffer = 0;
enum Buttons { Fire };
protected:
bool HasCoordinates() override { return true; }
string GetKeyNames() override
{
return "F";
}
void InternalSetStateFromInput() override
{
for(KeyMapping& keyMapping : _keyMappings) {
SetPressedState(Buttons::Fire, KeyManager::IsKeyPressed(keyMapping.CustomKeys[0]));
}
SetMovement(KeyManager::GetMouseMovement(_emu, _emu->GetSettings()->GetInputConfig().MouseSensitivity));
}
void Serialize(Serializer& s) override
{
BaseControlDevice::Serialize(s);
SV(_stateBuffer); SV(_currentValue);
}
void RefreshStateBuffer() override
{
MouseMovement mov = GetMovement();
int32_t newValue = (int32_t)_currentValue + mov.dx;
if(newValue < 0x54) {
newValue = 0x54;
} else if(newValue > 0xF4) {
newValue = 0xF4;
}
_currentValue = (uint32_t)newValue;
_stateBuffer = (uint32_t)newValue;
}
public:
ArkanoidController(Emulator* emu, ControllerType type, uint8_t port, KeyMappingSet keyMappings) : BaseControlDevice(emu, type, port, keyMappings)
{
}
uint8_t ReadRam(uint16_t addr) override
{
uint8_t output = 0;
if(IsExpansionDevice()) {
if(addr == 0x4016) {
//Fire button is on port 1
if(IsPressed(ArkanoidController::Buttons::Fire)) {
output |= 0x02;
}
} else if(addr == 0x4017) {
//Serial data is on port 2
output |= ((~_stateBuffer) >> 6) & 0x02;
_stateBuffer <<= 1;
}
} else if(IsCurrentPort(addr)) {
output = ((~_stateBuffer) >> 3) & 0x10;
_stateBuffer <<= 1;
if(IsPressed(ArkanoidController::Buttons::Fire)) {
output |= 0x08;
}
}
return output;
}
void WriteRam(uint16_t addr, uint8_t value) override
{
StrobeProcessWrite(value);
}
};