2020-04-25 15:18:42 +00:00
|
|
|
#include "namco_guncon.h"
|
|
|
|
#include "common/assert.h"
|
2020-07-10 04:01:48 +00:00
|
|
|
#include "common/log.h"
|
2020-04-25 15:18:42 +00:00
|
|
|
#include "common/state_wrapper.h"
|
|
|
|
#include "gpu.h"
|
2020-04-26 07:37:10 +00:00
|
|
|
#include "host_display.h"
|
|
|
|
#include "host_interface.h"
|
2020-06-30 14:35:13 +00:00
|
|
|
#include "resources.h"
|
2020-04-25 15:18:42 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include <array>
|
2020-07-10 04:01:48 +00:00
|
|
|
Log_SetChannel(NamcoGunCon);
|
2020-04-25 15:18:42 +00:00
|
|
|
|
2020-07-31 07:09:18 +00:00
|
|
|
NamcoGunCon::NamcoGunCon() = default;
|
2020-04-25 15:18:42 +00:00
|
|
|
|
2020-06-30 14:35:13 +00:00
|
|
|
NamcoGunCon::~NamcoGunCon() = default;
|
2020-04-25 15:18:42 +00:00
|
|
|
|
|
|
|
ControllerType NamcoGunCon::GetType() const
|
|
|
|
{
|
|
|
|
return ControllerType::NamcoGunCon;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<s32> NamcoGunCon::GetAxisCodeByName(std::string_view axis_name) const
|
|
|
|
{
|
|
|
|
return StaticGetAxisCodeByName(axis_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<s32> NamcoGunCon::GetButtonCodeByName(std::string_view button_name) const
|
|
|
|
{
|
|
|
|
return StaticGetButtonCodeByName(button_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamcoGunCon::Reset()
|
|
|
|
{
|
|
|
|
m_transfer_state = TransferState::Idle;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NamcoGunCon::DoState(StateWrapper& sw)
|
|
|
|
{
|
|
|
|
if (!Controller::DoState(sw))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
sw.Do(&m_button_state);
|
|
|
|
sw.Do(&m_position_x);
|
|
|
|
sw.Do(&m_position_y);
|
|
|
|
sw.Do(&m_transfer_state);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamcoGunCon::SetAxisState(s32 axis_code, float value) {}
|
|
|
|
|
|
|
|
void NamcoGunCon::SetButtonState(Button button, bool pressed)
|
|
|
|
{
|
|
|
|
static constexpr std::array<u8, static_cast<size_t>(Button::Count)> indices = {{13, 3, 14}};
|
|
|
|
if (pressed)
|
|
|
|
m_button_state &= ~(u16(1) << indices[static_cast<u8>(button)]);
|
|
|
|
else
|
|
|
|
m_button_state |= u16(1) << indices[static_cast<u8>(button)];
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamcoGunCon::SetButtonState(s32 button_code, bool pressed)
|
|
|
|
{
|
|
|
|
if (button_code < 0 || button_code >= static_cast<s32>(Button::Count))
|
|
|
|
return;
|
|
|
|
|
|
|
|
SetButtonState(static_cast<Button>(button_code), pressed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamcoGunCon::ResetTransferState()
|
|
|
|
{
|
|
|
|
m_transfer_state = TransferState::Idle;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NamcoGunCon::Transfer(const u8 data_in, u8* data_out)
|
|
|
|
{
|
|
|
|
static constexpr u16 ID = 0x5A63;
|
|
|
|
|
|
|
|
switch (m_transfer_state)
|
|
|
|
{
|
|
|
|
case TransferState::Idle:
|
|
|
|
{
|
|
|
|
// ack when sent 0x01, send ID for 0x42
|
|
|
|
if (data_in == 0x42)
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(ID);
|
|
|
|
m_transfer_state = TransferState::IDMSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*data_out = 0xFF;
|
|
|
|
return (data_in == 0x01);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::IDMSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(ID >> 8);
|
|
|
|
m_transfer_state = TransferState::ButtonsLSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::ButtonsLSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_button_state);
|
|
|
|
m_transfer_state = TransferState::ButtonsMSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::ButtonsMSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_button_state >> 8);
|
|
|
|
m_transfer_state = TransferState::XLSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::XLSB:
|
|
|
|
{
|
|
|
|
UpdatePosition();
|
|
|
|
*data_out = Truncate8(m_position_x);
|
|
|
|
m_transfer_state = TransferState::XMSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::XMSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_position_x >> 8);
|
|
|
|
m_transfer_state = TransferState::YLSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::YLSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_position_y);
|
|
|
|
m_transfer_state = TransferState::YMSB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case TransferState::YMSB:
|
|
|
|
{
|
|
|
|
*data_out = Truncate8(m_position_y >> 8);
|
|
|
|
m_transfer_state = TransferState::Idle;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
UnreachableCode();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NamcoGunCon::UpdatePosition()
|
|
|
|
{
|
2020-04-26 07:37:10 +00:00
|
|
|
// get screen coordinates
|
2020-07-31 07:09:18 +00:00
|
|
|
const HostDisplay* display = g_host_interface->GetDisplay();
|
2020-04-26 07:37:10 +00:00
|
|
|
const s32 mouse_x = display->GetMousePositionX();
|
|
|
|
const s32 mouse_y = display->GetMousePositionY();
|
2020-04-25 15:18:42 +00:00
|
|
|
|
|
|
|
// are we within the active display area?
|
|
|
|
u32 tick, line;
|
2020-07-31 07:09:18 +00:00
|
|
|
if (mouse_x < 0 || mouse_y < 0 || !g_gpu->ConvertScreenCoordinatesToBeamTicksAndLines(mouse_x, mouse_y, &tick, &line))
|
2020-04-25 15:18:42 +00:00
|
|
|
{
|
|
|
|
Log_DebugPrintf("Lightgun out of range for window coordinates %d,%d", mouse_x, mouse_y);
|
|
|
|
m_position_x = 0x01;
|
|
|
|
m_position_y = 0x0A;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 8MHz units for X = 44100*768*11/7 = 53222400 / 8000000 = 6.6528
|
2020-07-31 07:09:18 +00:00
|
|
|
const double divider = static_cast<double>(g_gpu->GetCRTCFrequency()) / 8000000.0;
|
2020-07-01 16:51:22 +00:00
|
|
|
m_position_x = static_cast<u16>(static_cast<float>(tick) / static_cast<float>(divider));
|
2020-04-25 15:18:42 +00:00
|
|
|
m_position_y = static_cast<u16>(line);
|
2020-04-26 07:37:10 +00:00
|
|
|
Log_DebugPrintf("Lightgun window coordinates %d,%d -> tick %u line %u 8mhz ticks %u", mouse_x, mouse_y, tick, line,
|
|
|
|
m_position_x);
|
2020-04-25 15:18:42 +00:00
|
|
|
}
|
|
|
|
|
2020-07-31 07:09:18 +00:00
|
|
|
std::unique_ptr<NamcoGunCon> NamcoGunCon::Create()
|
2020-04-25 15:18:42 +00:00
|
|
|
{
|
2020-07-31 07:09:18 +00:00
|
|
|
return std::make_unique<NamcoGunCon>();
|
2020-04-25 15:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<s32> NamcoGunCon::StaticGetAxisCodeByName(std::string_view button_name)
|
|
|
|
{
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<s32> NamcoGunCon::StaticGetButtonCodeByName(std::string_view button_name)
|
|
|
|
{
|
|
|
|
#define BUTTON(name) \
|
|
|
|
if (button_name == #name) \
|
|
|
|
{ \
|
|
|
|
return static_cast<s32>(ZeroExtend32(static_cast<u8>(Button::name))); \
|
|
|
|
}
|
|
|
|
|
|
|
|
BUTTON(Trigger);
|
|
|
|
BUTTON(A);
|
|
|
|
BUTTON(B);
|
|
|
|
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
#undef BUTTON
|
|
|
|
}
|
|
|
|
|
|
|
|
Controller::AxisList NamcoGunCon::StaticGetAxisNames()
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Controller::ButtonList NamcoGunCon::StaticGetButtonNames()
|
|
|
|
{
|
2020-08-23 12:47:49 +00:00
|
|
|
return {{TRANSLATABLE("NamcoGunCon", "Trigger"), static_cast<s32>(Button::Trigger)},
|
|
|
|
{TRANSLATABLE("NamcoGunCon", "A"), static_cast<s32>(Button::A)},
|
|
|
|
{TRANSLATABLE("NamcoGunCon", "B"), static_cast<s32>(Button::B)}};
|
2020-04-25 15:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 NamcoGunCon::StaticGetVibrationMotorCount()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2020-06-30 14:35:13 +00:00
|
|
|
|
|
|
|
Controller::SettingList NamcoGunCon::StaticGetSettings()
|
|
|
|
{
|
|
|
|
static constexpr std::array<SettingInfo, 2> settings = {
|
2020-10-10 22:59:19 +00:00
|
|
|
{{SettingInfo::Type::Path, "CrosshairImagePath", TRANSLATABLE("NamcoGunCon", "Crosshair Image Path"),
|
|
|
|
TRANSLATABLE("NamcoGunCon", "Path to an image to use as a crosshair/cursor.")},
|
|
|
|
{SettingInfo::Type::Float, "CrosshairScale", TRANSLATABLE("NamcoGunCon", "Crosshair Image Scale"),
|
|
|
|
TRANSLATABLE("NamcoGunCon", "Scale of crosshair image on screen."), "1.0", "0.0001", "100.0"}}};
|
2020-06-30 14:35:13 +00:00
|
|
|
|
|
|
|
return SettingList(settings.begin(), settings.end());
|
|
|
|
}
|
|
|
|
|
2020-07-31 07:09:18 +00:00
|
|
|
void NamcoGunCon::LoadSettings(const char* section)
|
2020-06-30 14:35:13 +00:00
|
|
|
{
|
2020-07-31 07:09:18 +00:00
|
|
|
Controller::LoadSettings(section);
|
2020-06-30 14:35:13 +00:00
|
|
|
|
2020-07-31 07:09:18 +00:00
|
|
|
std::string path = g_host_interface->GetStringSettingValue(section, "CrosshairImagePath");
|
2020-06-30 14:35:13 +00:00
|
|
|
if (path != m_crosshair_image_path)
|
|
|
|
{
|
|
|
|
m_crosshair_image_path = std::move(path);
|
|
|
|
if (m_crosshair_image_path.empty() ||
|
|
|
|
!Common::LoadImageFromFile(&m_crosshair_image, m_crosshair_image_path.c_str()))
|
|
|
|
{
|
|
|
|
m_crosshair_image.Invalidate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_crosshair_image.IsValid())
|
|
|
|
{
|
|
|
|
m_crosshair_image.SetPixels(Resources::CROSSHAIR_IMAGE_WIDTH, Resources::CROSSHAIR_IMAGE_HEIGHT,
|
|
|
|
Resources::CROSSHAIR_IMAGE_DATA.data());
|
|
|
|
}
|
|
|
|
|
2020-07-31 07:09:18 +00:00
|
|
|
m_crosshair_image_scale = g_host_interface->GetFloatSettingValue(section, "CrosshairScale", 1.0f);
|
2020-06-30 14:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool NamcoGunCon::GetSoftwareCursor(const Common::RGBA8Image** image, float* image_scale)
|
|
|
|
{
|
|
|
|
if (!m_crosshair_image.IsValid())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*image = &m_crosshair_image;
|
|
|
|
*image_scale = m_crosshair_image_scale;
|
|
|
|
return true;
|
|
|
|
}
|