Update
[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;
123 boolean HLE;
f422f444 124 boolean SlowBoot;
ef79bbde
P
125 boolean Debug;
126 boolean PsxOut;
127 boolean SpuIrq;
128 boolean RCntFix;
129 boolean UseNet;
130 boolean VSyncWA;
131 u8 Cpu; // CPU_DYNAREC or CPU_INTERPRETER
132 u8 PsxType; // PSX_TYPE_NTSC or PSX_TYPE_PAL
133#ifdef _WIN32
134 char Lang[256];
135#endif
136} PcsxConfig;
137
138extern PcsxConfig Config;
139extern boolean NetOpened;
140
496d88d4 141struct PcsxSaveFuncs {
142 void *(*open)(const char *name, const char *mode);
143 int (*read)(void *file, void *buf, u32 len);
144 int (*write)(void *file, const void *buf, u32 len);
145 long (*seek)(void *file, long offs, int whence);
146 void (*close)(void *file);
147};
148extern struct PcsxSaveFuncs SaveFuncs;
149
ef79bbde 150#define gzfreeze(ptr, size) { \
496d88d4 151 if (Mode == 1) SaveFuncs.write(f, ptr, size); \
152 if (Mode == 0) SaveFuncs.read(f, ptr, size); \
ef79bbde
P
153}
154
155// Make the timing events trigger faster as we are currently assuming everything
156// takes one cycle, which is not the case on real hardware.
157// FIXME: Count the proper cycle and get rid of this
158#define BIAS 2
159#define PSXCLK 33868800 /* 33.8688 MHz */
160
161enum {
162 PSX_TYPE_NTSC = 0,
163 PSX_TYPE_PAL
164}; // PSX Types
165
166enum {
167 CPU_DYNAREC = 0,
168 CPU_INTERPRETER
169}; // CPU Types
170
171int EmuInit();
172void EmuReset();
173void EmuShutdown();
174void EmuUpdate();
175
176#ifdef __cplusplus
177}
178#endif
179#endif