Files
86Box/src/game/joystick_tm_fcs.c

186 lines
5.3 KiB
C
Raw Normal View History

/*
* 86Box A hypervisor and IBM PC system emulator that specializes in
* running old operating systems and software designed for IBM
* PC systems and compatibles from 1981 through fairly recent
* system designs based on the PCI bus.
*
* This file is part of the 86Box distribution.
*
* Implementation of Thrust Master Flight Control System.
*
2020-03-25 00:46:02 +02:00
*
*
* Authors: Miran Grca, <mgrca8@gmail.com>
2023-01-06 15:36:29 -05:00
* Sarah Walker, <https://pcem-emulator.co.uk/>
*
* Copyright 2016-2018 Miran Grca.
* Copyright 2008-2018 Sarah Walker.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the:
*
* Free Software Foundation, Inc.
* 59 Temple Place - Suite 330
* Boston, MA 02111-1307
* USA.
*/
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <wchar.h>
#include <86box/86box.h>
#include <86box/device.h>
#include <86box/timer.h>
#include <86box/gameport.h>
2023-06-26 12:47:04 -04:00
#include <86box/plat_unused.h>
2022-09-18 17:14:24 -04:00
static void *
tm_fcs_init(void)
{
2022-09-18 17:14:24 -04:00
return NULL;
}
2022-09-18 17:14:24 -04:00
static void
2023-06-26 12:47:04 -04:00
tm_fcs_close(UNUSED(void *priv))
{
2023-06-26 12:47:04 -04:00
//
}
2022-09-18 17:14:24 -04:00
static uint8_t
2023-06-26 12:47:04 -04:00
tm_fcs_read(UNUSED(void *priv))
{
2022-09-18 17:14:24 -04:00
uint8_t ret = 0xf0;
2022-02-20 02:26:27 -05:00
if (JOYSTICK_PRESENT(0, 0)) {
if (joystick_state[0][0].button[0])
2022-09-18 17:14:24 -04:00
ret &= ~0x10;
if (joystick_state[0][0].button[1])
2022-09-18 17:14:24 -04:00
ret &= ~0x20;
if (joystick_state[0][0].button[2])
2022-09-18 17:14:24 -04:00
ret &= ~0x40;
if (joystick_state[0][0].button[3])
2022-09-18 17:14:24 -04:00
ret &= ~0x80;
}
2022-09-18 17:14:24 -04:00
return ret;
}
2022-09-18 17:14:24 -04:00
static void
2023-06-26 12:47:04 -04:00
tm_fcs_write(UNUSED(void *priv))
{
2023-06-26 12:47:04 -04:00
//
}
2022-09-18 17:14:24 -04:00
static int
2023-06-26 12:47:04 -04:00
tm_fcs_read_axis(UNUSED(void *priv), int axis)
{
if (!JOYSTICK_PRESENT(0, 0))
2022-09-18 17:14:24 -04:00
return AXIS_NOT_PRESENT;
2022-09-18 17:14:24 -04:00
switch (axis) {
case 0:
return joystick_state[0][0].axis[0];
2022-09-18 17:14:24 -04:00
case 1:
return joystick_state[0][0].axis[1];
2022-09-18 17:14:24 -04:00
case 2:
return 0;
case 3:
if (joystick_state[0][0].pov[0] == -1)
2022-09-18 17:14:24 -04:00
return 32767;
if (joystick_state[0][0].pov[0] > 315 || joystick_state[0][0].pov[0] < 45)
2022-09-18 17:14:24 -04:00
return -32768;
if (joystick_state[0][0].pov[0] >= 45 && joystick_state[0][0].pov[0] < 135)
2022-09-18 17:14:24 -04:00
return -16384;
if (joystick_state[0][0].pov[0] >= 135 && joystick_state[0][0].pov[0] < 225)
return 0;
if (joystick_state[0][0].pov[0] >= 225 && joystick_state[0][0].pov[0] < 315)
2022-09-18 17:14:24 -04:00
return 16384;
return 0;
default:
return 0;
}
}
static int
tm_fcs_rcs_read_axis(UNUSED(void *priv), int axis)
{
if (!JOYSTICK_PRESENT(0, 0))
return AXIS_NOT_PRESENT;
switch (axis) {
case 0:
return joystick_state[0][0].axis[0];
case 1:
return joystick_state[0][0].axis[1];
case 2:
return joystick_state[0][0].axis[2];
case 3:
if (joystick_state[0][0].pov[0] == -1)
return 32767;
if (joystick_state[0][0].pov[0] > 315 || joystick_state[0][0].pov[0] < 45)
return -32768;
if (joystick_state[0][0].pov[0] >= 45 && joystick_state[0][0].pov[0] < 135)
return -16384;
if (joystick_state[0][0].pov[0] >= 135 && joystick_state[0][0].pov[0] < 225)
return 0;
if (joystick_state[0][0].pov[0] >= 225 && joystick_state[0][0].pov[0] < 315)
return 16384;
return 0;
default:
return 0;
}
}
2022-09-18 17:14:24 -04:00
static void
2023-06-26 12:47:04 -04:00
tm_fcs_a0_over(UNUSED(void *priv))
{
2023-06-26 12:47:04 -04:00
//
}
2022-09-18 17:14:24 -04:00
const joystick_if_t joystick_tm_fcs = {
.name = "Thrustmaster Flight Control System",
2022-03-13 09:40:04 -04:00
.internal_name = "thrustmaster_fcs",
2022-09-18 17:14:24 -04:00
.init = tm_fcs_init,
.close = tm_fcs_close,
.read = tm_fcs_read,
.write = tm_fcs_write,
.read_axis = tm_fcs_read_axis,
.a0_over = tm_fcs_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 1,
2022-03-13 09:40:04 -04:00
.max_joysticks = 1,
2022-11-19 08:49:04 -05:00
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { "POV" }
};
const joystick_if_t joystick_tm_fcs_rcs = {
.name = "Thrustmaster FCS + Rudder Control System",
.internal_name = "thrustmaster_fcs_rcs",
.init = tm_fcs_init,
.close = tm_fcs_close,
.read = tm_fcs_read,
.write = tm_fcs_write,
.read_axis = tm_fcs_rcs_read_axis,
.a0_over = tm_fcs_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 1,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Rudder" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { "POV" }
};