2017-10-10 03:07:29 -04:00
|
|
|
/*
|
2022-11-13 16:37:58 -05:00
|
|
|
* 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.
|
2017-10-10 03:07:29 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-10-10 03:07:29 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Define the various platform support functions.
|
2017-10-10 03:07:29 -04:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-10-10 03:07:29 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-10-10 03:07:29 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Copyright 2016-2019 Miran Grca.
|
|
|
|
|
* Copyright 2017-2019 Fred N. van Kempen.
|
|
|
|
|
* Copyright 2021 Laci bá'
|
2017-10-10 03:07:29 -04:00
|
|
|
*/
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
#ifndef EMU_PLAT_H
|
2022-09-18 17:15:38 -04:00
|
|
|
#define EMU_PLAT_H
|
2017-10-10 03:07:29 -04:00
|
|
|
|
2022-07-12 14:41:38 +06:00
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdio.h>
|
2021-12-01 01:00:41 +06:00
|
|
|
#include "86box/device.h"
|
|
|
|
|
#include "86box/machine.h"
|
2017-10-17 01:59:09 -04:00
|
|
|
#ifndef GLOBAL
|
2022-09-18 17:15:38 -04:00
|
|
|
# define GLOBAL extern
|
2017-10-17 01:59:09 -04:00
|
|
|
#endif
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
/* String ID numbers. */
|
2024-03-19 14:27:19 +05:00
|
|
|
enum {
|
|
|
|
|
STRING_MOUSE_CAPTURE, /* "Click to capture mouse" */
|
2025-05-07 19:03:10 +05:00
|
|
|
STRING_MOUSE_RELEASE, /* "Press %1 to release mouse" */
|
|
|
|
|
STRING_MOUSE_RELEASE_MMB, /* "Press %1 or middle button to release mouse" */
|
2024-03-19 14:27:19 +05:00
|
|
|
STRING_INVALID_CONFIG, /* "Invalid configuration" */
|
|
|
|
|
STRING_NO_ST506_ESDI_CDROM, /* "MFM/RLL or ESDI CD-ROM drives never existed" */
|
|
|
|
|
STRING_NET_ERROR, /* "Failed to initialize network driver" */
|
|
|
|
|
STRING_NET_ERROR_DESC, /* "The network configuration will be switched..." */
|
|
|
|
|
STRING_PCAP_ERROR_NO_DEVICES, /* "No PCap devices found" */
|
|
|
|
|
STRING_PCAP_ERROR_INVALID_DEVICE, /* "Invalid PCap device" */
|
|
|
|
|
STRING_PCAP_ERROR_DESC, /* "Make sure libpcap is installed..." */
|
|
|
|
|
STRING_GHOSTSCRIPT_ERROR_TITLE, /* "Unable to initialize Ghostscript" */
|
|
|
|
|
STRING_GHOSTSCRIPT_ERROR_DESC, /* "gsdll32.dll/gsdll64.dll/libgs is required..." */
|
|
|
|
|
STRING_HW_NOT_AVAILABLE_TITLE, /* "Hardware not available" */
|
|
|
|
|
STRING_HW_NOT_AVAILABLE_MACHINE, /* "Machine \"%hs\" is not available..." */
|
|
|
|
|
STRING_HW_NOT_AVAILABLE_VIDEO, /* "Video card \"%hs\" is not available..." */
|
|
|
|
|
STRING_HW_NOT_AVAILABLE_VIDEO2, /* "Video card #2 \"%hs\" is not available..." */
|
2025-01-27 01:20:37 +01:00
|
|
|
STRING_HW_NOT_AVAILABLE_DEVICE, /* "Device \"%hs\" is not available..." */
|
2024-06-21 15:36:28 +06:00
|
|
|
STRING_MONITOR_SLEEP, /* "Monitor in sleep mode" */
|
|
|
|
|
STRING_GHOSTPCL_ERROR_TITLE, /* "Unable to initialize GhostPCL" */
|
2025-02-17 04:49:43 +01:00
|
|
|
STRING_GHOSTPCL_ERROR_DESC, /* "gpcl6dll32.dll/gpcl6dll64.dll/libgpcl6 is required..." */
|
|
|
|
|
STRING_ESCP_ERROR_TITLE, /* "Unable to find Dot-Matrix fonts" */
|
|
|
|
|
STRING_ESCP_ERROR_DESC /* "TrueType fonts in the \"roms/printer/fonts\" directory..." */
|
2024-03-19 14:27:19 +05:00
|
|
|
};
|
2017-10-27 20:54:31 -04:00
|
|
|
|
2017-10-29 04:20:20 -05:00
|
|
|
/* The Win32 API uses _wcsicmp. */
|
|
|
|
|
#ifdef _WIN32
|
2022-09-18 17:15:38 -04:00
|
|
|
# define wcscasecmp _wcsicmp
|
|
|
|
|
# define strcasecmp _stricmp
|
2021-08-22 20:50:05 +06:00
|
|
|
#else
|
|
|
|
|
/* Declare these functions to avoid warnings. They will redirect to strcasecmp and strncasecmp respectively. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern int stricmp(const char *s1, const char *s2);
|
|
|
|
|
extern int strnicmp(const char *s1, const char *s2, size_t n);
|
2017-10-29 04:20:20 -05:00
|
|
|
#endif
|
2017-10-27 20:54:31 -04:00
|
|
|
|
2022-03-11 12:03:54 +06:00
|
|
|
#if (defined(__HAIKU__) || defined(__unix__) || defined(__APPLE__)) && !defined(__linux__)
|
2017-10-27 04:54:45 -04:00
|
|
|
/* FreeBSD has largefile by default. */
|
2022-09-18 17:15:38 -04:00
|
|
|
# define fopen64 fopen
|
|
|
|
|
# define fseeko64 fseeko
|
|
|
|
|
# define ftello64 ftello
|
|
|
|
|
# define off64_t off_t
|
2020-04-04 12:45:47 +02:00
|
|
|
#elif defined(_MSC_VER)
|
2023-08-14 21:23:54 -04:00
|
|
|
// # define fopen64 fopen
|
2022-09-18 17:15:38 -04:00
|
|
|
# define fseeko64 _fseeki64
|
|
|
|
|
# define ftello64 _ftelli64
|
|
|
|
|
# define off64_t off_t
|
2017-10-27 04:54:45 -04:00
|
|
|
#endif
|
|
|
|
|
|
2020-04-04 12:45:47 +02:00
|
|
|
#ifdef _MSC_VER
|
2022-09-18 17:15:38 -04:00
|
|
|
# define UNUSED(arg) arg
|
2020-04-04 12:45:47 +02:00
|
|
|
#else
|
2022-09-18 17:15:38 -04:00
|
|
|
/* A hack (GCC-specific?) to allow us to ignore unused parameters. */
|
|
|
|
|
# define UNUSED(arg) __attribute__((unused)) arg
|
2020-04-04 12:45:47 +02:00
|
|
|
#endif
|
2017-10-17 01:59:09 -04:00
|
|
|
|
2017-10-29 04:20:20 -05:00
|
|
|
/* Return the size (in wchar's) of a wchar_t array. */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define sizeof_w(x) (sizeof((x)) / sizeof(wchar_t))
|
2017-10-10 03:07:29 -04:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2022-09-18 17:15:38 -04:00
|
|
|
# include <atomic>
|
|
|
|
|
# define atomic_flag_t std::atomic_flag
|
|
|
|
|
# define atomic_bool_t std::atomic_bool
|
2017-10-10 03:07:29 -04:00
|
|
|
extern "C" {
|
2021-12-17 22:15:21 +02:00
|
|
|
#else
|
2022-09-18 17:15:38 -04:00
|
|
|
# include <stdatomic.h>
|
|
|
|
|
# define atomic_flag_t atomic_flag
|
|
|
|
|
# define atomic_bool_t atomic_bool
|
2017-10-10 03:07:29 -04:00
|
|
|
#endif
|
|
|
|
|
|
2022-10-18 20:44:09 +03:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
|
# define ssize_t intptr_t
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-08-15 19:36:39 -04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
# define fallthrough do {} while (0) /* fallthrough */
|
|
|
|
|
#else
|
|
|
|
|
# if __has_attribute(fallthrough)
|
|
|
|
|
# define fallthrough __attribute__((fallthrough))
|
|
|
|
|
# else
|
|
|
|
|
# if __has_attribute(__fallthrough__)
|
|
|
|
|
# define fallthrough __attribute__((__fallthrough__))
|
|
|
|
|
# endif
|
|
|
|
|
# define fallthrough do {} while (0) /* fallthrough */
|
|
|
|
|
# endif
|
2017-10-10 03:07:29 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Global variables residing in the platform module. */
|
2023-06-26 12:47:04 -04:00
|
|
|
extern int dopause; /* system is paused */
|
|
|
|
|
extern int mouse_capture; /* mouse is captured in app */
|
|
|
|
|
extern volatile int is_quit; /* system exit requested */
|
2021-02-10 20:22:51 +00:00
|
|
|
|
|
|
|
|
#ifdef MTR_ENABLED
|
|
|
|
|
extern int tracing_on;
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern uint64_t timer_freq;
|
|
|
|
|
extern int infocus;
|
|
|
|
|
extern char emu_version[200]; /* version ID string */
|
|
|
|
|
extern int rctrl_is_lalt;
|
|
|
|
|
extern int update_icons;
|
2017-10-10 03:07:29 -04:00
|
|
|
|
2023-06-26 12:47:04 -04:00
|
|
|
extern int kbd_req_capture;
|
|
|
|
|
extern int hide_status_bar;
|
|
|
|
|
extern int hide_tool_bar;
|
2021-07-19 02:27:22 +02:00
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
/* System-related functions. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern FILE *plat_fopen(const char *path, const char *mode);
|
|
|
|
|
extern FILE *plat_fopen64(const char *path, const char *mode);
|
|
|
|
|
extern void plat_remove(char *path);
|
|
|
|
|
extern int plat_getcwd(char *bufp, int max);
|
|
|
|
|
extern int plat_chdir(char *path);
|
|
|
|
|
extern void plat_tempfile(char *bufp, char *prefix, char *suffix);
|
|
|
|
|
extern void plat_get_exe_name(char *s, int size);
|
2024-05-17 15:09:04 -04:00
|
|
|
extern void plat_get_global_config_dir(char *outbuf, uint8_t len);
|
|
|
|
|
extern void plat_get_global_data_dir(char *outbuf, uint8_t len);
|
|
|
|
|
extern void plat_get_temp_dir(char *outbuf, uint8_t len);
|
2022-11-17 22:44:06 +01:00
|
|
|
extern void plat_init_rom_paths(void);
|
2022-09-18 17:15:38 -04:00
|
|
|
extern int plat_dir_check(char *path);
|
|
|
|
|
extern int plat_dir_create(char *path);
|
|
|
|
|
extern void *plat_mmap(size_t size, uint8_t executable);
|
|
|
|
|
extern void plat_munmap(void *ptr, size_t size);
|
|
|
|
|
extern uint64_t plat_timer_read(void);
|
|
|
|
|
extern uint32_t plat_get_ticks(void);
|
|
|
|
|
extern void plat_delay_ms(uint32_t count);
|
|
|
|
|
extern void plat_pause(int p);
|
|
|
|
|
extern void plat_mouse_capture(int on);
|
2024-07-21 12:49:06 +05:30
|
|
|
extern int plat_vidapi(const char *name);
|
2022-09-18 17:15:38 -04:00
|
|
|
extern char *plat_vidapi_name(int api);
|
2024-03-16 19:53:11 +05:00
|
|
|
extern void plat_resize(int x, int y, int monitor_index);
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void plat_resize_request(int x, int y, int monitor_index);
|
2025-04-17 21:52:32 +05:00
|
|
|
extern int plat_language_code(char *langcode);
|
|
|
|
|
extern void plat_language_code_r(int id, char *outbuf, int len);
|
2023-08-09 17:12:27 -04:00
|
|
|
extern void plat_get_cpu_string(char *outbuf, uint8_t len);
|
2024-01-09 20:13:16 -03:00
|
|
|
extern void plat_set_thread_name(void *thread, const char *name);
|
2025-03-22 00:49:20 +01:00
|
|
|
extern void plat_break(void);
|
2017-10-10 03:07:29 -04:00
|
|
|
|
|
|
|
|
/* Resource management. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern wchar_t *plat_get_string(int id);
|
2017-10-10 03:07:29 -04:00
|
|
|
|
2017-11-18 21:28:26 -05:00
|
|
|
/* Emulator start/stop support functions. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void do_start(void);
|
|
|
|
|
extern void do_stop(void);
|
2017-11-18 21:28:26 -05:00
|
|
|
|
2020-11-16 00:01:21 +01:00
|
|
|
/* Power off. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void plat_power_off(void);
|
2020-11-16 00:01:21 +01:00
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
/* Platform-specific device support. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void cassette_mount(char *fn, uint8_t wp);
|
|
|
|
|
extern void cassette_eject(void);
|
|
|
|
|
extern void cartridge_mount(uint8_t id, char *fn, uint8_t wp);
|
|
|
|
|
extern void cartridge_eject(uint8_t id);
|
|
|
|
|
extern void floppy_mount(uint8_t id, char *fn, uint8_t wp);
|
|
|
|
|
extern void floppy_eject(uint8_t id);
|
|
|
|
|
extern void cdrom_mount(uint8_t id, char *fn);
|
|
|
|
|
extern void plat_cdrom_ui_update(uint8_t id, uint8_t reload);
|
|
|
|
|
extern void zip_eject(uint8_t id);
|
|
|
|
|
extern void zip_mount(uint8_t id, char *fn, uint8_t wp);
|
|
|
|
|
extern void zip_reload(uint8_t id);
|
|
|
|
|
extern void mo_eject(uint8_t id);
|
|
|
|
|
extern void mo_mount(uint8_t id, char *fn, uint8_t wp);
|
|
|
|
|
extern void mo_reload(uint8_t id);
|
2017-10-11 05:40:44 -04:00
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
/* Other stuff. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void startblit(void);
|
|
|
|
|
extern void endblit(void);
|
2017-10-11 05:40:44 -04:00
|
|
|
|
2021-03-14 20:35:01 +01:00
|
|
|
/* Conversion between UTF-8 and UTF-16. */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern size_t mbstoc16s(uint16_t dst[], const char src[], int len);
|
|
|
|
|
extern size_t c16stombs(char dst[], const uint16_t src[], int len);
|
2021-03-14 20:35:01 +01:00
|
|
|
|
2017-10-10 03:07:29 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
#endif /*EMU_PLAT_H*/
|