Add async CD access
[pcsx_rearmed.git] / libpcsxcore / psxcommon.h
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
29 extern "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>
43 #ifndef __SWITCH__
44 #include <sys/types.h>
45 #endif
46 #include <assert.h>
47
48 // Define types
49 typedef int8_t s8;
50 typedef int16_t s16;
51 typedef int32_t s32;
52 typedef int64_t s64;
53 typedef intptr_t sptr;
54
55 typedef uint8_t u8;
56 typedef uint16_t u16;
57 typedef uint32_t u32;
58 typedef uint64_t u64;
59 typedef uintptr_t uptr;
60
61 typedef 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"
73
74 #ifndef _WIN32
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
99 extern FILE *emuLog;
100 extern int Log;
101
102 void __Log(char *fmt, ...);
103
104 typedef 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;
123         boolean AsyncCD;
124         boolean HLE;
125         boolean SlowBoot;
126         boolean Debug;
127         boolean PsxOut;
128         boolean SpuIrq;
129         boolean RCntFix;
130         boolean UseNet;
131         boolean VSyncWA;
132         u8 Cpu; // CPU_DYNAREC or CPU_INTERPRETER
133         u8 PsxType; // PSX_TYPE_NTSC or PSX_TYPE_PAL
134 #ifdef _WIN32
135         char Lang[256];
136 #endif
137 } PcsxConfig;
138
139 extern PcsxConfig Config;
140 extern boolean NetOpened;
141
142 struct PcsxSaveFuncs {
143         void *(*open)(const char *name, const char *mode);
144         int   (*read)(void *file, void *buf, u32 len);
145         int   (*write)(void *file, const void *buf, u32 len);
146         long  (*seek)(void *file, long offs, int whence);
147         void  (*close)(void *file);
148 };
149 extern struct PcsxSaveFuncs SaveFuncs;
150
151 #define gzfreeze(ptr, size) { \
152         if (Mode == 1) SaveFuncs.write(f, ptr, size); \
153         if (Mode == 0) SaveFuncs.read(f, ptr, size); \
154 }
155
156 // Make the timing events trigger faster as we are currently assuming everything
157 // takes one cycle, which is not the case on real hardware.
158 // FIXME: Count the proper cycle and get rid of this
159 #define BIAS    2
160 #define PSXCLK  33868800        /* 33.8688 MHz */
161
162 enum {
163         PSX_TYPE_NTSC = 0,
164         PSX_TYPE_PAL
165 }; // PSX Types
166
167 enum {
168         CPU_DYNAREC = 0,
169         CPU_INTERPRETER
170 }; // CPU Types
171
172 int EmuInit();
173 void EmuReset();
174 void EmuShutdown();
175 void EmuUpdate();
176
177 #ifdef __cplusplus
178 }
179 #endif
180 #endif