multiple scaler support
[drnoksnes] / platform / platform.h
1 #ifndef _PLATFORM_H_
2 #define _PLATFORM_H_
3
4 #include "port.h"
5
6 // Configuration and command line parsing
7 void S9xLoadConfig(int argc, const char ** argv);
8 void S9xUnloadConfig();
9 void S9xSetRomFile(const char * file);
10 extern struct config {
11         /** Unfreeze from .frz.gz snapshot on start */
12         bool snapshotLoad;
13         /** Freeze to .frz.gz on exit */
14         bool snapshotSave;
15         /** Create fullscreen surface */
16         bool fullscreen;
17         /** Name of the scaler to use or NULL for default */
18         char * scaler;
19         /** Audio output enabled */
20         bool enableAudio;
21         /** Speedhacks file to use */
22         char * hacksFile;
23         /** Enable touchscreen controls */
24         bool touchscreenInput;
25         /** Current scancode->joypad mapping */
26         unsigned short joypad1Mapping[256];
27         unsigned char action[256];
28         /** If true, next time the main loop is entered application will close */
29         bool quitting;
30 } Config;
31
32 // Video
33 extern struct gui {
34         /** Size of the GUI Window */
35         unsigned short Width, Height;
36         /** Size of the (scaled) rendering area, relative to window. */
37         unsigned short RenderX, RenderY, RenderW, RenderH;
38         /** Scaling ratio */
39         unsigned short Scale;
40 } GUI;
41 void S9xVideoToggleFullscreen();
42 void S9xVideoOutputFocus(bool hasFocus);
43
44 // Audio output
45 void S9xInitAudioOutput();
46 void S9xDeinitAudioOutput();
47 void S9xAudioOutputEnable(bool enable);
48
49 // Input devices
50 EXTERN_C void S9xInitInputDevices();
51 void S9xDeinitInputDevices();
52 void S9xInputScreenChanged();
53
54 // Input actions
55 #define kActionNone                                             0
56 #define kActionQuit                                     (1U << 0)
57 #define kActionToggleFullscreen         (1U << 1)
58 #define kActionQuickLoad1                       (1U << 2)
59 #define kActionQuickSave1                       (1U << 3)
60 #define kActionQuickLoad2                       (1U << 4)
61 #define kActionQuickSave2                       (1U << 5)
62
63 void S9xDoAction(unsigned char action);
64
65 #endif