Merge Icache emulation from PCSX Redux + Senquack changes from PCSX4ALL
[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
34// System includes
35#include <stdio.h>
36#include <string.h>
37#include <stdarg.h>
38#include <stdint.h>
39#include <stdlib.h>
40#include <math.h>
41#include <time.h>
42#include <ctype.h>
12367ad0 43#ifndef __SWITCH__
ef79bbde 44#include <sys/types.h>
12367ad0 45#endif
ef79bbde 46#include <assert.h>
ef79bbde
P
47
48// Define types
49typedef int8_t s8;
50typedef int16_t s16;
51typedef int32_t s32;
52typedef int64_t s64;
53typedef intptr_t sptr;
54
55typedef uint8_t u8;
56typedef uint16_t u16;
57typedef uint32_t u32;
58typedef uint64_t u64;
59typedef uintptr_t uptr;
60
61typedef uint8_t boolean;
62
63#ifndef TRUE
64#define TRUE 1
65#endif
66
67#ifndef FALSE
68#define FALSE 0
69#endif
70
71// Local includes
72#include "system.h"
ef79bbde 73
89f33b73 74#ifndef _WIN32
ef79bbde
P
75#define strnicmp strncasecmp
76#endif
77#define __inline inline
78
79// Enables NLS/internationalization if active
80#ifdef ENABLE_NLS
81
82#include <libintl.h>
83
84#undef _
85#define _(String) gettext(String)
86#ifdef gettext_noop
87# define N_(String) gettext_noop (String)
88#else
89# define N_(String) (String)
90#endif
91
92#else
93
94#define _(msgid) msgid
95#define N_(msgid) msgid
96
97#endif
98
99extern FILE *emuLog;
100extern int Log;
101
102void __Log(char *fmt, ...);
103
104typedef struct {
105 char Gpu[MAXPATHLEN];
106 char Spu[MAXPATHLEN];
107 char Cdr[MAXPATHLEN];
108 char Pad1[MAXPATHLEN];
109 char Pad2[MAXPATHLEN];
110 char Net[MAXPATHLEN];
111 char Sio1[MAXPATHLEN];
112 char Mcd1[MAXPATHLEN];
113 char Mcd2[MAXPATHLEN];
114 char Bios[MAXPATHLEN];
115 char BiosDir[MAXPATHLEN];
116 char PluginsDir[MAXPATHLEN];
117 char PatchesDir[MAXPATHLEN];
118 boolean Xa;
119 boolean Sio;
120 boolean Mdec;
121 boolean PsxAuto;
122 boolean Cdda;
679b71e2 123 boolean AsyncCD;
1d2757f4 124 boolean CHD_Precache; /* loads disk image into memory, works with CHD only. */
ef79bbde 125 boolean HLE;
f422f444 126 boolean SlowBoot;
ef79bbde
P
127 boolean Debug;
128 boolean PsxOut;
129 boolean SpuIrq;
130 boolean RCntFix;
131 boolean UseNet;
132 boolean VSyncWA;
7a811716 133 boolean icache_emulation;
ef79bbde
P
134 u8 Cpu; // CPU_DYNAREC or CPU_INTERPRETER
135 u8 PsxType; // PSX_TYPE_NTSC or PSX_TYPE_PAL
136#ifdef _WIN32
137 char Lang[256];
138#endif
139} PcsxConfig;
140
141extern PcsxConfig Config;
142extern boolean NetOpened;
143
496d88d4 144struct PcsxSaveFuncs {
145 void *(*open)(const char *name, const char *mode);
146 int (*read)(void *file, void *buf, u32 len);
147 int (*write)(void *file, const void *buf, u32 len);
148 long (*seek)(void *file, long offs, int whence);
149 void (*close)(void *file);
150};
151extern struct PcsxSaveFuncs SaveFuncs;
152
ef79bbde 153#define gzfreeze(ptr, size) { \
496d88d4 154 if (Mode == 1) SaveFuncs.write(f, ptr, size); \
155 if (Mode == 0) SaveFuncs.read(f, ptr, size); \
ef79bbde
P
156}
157
158// Make the timing events trigger faster as we are currently assuming everything
159// takes one cycle, which is not the case on real hardware.
160// FIXME: Count the proper cycle and get rid of this
161#define BIAS 2
162#define PSXCLK 33868800 /* 33.8688 MHz */
163
164enum {
165 PSX_TYPE_NTSC = 0,
166 PSX_TYPE_PAL
167}; // PSX Types
168
169enum {
170 CPU_DYNAREC = 0,
171 CPU_INTERPRETER
172}; // CPU Types
173
174int EmuInit();
175void EmuReset();
176void EmuShutdown();
177void EmuUpdate();
178
179#ifdef __cplusplus
180}
181#endif
182#endif