merge minor fixes from pcsxr
[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>
43#include <sys/types.h>
44#include <assert.h>
ef79bbde
P
45
46// Define types
47typedef int8_t s8;
48typedef int16_t s16;
49typedef int32_t s32;
50typedef int64_t s64;
51typedef intptr_t sptr;
52
53typedef uint8_t u8;
54typedef uint16_t u16;
55typedef uint32_t u32;
56typedef uint64_t u64;
57typedef uintptr_t uptr;
58
59typedef uint8_t boolean;
60
61#ifndef TRUE
62#define TRUE 1
63#endif
64
65#ifndef FALSE
66#define FALSE 0
67#endif
68
69// Local includes
70#include "system.h"
ef79bbde 71
89f33b73 72#ifndef _WIN32
ef79bbde
P
73#define strnicmp strncasecmp
74#endif
75#define __inline inline
76
77// Enables NLS/internationalization if active
78#ifdef ENABLE_NLS
79
80#include <libintl.h>
81
82#undef _
83#define _(String) gettext(String)
84#ifdef gettext_noop
85# define N_(String) gettext_noop (String)
86#else
87# define N_(String) (String)
88#endif
89
90#else
91
92#define _(msgid) msgid
93#define N_(msgid) msgid
94
95#endif
96
97extern FILE *emuLog;
98extern int Log;
99
100void __Log(char *fmt, ...);
101
102typedef struct {
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];
116 boolean Xa;
117 boolean Sio;
118 boolean Mdec;
119 boolean PsxAuto;
120 boolean Cdda;
121 boolean HLE;
122 boolean Debug;
123 boolean PsxOut;
124 boolean SpuIrq;
125 boolean RCntFix;
126 boolean UseNet;
127 boolean VSyncWA;
128 u8 Cpu; // CPU_DYNAREC or CPU_INTERPRETER
129 u8 PsxType; // PSX_TYPE_NTSC or PSX_TYPE_PAL
130#ifdef _WIN32
131 char Lang[256];
132#endif
133} PcsxConfig;
134
135extern PcsxConfig Config;
136extern boolean NetOpened;
137
496d88d4 138struct 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);
144};
145extern struct PcsxSaveFuncs SaveFuncs;
146
ef79bbde 147#define gzfreeze(ptr, size) { \
496d88d4 148 if (Mode == 1) SaveFuncs.write(f, ptr, size); \
149 if (Mode == 0) SaveFuncs.read(f, ptr, size); \
ef79bbde
P
150}
151
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
155#define BIAS 2
156#define PSXCLK 33868800 /* 33.8688 MHz */
157
158enum {
159 PSX_TYPE_NTSC = 0,
160 PSX_TYPE_PAL
161}; // PSX Types
162
163enum {
164 CPU_DYNAREC = 0,
165 CPU_INTERPRETER
166}; // CPU Types
167
168int EmuInit();
169void EmuReset();
170void EmuShutdown();
171void EmuUpdate();
172
173#ifdef __cplusplus
174}
175#endif
176#endif