1 /***************************************************************************
2 * Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team *
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. *
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. *
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 ***************************************************************************/
21 * This file contains common definitions and includes for all parts of the
25 #ifndef __PSXCOMMON_H__
26 #define __PSXCOMMON_H__
43 #include <sys/types.h>
51 typedef intptr_t sptr;
57 typedef uintptr_t uptr;
59 typedef uint8_t boolean;
73 #define strnicmp strncasecmp
75 #define __inline inline
77 // Enables NLS/internationalization if active
83 #define _(String) gettext(String)
85 # define N_(String) gettext_noop (String)
87 # define N_(String) (String)
92 #define _(msgid) msgid
93 #define N_(msgid) msgid
100 void __Log(char *fmt, ...);
103 char Gpu[MAXPATHLEN];
104 char Spu[MAXPATHLEN];
105 char Cdr[MAXPATHLEN];
106 char Pad1[MAXPATHLEN];
107 char Pad2[MAXPATHLEN];
108 char Net[MAXPATHLEN];
109 char Sio1[MAXPATHLEN];
110 char Mcd1[MAXPATHLEN];
111 char Mcd2[MAXPATHLEN];
112 char Bios[MAXPATHLEN];
113 char BiosDir[MAXPATHLEN];
114 char PluginsDir[MAXPATHLEN];
115 char PatchesDir[MAXPATHLEN];
128 u8 Cpu; // CPU_DYNAREC or CPU_INTERPRETER
129 u8 PsxType; // PSX_TYPE_NTSC or PSX_TYPE_PAL
135 extern PcsxConfig Config;
136 extern boolean NetOpened;
138 struct PcsxSaveFuncs {
139 void *(*open)(const char *name, const char *mode);
140 int (*read)(void *file, void *buf, u32 len);
141 int (*write)(void *file, const void *buf, u32 len);
142 long (*seek)(void *file, long offs, int whence);
143 void (*close)(void *file);
145 extern struct PcsxSaveFuncs SaveFuncs;
147 #define gzfreeze(ptr, size) { \
148 if (Mode == 1) SaveFuncs.write(f, ptr, size); \
149 if (Mode == 0) SaveFuncs.read(f, ptr, size); \
152 // Make the timing events trigger faster as we are currently assuming everything
153 // takes one cycle, which is not the case on real hardware.
154 // FIXME: Count the proper cycle and get rid of this
156 #define PSXCLK 33868800 /* 33.8688 MHz */