forked from Dniel97/segatools
137 lines
2.9 KiB
C
137 lines
2.9 KiB
C
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "amex/jvs.h"
|
|
|
|
#include "board/io3.h"
|
|
|
|
#include "chunihook/chuni-dll.h"
|
|
|
|
#include "jvs/jvs-bus.h"
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
struct chunithm_jvs_ir_mask {
|
|
uint16_t p1;
|
|
uint16_t p2;
|
|
};
|
|
|
|
static void chunithm_jvs_read_switches(void *ctx, struct io3_switch_state *out);
|
|
static void chunithm_jvs_read_coin_counter(
|
|
void *ctx,
|
|
uint8_t slot_no,
|
|
uint16_t *out);
|
|
|
|
static const struct io3_ops chunithm_jvs_io3_ops = {
|
|
.read_switches = chunithm_jvs_read_switches,
|
|
.read_coin_counter = chunithm_jvs_read_coin_counter,
|
|
};
|
|
|
|
// Incorrect IR beam mappings retained for backward compatibility
|
|
static const struct chunithm_jvs_ir_mask chunithm_jvs_ir_masks_v1[] = {
|
|
{ 0x0000, 0x0020 },
|
|
{ 0x0020, 0x0000 },
|
|
{ 0x0000, 0x0010 },
|
|
{ 0x0010, 0x0000 },
|
|
{ 0x0000, 0x0008 },
|
|
{ 0x0008, 0x0000 },
|
|
};
|
|
|
|
static const struct chunithm_jvs_ir_mask chunithm_jvs_ir_masks[] = {
|
|
{ 0x0020, 0x0000 },
|
|
{ 0x0000, 0x0020 },
|
|
{ 0x0010, 0x0000 },
|
|
{ 0x0000, 0x0010 },
|
|
{ 0x0008, 0x0000 },
|
|
{ 0x0000, 0x0008 },
|
|
};
|
|
|
|
static struct io3 chunithm_jvs_io3;
|
|
|
|
HRESULT chunithm_jvs_init(struct jvs_node **out)
|
|
{
|
|
HRESULT hr;
|
|
|
|
assert(out != NULL);
|
|
assert(chuni_dll.jvs_init != NULL);
|
|
|
|
dprintf("JVS I/O: Starting IO backend\n");
|
|
hr = chuni_dll.jvs_init();
|
|
|
|
if (FAILED(hr)) {
|
|
dprintf("JVS I/O: Backend error, I/O disconnected: %x\n", (int) hr);
|
|
|
|
return hr;
|
|
}
|
|
|
|
io3_init(&chunithm_jvs_io3, NULL, &chunithm_jvs_io3_ops, NULL);
|
|
*out = io3_to_jvs_node(&chunithm_jvs_io3);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static void chunithm_jvs_read_switches(void *ctx, struct io3_switch_state *out)
|
|
{
|
|
const struct chunithm_jvs_ir_mask *masks;
|
|
uint8_t opbtn;
|
|
uint8_t beams;
|
|
size_t i;
|
|
|
|
assert(out != NULL);
|
|
assert(chuni_dll.jvs_poll != NULL);
|
|
|
|
if (chuni_dll.api_version >= 0x0101) {
|
|
// Use correct mapping
|
|
masks = chunithm_jvs_ir_masks;
|
|
} else {
|
|
// Use backwards-compatible incorrect mapping
|
|
masks = chunithm_jvs_ir_masks_v1;
|
|
}
|
|
|
|
opbtn = 0;
|
|
beams = 0;
|
|
|
|
chuni_dll.jvs_poll(&opbtn, &beams);
|
|
|
|
out->system = 0x00;
|
|
out->p1 = 0x0000;
|
|
out->p2 = 0x0000;
|
|
|
|
if (opbtn & 0x01) {
|
|
out->system = 0x80;
|
|
} else {
|
|
out->system = 0x00;
|
|
}
|
|
|
|
if (opbtn & 0x02) {
|
|
out->p1 |= 0x4000;
|
|
}
|
|
|
|
for (i = 0 ; i < 6 ; i++) {
|
|
/* Beam "press" is active-low hence the ~ */
|
|
if (~beams & (1 << i)) {
|
|
out->p1 |= masks[i].p1;
|
|
out->p2 |= masks[i].p2;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void chunithm_jvs_read_coin_counter(
|
|
void *ctx,
|
|
uint8_t slot_no,
|
|
uint16_t *out)
|
|
{
|
|
assert(out != NULL);
|
|
assert(chuni_dll.jvs_read_coin_counter != NULL);
|
|
|
|
if (slot_no > 0) {
|
|
return;
|
|
}
|
|
|
|
chuni_dll.jvs_read_coin_counter(out);
|
|
}
|