RICE: OOT Fix from mupen64plus-ae team
[mupen64plus-pandora.git] / source / gles2glide64 / src / Glide64 / m64p.h
CommitLineData
98e75f2d 1/******************************************************************************
2 * Glide64 - Glide video plugin for Nintendo 64 emulators.
3 * http://bitbucket.org/richard42/mupen64plus-video-glide64mk2/
4 *
5 * Copyright (C) 2010 Jon Ring
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 *****************************************************************************/
21
22#ifndef M64P_H
23#define M64P_H
24
25#ifndef OLDAPI
26
27#include "m64p_types.h"
28#include "m64p_plugin.h"
29#include "m64p_common.h"
30#include "m64p_config.h"
31#include "m64p_vidext.h"
32#include "winlnxdefs.h"
33#include <stdio.h>
34
35#define PLUGIN_NAME "Glide64mk2 Video Plugin"
36#define PLUGIN_VERSION 0x020000
37#define VIDEO_PLUGIN_API_VERSION 0x020200
38#define CONFIG_API_VERSION 0x020000
39#define VIDEXT_API_VERSION 0x030000
40
41void WriteLog(m64p_msg_level level, const char *msg, ...);
42
43//The Glide API originally used an integer to pick an enumerated resolution.
44//To accomodate arbitrary resolutions, pack it into a 32-bit struct
45//so we don't have to change function signatures
46union PackedScreenResolution
47{
48 struct
49 {
50 int width : 16;
51 int height : 15;
52 int fullscreen : 1;
53 };
54 int resolution;
55};
56
57
58/* definitions of pointers to Core config functions */
59extern ptr_ConfigOpenSection ConfigOpenSection;
60extern ptr_ConfigSetParameter ConfigSetParameter;
61extern ptr_ConfigGetParameter ConfigGetParameter;
62extern ptr_ConfigGetParameterHelp ConfigGetParameterHelp;
63extern ptr_ConfigSetDefaultInt ConfigSetDefaultInt;
64extern ptr_ConfigSetDefaultFloat ConfigSetDefaultFloat;
65extern ptr_ConfigSetDefaultBool ConfigSetDefaultBool;
66extern ptr_ConfigSetDefaultString ConfigSetDefaultString;
67extern ptr_ConfigGetParamInt ConfigGetParamInt;
68extern ptr_ConfigGetParamFloat ConfigGetParamFloat;
69extern ptr_ConfigGetParamBool ConfigGetParamBool;
70extern ptr_ConfigGetParamString ConfigGetParamString;
71
72extern ptr_ConfigGetSharedDataFilepath ConfigGetSharedDataFilepath;
73extern ptr_ConfigGetUserConfigPath ConfigGetUserConfigPath;
74extern ptr_ConfigGetUserDataPath ConfigGetUserDataPath;
75extern ptr_ConfigGetUserCachePath ConfigGetUserCachePath;
76
77
78extern ptr_VidExt_Init CoreVideo_Init;
79extern ptr_VidExt_Quit CoreVideo_Quit;
80extern ptr_VidExt_ListFullscreenModes CoreVideo_ListFullscreenModes;
81extern ptr_VidExt_SetVideoMode CoreVideo_SetVideoMode;
82extern ptr_VidExt_SetCaption CoreVideo_SetCaption;
83extern ptr_VidExt_ToggleFullScreen CoreVideo_ToggleFullScreen;
84extern ptr_VidExt_ResizeWindow CoreVideo_ResizeWindow;
85extern ptr_VidExt_GL_GetProcAddress CoreVideo_GL_GetProcAddress;
86extern ptr_VidExt_GL_SetAttribute CoreVideo_GL_SetAttribute;
87extern ptr_VidExt_GL_SwapBuffers CoreVideo_GL_SwapBuffers;
88
89#else
90
91#include <wx/wx.h>
92#include <wx/fileconf.h>
93#include <wx/wfstream.h>
94
95
96#endif
97
98#endif