]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_os.hxx
43bea933a8e98e6c0a213840ca3d48b4dc188cae
[flightgear.git] / src / Main / fg_os.hxx
1 #ifndef _FG_OS_HXX
2 #define _FG_OS_HXX
3
4 // Plib pui needs to know at compile time what toolkit is in use.
5 // Change this when we move to something other than glut.
6 // #define PU_USE_GLUT -- moved to configure.ac -- EMH
7 #ifdef HAVE_CONFIG_H
8 #  include <config.h>
9 #endif
10
11
12 enum { MOUSE_BUTTON_LEFT,
13        MOUSE_BUTTON_MIDDLE,
14        MOUSE_BUTTON_RIGHT };
15
16 enum { MOUSE_BUTTON_DOWN,
17        MOUSE_BUTTON_UP };
18
19 enum { MOUSE_CURSOR_NONE,
20        MOUSE_CURSOR_POINTER,
21        MOUSE_CURSOR_WAIT,
22        MOUSE_CURSOR_CROSSHAIR,
23        MOUSE_CURSOR_LEFTRIGHT };
24
25 enum { KEYMOD_NONE     = 0,
26        KEYMOD_RELEASED = 1, // Not a mod key, indicates "up" action
27        KEYMOD_SHIFT    = 2,
28        KEYMOD_CTRL     = 4,
29        KEYMOD_ALT      = 8,
30        KEYMOD_META     = 16,
31        KEYMOD_SUPER    = 32,
32        KEYMOD_MAX      = 64 };
33
34 // A note on key codes: none are defined here.  FlightGear has no
35 // hard-coded interpretations of codes other than modifier keys, so we
36 // can get away with that.  The only firm requirement is that the
37 // codes passed to the fgKeyHandler function be correctly interpreted
38 // by the PUI library.  Users who need to hard-code key codes
39 // (probably not a good idea in any case) can use the pu.hxx header
40 // for definitions.
41
42 //
43 // OS integration functions
44 //
45
46 void fgOSInit(int* argc, char** argv);
47 void fgOSOpenWindow(int w, int h, int bpp, bool alpha, bool stencil,
48                     bool fullscreen);
49 void fgOSFullScreen();
50 void fgOSMainLoop();
51 void fgOSExit(int code);
52
53 void fgSetMouseCursor(int cursor);
54 int  fgGetMouseCursor();
55 void fgWarpMouse(int x, int y);
56
57 int  fgGetKeyModifiers();
58
59 void fgRequestRedraw();
60
61 //
62 // Callbacks and registration API
63 //
64
65 namespace osg { class Camera; class GraphicsContext; }
66 namespace osgGA { class GUIEventAdapter; }
67
68 typedef void (*fgIdleHandler)();
69 typedef void (*fgDrawHandler)();
70 typedef void (*fgWindowResizeHandler)(int w, int h);
71
72 typedef void (*fgKeyHandler)(int key, int keymod, int mousex, int mousey);
73 typedef void (*fgMouseClickHandler)(int button, int updown, int x, int y, bool mainWindow, const osgGA::GUIEventAdapter*);
74 typedef void (*fgMouseMotionHandler)(int x, int y);
75
76 void fgRegisterIdleHandler(fgIdleHandler func);
77 void fgRegisterDrawHandler(fgDrawHandler func);
78 void fgRegisterWindowResizeHandler(fgWindowResizeHandler func);
79
80 void fgRegisterKeyHandler(fgKeyHandler func);
81 void fgRegisterMouseClickHandler(fgMouseClickHandler func);
82 void fgRegisterMouseMotionHandler(fgMouseMotionHandler func);
83
84 void fgMakeCurrent();
85
86 bool fgOSIsMainCamera(const osg::Camera* camera);
87 bool fgOSIsMainContext(const osg::GraphicsContext* context);
88
89 #endif // _FG_OS_HXX