frontend: update libpicofe, fix missed callbacks
[pcsx_rearmed.git] / libpcsxcore / psxcommon.h
CommitLineData
ef79bbde
P
1/***************************************************************************
2 * Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA. *
18 ***************************************************************************/
19
20/*
21* This file contains common definitions and includes for all parts of the
22* emulator core.
23*/
24
25#ifndef __PSXCOMMON_H__
26#define __PSXCOMMON_H__
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32#include "config.h"
33
3cf51e08 34// XXX: don't care but maybe fix it someday
35#if defined(__GNUC__) && __GNUC__ >= 8
36#pragma GCC diagnostic ignored "-Wformat-truncation"
37#pragma GCC diagnostic ignored "-Wformat-overflow"
38#pragma GCC diagnostic ignored "-Wstringop-truncation"
39#endif
33788798 40// devkitpro has uint32_t as long, unfortunately
41#ifdef _3DS
42#pragma GCC diagnostic ignored "-Wformat"
43#endif
3cf51e08 44
ef79bbde
P
45// System includes
46#include <stdio.h>
47#include <string.h>
48#include <stdarg.h>
49#include <stdint.h>
50#include <stdlib.h>
51#include <math.h>
52#include <time.h>
53#include <ctype.h>
7a8d521f 54#ifndef __SWITCH__
ef79bbde 55#include <sys/types.h>
7a8d521f 56#endif
ef79bbde 57#include <assert.h>
ef79bbde
P
58
59// Define types
60typedef int8_t s8;
61typedef int16_t s16;
62typedef int32_t s32;
63typedef int64_t s64;
64typedef intptr_t sptr;
65
66typedef uint8_t u8;
67typedef uint16_t u16;
68typedef uint32_t u32;
69typedef uint64_t u64;
70typedef uintptr_t uptr;
71
72typedef uint8_t boolean;
73
74#ifndef TRUE
75#define TRUE 1
76#endif
77
78#ifndef FALSE
79#define FALSE 0
80#endif
81
82// Local includes
83#include "system.h"
ef79bbde 84
89f33b73 85#ifndef _WIN32
ef79bbde
P
86#define strnicmp strncasecmp
87#endif
88#define __inline inline
89
90// Enables NLS/internationalization if active
91#ifdef ENABLE_NLS
92
93#include <libintl.h>
94
95#undef _
96#define _(String) gettext(String)
97#ifdef gettext_noop
98# define N_(String) gettext_noop (String)
99#else
100# define N_(String) (String)
101#endif
102
103#else
104
105#define _(msgid) msgid
106#define N_(msgid) msgid
107
108#endif
109
110extern FILE *emuLog;
111extern int Log;
112
113void __Log(char *fmt, ...);
114
397c3db3 115// lots of timing depends on this and makes or breaks compatibility,
116// don't change unless you're going to retest hundreds of games
d5aeda23 117#define CYCLE_MULT_DEFAULT 175
118
ef79bbde
P
119typedef struct {
120 char Gpu[MAXPATHLEN];
121 char Spu[MAXPATHLEN];
d5aeda23 122 char Sio1[MAXPATHLEN];
ef79bbde
P
123 char Mcd1[MAXPATHLEN];
124 char Mcd2[MAXPATHLEN];
125 char Bios[MAXPATHLEN];
126 char BiosDir[MAXPATHLEN];
127 char PluginsDir[MAXPATHLEN];
128 char PatchesDir[MAXPATHLEN];
129 boolean Xa;
ef79bbde
P
130 boolean Mdec;
131 boolean PsxAuto;
132 boolean Cdda;
0e178648 133 boolean CHD_Precache; /* loads disk image into memory, works with CHD only. */
ef79bbde 134 boolean HLE;
7a8d521f 135 boolean SlowBoot;
ef79bbde
P
136 boolean Debug;
137 boolean PsxOut;
943a507a 138 boolean icache_emulation;
32631e6a 139 boolean DisableStalls;
bc7c5acb 140 boolean PreciseExceptions;
0aa7361c 141 boolean TurboCD;
d5aeda23 142 int cycle_multiplier; // 100 for 1.0
143 int cycle_multiplier_override;
78c8d214 144 int gpu_timing_override;
4c8f1c25 145 s8 GpuListWalking;
146 s8 FractionalFramerate; // ~49.75 and ~59.81 instead of 50 and 60
ef79bbde
P
147 u8 Cpu; // CPU_DYNAREC or CPU_INTERPRETER
148 u8 PsxType; // PSX_TYPE_NTSC or PSX_TYPE_PAL
688bdb95 149 struct {
150 boolean cdr_read_timing;
8c84ba5f 151 boolean gpu_slow_list_walking;
9ed80467 152 boolean gpu_centering;
e5241564 153 boolean dualshock_init_analog;
4c8f1c25 154 boolean fractional_Framerate;
6baeda45 155 boolean f1;
688bdb95 156 } hacks;
ef79bbde
P
157} PcsxConfig;
158
159extern PcsxConfig Config;
ef79bbde 160
496d88d4 161struct PcsxSaveFuncs {
162 void *(*open)(const char *name, const char *mode);
163 int (*read)(void *file, void *buf, u32 len);
164 int (*write)(void *file, const void *buf, u32 len);
165 long (*seek)(void *file, long offs, int whence);
166 void (*close)(void *file);
167};
168extern struct PcsxSaveFuncs SaveFuncs;
169
ef79bbde 170#define gzfreeze(ptr, size) { \
496d88d4 171 if (Mode == 1) SaveFuncs.write(f, ptr, size); \
172 if (Mode == 0) SaveFuncs.read(f, ptr, size); \
ef79bbde
P
173}
174
ef79bbde
P
175#define PSXCLK 33868800 /* 33.8688 MHz */
176
177enum {
178 PSX_TYPE_NTSC = 0,
179 PSX_TYPE_PAL
180}; // PSX Types
181
182enum {
183 CPU_DYNAREC = 0,
184 CPU_INTERPRETER
185}; // CPU Types
186
187int EmuInit();
188void EmuReset();
189void EmuShutdown();
190void EmuUpdate();
191
192#ifdef __cplusplus
193}
194#endif
195#endif