2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_x11.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef OS_X11_H
|
|
|
|
#define OS_X11_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "os/input.h"
|
|
|
|
#include "drivers/unix/os_unix.h"
|
|
|
|
#include "context_gl_x11.h"
|
|
|
|
#include "servers/visual_server.h"
|
2016-10-03 21:33:42 +02:00
|
|
|
//#include "servers/visual/visual_server_wrap_mt.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "servers/visual/rasterizer.h"
|
|
|
|
#include "servers/physics_server.h"
|
|
|
|
#include "servers/audio/audio_server_sw.h"
|
|
|
|
#include "servers/audio/sample_manager_sw.h"
|
|
|
|
#include "servers/spatial_sound/spatial_sound_server_sw.h"
|
|
|
|
#include "servers/spatial_sound_2d/spatial_sound_2d_server_sw.h"
|
|
|
|
#include "drivers/rtaudio/audio_driver_rtaudio.h"
|
|
|
|
#include "drivers/alsa/audio_driver_alsa.h"
|
2014-12-19 13:44:34 +01:00
|
|
|
#include "drivers/pulseaudio/audio_driver_pulseaudio.h"
|
2016-12-12 08:26:22 +01:00
|
|
|
#include "servers/audio/audio_driver_dummy.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "servers/physics_2d/physics_2d_server_sw.h"
|
2015-05-26 06:05:08 +02:00
|
|
|
#include "servers/physics_2d/physics_2d_server_wrap_mt.h"
|
2015-09-24 23:06:15 +02:00
|
|
|
#include "main/input_default.h"
|
2015-12-18 06:12:53 +01:00
|
|
|
#include "joystick_linux.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xcursor/Xcursor.h>
|
2016-06-09 18:54:06 +02:00
|
|
|
#include <X11/extensions/Xrandr.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-09-16 09:22:29 +02:00
|
|
|
// Hints for X11 fullscreen
|
|
|
|
typedef struct {
|
|
|
|
unsigned long flags;
|
|
|
|
unsigned long functions;
|
|
|
|
unsigned long decorations;
|
|
|
|
long inputMode;
|
|
|
|
unsigned long status;
|
|
|
|
} Hints;
|
|
|
|
|
2016-06-09 18:54:06 +02:00
|
|
|
typedef struct _xrr_monitor_info {
|
|
|
|
Atom name;
|
|
|
|
Bool primary;
|
|
|
|
Bool automatic;
|
|
|
|
int noutput;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int mwidth;
|
|
|
|
int mheight;
|
|
|
|
RROutput *outputs;
|
|
|
|
} xrr_monitor_info;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#undef CursorShape
|
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
class OS_X11 : public OS_Unix {
|
|
|
|
|
|
|
|
Atom wm_delete;
|
2016-05-28 21:35:42 +02:00
|
|
|
Atom xdnd_enter;
|
|
|
|
Atom xdnd_position;
|
|
|
|
Atom xdnd_status;
|
|
|
|
Atom xdnd_action_copy;
|
|
|
|
Atom xdnd_drop;
|
|
|
|
Atom xdnd_finished;
|
|
|
|
Atom xdnd_selection;
|
|
|
|
Atom requested;
|
|
|
|
|
|
|
|
int xdnd_version;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#if defined(OPENGL_ENABLED) || defined(LEGACYGL_ENABLED)
|
|
|
|
ContextGL_X11 *context_gl;
|
|
|
|
#endif
|
2016-10-03 21:33:42 +02:00
|
|
|
//Rasterizer *rasterizer;
|
2014-02-10 02:10:30 +01:00
|
|
|
VisualServer *visual_server;
|
|
|
|
VideoMode current_videomode;
|
|
|
|
List<String> args;
|
|
|
|
Window x11_window;
|
2016-05-28 21:35:42 +02:00
|
|
|
Window xdnd_source_window;
|
2016-03-09 00:00:52 +01:00
|
|
|
MainLoop *main_loop;
|
2014-02-10 02:10:30 +01:00
|
|
|
::Display* x11_display;
|
|
|
|
char *xmbstring;
|
|
|
|
int xmblen;
|
|
|
|
unsigned long last_timestamp;
|
|
|
|
::Time last_keyrelease_time;
|
|
|
|
::XIC xic;
|
|
|
|
::XIM xim;
|
|
|
|
::XIMStyle xim_style;
|
|
|
|
Point2i last_mouse_pos;
|
|
|
|
bool last_mouse_pos_valid;
|
|
|
|
Point2i last_click_pos;
|
|
|
|
uint64_t last_click_ms;
|
|
|
|
unsigned int event_id;
|
|
|
|
uint32_t last_button_state;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
PhysicsServer *physics_server;
|
|
|
|
unsigned int get_mouse_button_state(unsigned int p_x11_state);
|
|
|
|
InputModifierState get_key_modifier_state(unsigned int p_x11_state);
|
|
|
|
Physics2DServer *physics_2d_server;
|
|
|
|
|
|
|
|
MouseMode mouse_mode;
|
|
|
|
Point2i center;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-05-24 06:35:47 +02:00
|
|
|
void handle_key_event(XKeyEvent *p_event,bool p_echo=false);
|
2014-02-10 02:10:30 +01:00
|
|
|
void process_xevents();
|
|
|
|
virtual void delete_main_loop();
|
|
|
|
IP_Unix *ip_unix;
|
|
|
|
|
|
|
|
AudioServerSW *audio_server;
|
|
|
|
SampleManagerMallocSW *sample_manager;
|
|
|
|
SpatialSoundServerSW *spatial_sound_server;
|
|
|
|
SpatialSound2DServerSW *spatial_sound_2d_server;
|
|
|
|
|
|
|
|
bool force_quit;
|
|
|
|
bool minimized;
|
|
|
|
|
2015-08-29 06:43:21 +02:00
|
|
|
bool do_mouse_warp;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
const char *cursor_theme;
|
|
|
|
int cursor_size;
|
2015-10-25 15:15:56 +01:00
|
|
|
XcursorImage *img[CURSOR_MAX];
|
2014-02-10 02:10:30 +01:00
|
|
|
Cursor cursors[CURSOR_MAX];
|
|
|
|
Cursor null_cursor;
|
|
|
|
CursorShape current_cursor;
|
|
|
|
|
|
|
|
InputDefault *input;
|
|
|
|
|
2015-12-21 22:39:03 +01:00
|
|
|
#ifdef JOYDEV_ENABLED
|
2015-12-18 06:12:53 +01:00
|
|
|
joystick_linux *joystick;
|
|
|
|
#endif
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifdef RTAUDIO_ENABLED
|
|
|
|
AudioDriverRtAudio driver_rtaudio;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ALSA_ENABLED
|
|
|
|
AudioDriverALSA driver_alsa;
|
|
|
|
#endif
|
|
|
|
|
2014-12-19 13:44:34 +01:00
|
|
|
#ifdef PULSEAUDIO_ENABLED
|
|
|
|
AudioDriverPulseAudio driver_pulseaudio;
|
|
|
|
#endif
|
2016-12-12 08:26:22 +01:00
|
|
|
AudioDriverDummy driver_dummy;
|
2014-12-19 13:44:34 +01:00
|
|
|
|
2015-12-18 06:12:53 +01:00
|
|
|
Atom net_wm_icon;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-04-21 00:38:02 +02:00
|
|
|
int audio_driver_index;
|
2015-02-12 15:58:00 +01:00
|
|
|
unsigned int capture_idle;
|
2015-01-15 14:50:23 +01:00
|
|
|
bool maximized;
|
2015-01-17 16:28:04 +01:00
|
|
|
//void set_wm_border(bool p_enabled);
|
2015-01-10 14:50:31 +01:00
|
|
|
void set_wm_fullscreen(bool p_enabled);
|
2015-03-22 23:00:50 +01:00
|
|
|
|
2016-06-09 18:54:06 +02:00
|
|
|
typedef xrr_monitor_info* (*xrr_get_monitors_t)(Display *dpy, Window window, Bool get_active, int *nmonitors);
|
2016-06-12 15:29:02 +02:00
|
|
|
typedef void (*xrr_free_monitors_t)(xrr_monitor_info* monitors);
|
2016-06-09 18:54:06 +02:00
|
|
|
xrr_get_monitors_t xrr_get_monitors;
|
2016-06-12 15:29:02 +02:00
|
|
|
xrr_free_monitors_t xrr_free_monitors;
|
2016-06-09 18:54:06 +02:00
|
|
|
void *xrandr_handle;
|
2016-06-12 15:29:02 +02:00
|
|
|
Bool xrandr_ext_ok;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual int get_video_driver_count() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
virtual const char * get_video_driver_name(int p_driver) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual VideoMode get_default_video_mode() const;
|
2014-12-19 13:44:34 +01:00
|
|
|
|
2015-01-10 11:38:30 +01:00
|
|
|
virtual int get_audio_driver_count() const;
|
|
|
|
virtual const char * get_audio_driver_name(int p_driver) const;
|
2014-12-19 13:44:34 +01:00
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
virtual void initialize(const VideoMode& p_desired,int p_video_driver,int p_audio_driver);
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void finalize();
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
virtual void set_main_loop( MainLoop * p_main_loop );
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-01-10 14:50:31 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
virtual String get_name();
|
|
|
|
|
|
|
|
virtual void set_cursor_shape(CursorShape p_shape);
|
|
|
|
|
|
|
|
void set_mouse_mode(MouseMode p_mode);
|
|
|
|
MouseMode get_mouse_mode() const;
|
|
|
|
|
2014-09-20 02:01:41 +02:00
|
|
|
virtual void warp_mouse_pos(const Point2& p_to);
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual Point2 get_mouse_pos() const;
|
|
|
|
virtual int get_mouse_button_state() const;
|
|
|
|
virtual void set_window_title(const String& p_title);
|
|
|
|
|
|
|
|
virtual void set_icon(const Image& p_icon);
|
|
|
|
|
|
|
|
virtual MainLoop *get_main_loop() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual bool can_draw() const;
|
|
|
|
|
|
|
|
virtual void set_clipboard(const String& p_text);
|
|
|
|
virtual String get_clipboard() const;
|
|
|
|
|
|
|
|
virtual void release_rendering_thread();
|
|
|
|
virtual void make_rendering_thread();
|
|
|
|
virtual void swap_buffers();
|
|
|
|
|
2014-12-02 18:02:41 +01:00
|
|
|
virtual String get_system_dir(SystemDir p_dir) const;
|
|
|
|
|
2014-04-18 16:43:54 +02:00
|
|
|
virtual Error shell_open(String p_uri);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
virtual void set_video_mode(const VideoMode& p_video_mode,int p_screen=0);
|
|
|
|
virtual VideoMode get_video_mode(int p_screen=0) const;
|
|
|
|
virtual void get_fullscreen_mode_list(List<VideoMode> *p_list,int p_screen=0) const;
|
|
|
|
|
2015-03-22 23:00:50 +01:00
|
|
|
|
2015-01-11 11:52:42 +01:00
|
|
|
virtual int get_screen_count() const;
|
2015-03-22 23:00:50 +01:00
|
|
|
virtual int get_current_screen() const;
|
|
|
|
virtual void set_current_screen(int p_screen);
|
2015-01-13 10:25:50 +01:00
|
|
|
virtual Point2 get_screen_position(int p_screen=0) const;
|
2015-01-11 12:35:53 +01:00
|
|
|
virtual Size2 get_screen_size(int p_screen=0) const;
|
2016-06-09 18:54:06 +02:00
|
|
|
virtual int get_screen_dpi(int p_screen=0) const;
|
2015-01-11 08:47:27 +01:00
|
|
|
virtual Point2 get_window_position() const;
|
|
|
|
virtual void set_window_position(const Point2& p_position);
|
2015-01-11 10:36:56 +01:00
|
|
|
virtual Size2 get_window_size() const;
|
|
|
|
virtual void set_window_size(const Size2 p_size);
|
2015-03-22 23:00:50 +01:00
|
|
|
virtual void set_window_fullscreen(bool p_enabled);
|
|
|
|
virtual bool is_window_fullscreen() const;
|
|
|
|
virtual void set_window_resizable(bool p_enabled);
|
|
|
|
virtual bool is_window_resizable() const;
|
|
|
|
virtual void set_window_minimized(bool p_enabled);
|
|
|
|
virtual bool is_window_minimized() const;
|
|
|
|
virtual void set_window_maximized(bool p_enabled);
|
|
|
|
virtual bool is_window_maximized() const;
|
2016-07-21 19:40:36 +02:00
|
|
|
virtual void request_attention();
|
2015-03-22 23:00:50 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void move_window_to_foreground();
|
2015-09-21 14:39:46 +02:00
|
|
|
virtual void alert(const String& p_alert,const String& p_title="ALERT!");
|
2016-01-08 00:40:41 +01:00
|
|
|
|
|
|
|
virtual bool is_joy_known(int p_device);
|
|
|
|
virtual String get_joy_guid(int p_device) const;
|
|
|
|
|
2016-01-27 21:53:37 +01:00
|
|
|
virtual void set_context(int p_context);
|
|
|
|
|
2016-06-06 00:14:33 +02:00
|
|
|
virtual void set_use_vsync(bool p_enable);
|
2016-11-08 15:06:57 +01:00
|
|
|
virtual bool is_vsync_enabled() const;
|
2016-06-06 00:14:33 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void run();
|
|
|
|
|
|
|
|
OS_X11();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|