2023-01-10 15:26:54 +01:00
/**************************************************************************/
/* os_x11.cpp */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* 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. */
/**************************************************************************/
2018-01-05 00:50:27 +01:00
2014-02-10 02:10:30 +01:00
# include "os_x11.h"
2019-01-27 23:31:38 +01:00
2018-09-11 18:13:45 +02:00
# include "core/os/dir_access.h"
# include "core/print_string.h"
2020-06-29 13:02:34 +02:00
# include "detect_prime.h"
2017-12-04 13:41:34 +01:00
# include "drivers/gles2/rasterizer_gles2.h"
2017-03-05 16:44:50 +01:00
# include "drivers/gles3/rasterizer_gles3.h"
2014-02-10 02:10:30 +01:00
# include "key_mapping_x11.h"
2020-06-29 13:02:34 +02:00
# include "main/main.h"
2017-03-05 16:44:50 +01:00
# include "servers/visual/visual_server_raster.h"
2017-06-09 05:23:50 +02:00
# include "servers/visual/visual_server_wrap_mt.h"
2017-10-17 18:50:41 +02:00
# ifdef HAVE_MNTENT
2017-09-25 15:15:11 +02:00
# include <mntent.h>
2017-10-17 18:50:41 +02:00
# endif
2020-06-29 13:02:34 +02:00
# include <errno.h>
2020-12-02 15:43:29 +01:00
# include <limits.h>
2014-02-10 02:10:30 +01:00
# include <stdio.h>
# include <stdlib.h>
2014-11-19 22:16:00 +01:00
# include <string.h>
2015-05-26 06:05:08 +02:00
2020-06-29 13:02:34 +02:00
# include <X11/Xatom.h>
# include <X11/Xutil.h>
# include <X11/extensions/Xinerama.h>
2020-06-29 11:31:13 +02:00
# include <X11/extensions/shape.h>
2015-03-22 23:00:50 +01:00
2015-01-16 16:18:45 +01:00
// ICCCM
2017-03-05 16:44:50 +01:00
# define WM_NormalState 1L // window normal state
# define WM_IconicState 3L // window minimized
2015-01-16 16:18:45 +01:00
// EWMH
2017-03-05 16:44:50 +01:00
# define _NET_WM_STATE_REMOVE 0L // remove/unset property
# define _NET_WM_STATE_ADD 1L // add/set property
# define _NET_WM_STATE_TOGGLE 2L // toggle property
2015-03-22 23:00:50 +01:00
2017-03-05 16:44:50 +01:00
# include <dlfcn.h>
2014-02-10 02:10:30 +01:00
# include <fcntl.h>
2017-03-05 16:44:50 +01:00
# include <sys/stat.h>
# include <sys/types.h>
2014-02-10 02:10:30 +01:00
# include <unistd.h>
2014-02-23 21:20:27 +01:00
2014-02-10 02:10:30 +01:00
//stupid linux.h
# ifdef KEY_TAB
# undef KEY_TAB
# endif
# undef CursorShape
2017-06-27 11:26:43 +02:00
# include <X11/XKBlib.h>
2018-08-18 00:59:26 +02:00
// 2.2 is the first release with multitouch
# define XINPUT_CLIENT_VERSION_MAJOR 2
# define XINPUT_CLIENT_VERSION_MINOR 2
2018-12-13 21:32:11 +01:00
# define VALUATOR_ABSX 0
# define VALUATOR_ABSY 1
# define VALUATOR_PRESSURE 2
# define VALUATOR_TILTX 3
# define VALUATOR_TILTY 4
2021-09-09 02:36:51 +02:00
//#define DISPLAY_SERVER_X11_DEBUG_LOGS_ENABLED
# ifdef DISPLAY_SERVER_X11_DEBUG_LOGS_ENABLED
# define DEBUG_LOG_X11(...) printf(__VA_ARGS__)
# else
# define DEBUG_LOG_X11(...)
# endif
2018-08-18 00:59:26 +02:00
static const double abs_resolution_mult = 10000.0 ;
static const double abs_resolution_range_mult = 10.0 ;
2022-03-04 10:50:28 +01:00
static String get_atom_name ( Display * p_disp , Atom p_atom ) {
char * name = XGetAtomName ( p_disp , p_atom ) ;
ERR_FAIL_NULL_V_MSG ( name , String ( ) , " Atom is invalid. " ) ;
String ret ;
ret . parse_utf8 ( name ) ;
XFree ( name ) ;
return ret ;
}
2022-05-23 14:02:12 +02:00
# ifdef SPEECHD_ENABLED
bool OS_X11 : : tts_is_speaking ( ) const {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_V_MSG ( ! tts , false , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND_V ( ! tts , false ) ;
return tts - > is_speaking ( ) ;
}
bool OS_X11 : : tts_is_paused ( ) const {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_V_MSG ( ! tts , false , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND_V ( ! tts , false ) ;
return tts - > is_paused ( ) ;
}
Array OS_X11 : : tts_get_voices ( ) const {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_V_MSG ( ! tts , Array ( ) , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND_V ( ! tts , Array ( ) ) ;
return tts - > get_voices ( ) ;
}
void OS_X11 : : tts_speak ( const String & p_text , const String & p_voice , int p_volume , float p_pitch , float p_rate , int p_utterance_id , bool p_interrupt ) {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_MSG ( ! tts , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND ( ! tts ) ;
tts - > speak ( p_text , p_voice , p_volume , p_pitch , p_rate , p_utterance_id , p_interrupt ) ;
}
void OS_X11 : : tts_pause ( ) {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_MSG ( ! tts , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND ( ! tts ) ;
tts - > pause ( ) ;
}
void OS_X11 : : tts_resume ( ) {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_MSG ( ! tts , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND ( ! tts ) ;
tts - > resume ( ) ;
}
void OS_X11 : : tts_stop ( ) {
2023-05-22 15:41:09 +02:00
ERR_FAIL_COND_MSG ( ! tts , " Enable the \" audio/general/text_to_speech \" project setting to use text-to-speech. " ) ;
2022-05-23 14:02:12 +02:00
ERR_FAIL_COND ( ! tts ) ;
tts - > stop ( ) ;
}
# endif
2017-09-08 03:01:49 +02:00
void OS_X11 : : initialize_core ( ) {
crash_handler . initialize ( ) ;
OS_Unix : : initialize_core ( ) ;
}
2018-07-19 23:58:15 +02:00
int OS_X11 : : get_current_video_driver ( ) const {
return video_driver_index ;
}
2018-01-03 18:26:44 +01:00
Error OS_X11 : : initialize ( const VideoMode & p_desired , int p_video_driver , int p_audio_driver ) {
2017-06-27 11:26:43 +02:00
long im_event_mask = 0 ;
2017-03-05 16:44:50 +01:00
last_button_state = 0 ;
2014-02-10 02:10:30 +01:00
2021-05-04 16:00:45 +02:00
xmbstring = nullptr ;
2017-03-05 16:44:50 +01:00
x11_window = 0 ;
last_click_ms = 0 ;
2018-07-20 18:16:09 +02:00
last_click_button_index = - 1 ;
last_click_pos = Point2 ( - 100 , - 100 ) ;
2017-03-05 16:44:50 +01:00
args = OS : : get_singleton ( ) - > get_cmdline_args ( ) ;
current_videomode = p_desired ;
2021-05-04 16:00:45 +02:00
main_loop = nullptr ;
2017-03-05 16:44:50 +01:00
last_timestamp = 0 ;
last_mouse_pos_valid = false ;
last_keyrelease_time = 0 ;
2016-05-28 21:35:42 +02:00
xdnd_version = 0 ;
2014-02-10 02:10:30 +01:00
2020-09-25 18:16:39 +02:00
XInitThreads ( ) ;
2014-02-10 02:10:30 +01:00
/** XLIB INITIALIZATION **/
2021-05-04 16:00:45 +02:00
x11_display = XOpenDisplay ( nullptr ) ;
2016-03-09 00:00:52 +01:00
2018-01-03 18:26:44 +01:00
if ( ! x11_display ) {
ERR_PRINT ( " X11 Display is not available " ) ;
return ERR_UNAVAILABLE ;
}
2021-05-04 16:00:45 +02:00
char * modifiers = nullptr ;
2017-06-27 11:26:43 +02:00
Bool xkb_dar = False ;
2018-01-03 18:26:44 +01:00
XAutoRepeatOn ( x11_display ) ;
2021-05-04 16:00:45 +02:00
xkb_dar = XkbSetDetectableAutoRepeat ( x11_display , True , nullptr ) ;
2017-06-27 11:26:43 +02:00
2018-01-03 18:26:44 +01:00
// Try to support IME if detectable auto-repeat is supported
if ( xkb_dar = = True ) {
2017-06-27 11:26:43 +02:00
# ifdef X_HAVE_UTF8_STRING
2018-01-03 18:26:44 +01:00
// Xutf8LookupString will be used later instead of XmbLookupString before
// the multibyte sequences can be converted to unicode string.
modifiers = XSetLocaleModifiers ( " " ) ;
2017-06-27 11:26:43 +02:00
# endif
}
2021-05-04 16:00:45 +02:00
if ( modifiers = = nullptr ) {
2017-06-27 11:26:43 +02:00
if ( is_stdout_verbose ( ) ) {
WARN_PRINT ( " IME is disabled " ) ;
}
2019-06-26 15:08:25 +02:00
XSetLocaleModifiers ( " @im=none " ) ;
2016-07-08 16:26:48 +02:00
WARN_PRINT ( " Error setting locale modifiers " ) ;
}
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
const char * err ;
2021-05-04 16:00:45 +02:00
xrr_get_monitors = nullptr ;
xrr_free_monitors = nullptr ;
2016-06-12 15:29:02 +02:00
int xrandr_major = 0 ;
int xrandr_minor = 0 ;
int event_base , error_base ;
2017-03-05 16:44:50 +01:00
xrandr_ext_ok = XRRQueryExtension ( x11_display , & event_base , & error_base ) ;
2016-08-11 17:25:13 +02:00
xrandr_handle = dlopen ( " libXrandr.so.2 " , RTLD_LAZY ) ;
2016-06-09 18:54:06 +02:00
if ( ! xrandr_handle ) {
2016-08-11 17:25:13 +02:00
err = dlerror ( ) ;
2020-09-18 11:55:12 +02:00
// For some arcane reason, NetBSD now ships libXrandr.so.3 while the rest of the world has libXrandr.so.2...
// In case this happens for other X11 platforms in the future, let's give it a try too before failing.
xrandr_handle = dlopen ( " libXrandr.so.3 " , RTLD_LAZY ) ;
if ( ! xrandr_handle ) {
fprintf ( stderr , " could not load libXrandr.so.2, Error: %s \n " , err ) ;
}
2017-03-05 16:44:50 +01:00
} else {
2016-06-12 15:29:02 +02:00
XRRQueryVersion ( x11_display , & xrandr_major , & xrandr_minor ) ;
if ( ( ( xrandr_major < < 8 ) | xrandr_minor ) > = 0x0105 ) {
2017-03-05 16:44:50 +01:00
xrr_get_monitors = ( xrr_get_monitors_t ) dlsym ( xrandr_handle , " XRRGetMonitors " ) ;
2016-06-12 15:29:02 +02:00
if ( ! xrr_get_monitors ) {
err = dlerror ( ) ;
fprintf ( stderr , " could not find symbol XRRGetMonitors \n Error: %s \n " , err ) ;
2017-03-05 16:44:50 +01:00
} else {
xrr_free_monitors = ( xrr_free_monitors_t ) dlsym ( xrandr_handle , " XRRFreeMonitors " ) ;
2016-06-12 15:29:02 +02:00
if ( ! xrr_free_monitors ) {
err = dlerror ( ) ;
fprintf ( stderr , " could not find XRRFreeMonitors \n Error: %s \n " , err ) ;
2021-05-04 16:00:45 +02:00
xrr_get_monitors = nullptr ;
2016-06-12 15:29:02 +02:00
}
}
}
2016-06-09 18:54:06 +02:00
}
2018-08-18 00:59:26 +02:00
if ( ! refresh_device_info ( ) ) {
OS : : get_singleton ( ) - > alert ( " Your system does not support XInput 2. \n "
" Please upgrade your distribution. " ,
" Unable to initialize XInput " ) ;
return ERR_UNAVAILABLE ;
2017-11-29 21:01:26 +01:00
}
2021-05-04 16:00:45 +02:00
xim = XOpenIM ( x11_display , nullptr , nullptr , nullptr ) ;
2014-02-10 02:10:30 +01:00
2021-05-04 16:00:45 +02:00
if ( xim = = nullptr ) {
2014-02-10 02:10:30 +01:00
WARN_PRINT ( " XOpenIM failed " ) ;
2017-03-05 16:44:50 +01:00
xim_style = 0L ;
2014-02-10 02:10:30 +01:00
} else {
2017-06-27 11:26:43 +02:00
: : XIMCallback im_destroy_callback ;
im_destroy_callback . client_data = ( : : XPointer ) ( this ) ;
im_destroy_callback . callback = ( : : XIMProc ) ( xim_destroy_callback ) ;
if ( XSetIMValues ( xim , XNDestroyCallback , & im_destroy_callback ,
2021-05-04 16:00:45 +02:00
NULL ) ! = nullptr ) {
2017-06-27 11:26:43 +02:00
WARN_PRINT ( " Error setting XIM destroy callback " ) ;
}
2021-05-04 16:00:45 +02:00
: : XIMStyles * xim_styles = nullptr ;
2017-03-05 16:44:50 +01:00
xim_style = 0L ;
2017-08-21 21:15:36 +02:00
char * imvalret = XGetIMValues ( xim , XNQueryInputStyle , & xim_styles , NULL ) ;
2021-05-04 16:00:45 +02:00
if ( imvalret ! = nullptr | | xim_styles = = nullptr ) {
2017-03-05 16:44:50 +01:00
fprintf ( stderr , " Input method doesn't support any styles \n " ) ;
2014-02-10 02:10:30 +01:00
}
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
if ( xim_styles ) {
2015-01-16 06:44:41 +01:00
xim_style = 0L ;
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < xim_styles - > count_styles ; i + + ) {
2014-02-10 02:10:30 +01:00
if ( xim_styles - > supported_styles [ i ] = =
2017-03-05 16:44:50 +01:00
( XIMPreeditNothing | XIMStatusNothing ) ) {
xim_style = xim_styles - > supported_styles [ i ] ;
break ;
}
2014-02-10 02:10:30 +01:00
}
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
XFree ( xim_styles ) ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
XFree ( imvalret ) ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
/*
2014-02-10 02:10:30 +01:00
char * windowid = getenv ( " GODOT_WINDOWID " ) ;
if ( windowid ) {
//freopen("/home/punto/stdout", "w", stdout);
//reopen("/home/punto/stderr", "w", stderr);
x11_window = atol ( windowid ) ;
XWindowAttributes xwa ;
XGetWindowAttributes ( x11_display , x11_window , & xwa ) ;
current_videomode . width = xwa . width ;
current_videomode . height = xwa . height ;
} ;
*/
2017-03-05 16:44:50 +01:00
// maybe contextgl wants to be in charge of creating the window
2017-10-13 00:18:04 +02:00
# if defined(OPENGL_ENABLED)
2021-05-04 16:00:45 +02:00
if ( getenv ( " DRI_PRIME " ) = = nullptr ) {
2019-02-14 16:25:37 +01:00
int use_prime = - 1 ;
if ( getenv ( " PRIMUS_DISPLAY " ) | |
getenv ( " PRIMUS_libGLd " ) | |
getenv ( " PRIMUS_libGLa " ) | |
getenv ( " PRIMUS_libGL " ) | |
getenv ( " PRIMUS_LOAD_GLOBAL " ) | |
getenv ( " BUMBLEBEE_SOCKET " ) ) {
print_verbose ( " Optirun/primusrun detected. Skipping GPU detection " ) ;
use_prime = 0 ;
}
2021-03-08 16:03:24 +01:00
// Some tools use fake libGL libraries and have them override the real one using
// LD_LIBRARY_PATH, so we skip them. *But* Steam also sets LD_LIBRARY_PATH for its
// runtime and includes system `/lib` and `/lib64`... so ignore Steam.
if ( use_prime = = - 1 & & getenv ( " LD_LIBRARY_PATH " ) & & ! getenv ( " STEAM_RUNTIME_LIBRARY_PATH " ) ) {
2019-02-14 16:25:37 +01:00
String ld_library_path ( getenv ( " LD_LIBRARY_PATH " ) ) ;
Vector < String > libraries = ld_library_path . split ( " : " ) ;
for ( int i = 0 ; i < libraries . size ( ) ; + + i ) {
if ( FileAccess : : exists ( libraries [ i ] + " /libGL.so.1 " ) | |
FileAccess : : exists ( libraries [ i ] + " /libGL.so " ) ) {
print_verbose ( " Custom libGL override detected. Skipping GPU detection " ) ;
use_prime = 0 ;
}
}
}
if ( use_prime = = - 1 ) {
print_verbose ( " Detecting GPUs, set DRI_PRIME in the environment to override GPU detection logic. " ) ;
use_prime = detect_prime ( ) ;
}
2019-01-27 23:31:38 +01:00
if ( use_prime ) {
print_line ( " Found discrete GPU, setting DRI_PRIME=1 to use it. " ) ;
print_line ( " Note: Set DRI_PRIME=0 in the environment to disable Godot from using the discrete GPU. " ) ;
setenv ( " DRI_PRIME " , " 1 " , 1 ) ;
2018-12-20 11:51:26 +01:00
}
}
2015-01-10 18:07:23 +01:00
2017-12-04 13:41:34 +01:00
ContextGL_X11 : : ContextType opengl_api_type = ContextGL_X11 : : GLES_3_0_COMPATIBLE ;
2014-02-10 02:10:30 +01:00
2018-03-01 22:17:34 +01:00
if ( p_video_driver = = VIDEO_DRIVER_GLES2 ) {
2017-12-04 13:41:34 +01:00
opengl_api_type = ContextGL_X11 : : GLES_2_0_COMPATIBLE ;
}
2018-08-25 00:04:25 +02:00
bool editor = Engine : : get_singleton ( ) - > is_editor_hint ( ) ;
bool gl_initialization_error = false ;
2021-05-04 16:00:45 +02:00
context_gl = nullptr ;
2018-08-25 00:04:25 +02:00
while ( ! context_gl ) {
context_gl = memnew ( ContextGL_X11 ( x11_display , x11_window , current_videomode , opengl_api_type ) ) ;
if ( context_gl - > initialize ( ) ! = OK ) {
memdelete ( context_gl ) ;
2021-05-04 16:00:45 +02:00
context_gl = nullptr ;
2018-08-25 00:04:25 +02:00
2019-03-05 13:46:51 +01:00
if ( GLOBAL_GET ( " rendering/quality/driver/fallback_to_gles2 " ) | | editor ) {
2018-08-25 00:04:25 +02:00
if ( p_video_driver = = VIDEO_DRIVER_GLES2 ) {
gl_initialization_error = true ;
break ;
}
p_video_driver = VIDEO_DRIVER_GLES2 ;
opengl_api_type = ContextGL_X11 : : GLES_2_0_COMPATIBLE ;
} else {
gl_initialization_error = true ;
break ;
}
}
}
while ( true ) {
if ( opengl_api_type = = ContextGL_X11 : : GLES_3_0_COMPATIBLE ) {
if ( RasterizerGLES3 : : is_viable ( ) = = OK ) {
RasterizerGLES3 : : register_config ( ) ;
RasterizerGLES3 : : make_current ( ) ;
break ;
} else {
2019-03-05 13:46:51 +01:00
if ( GLOBAL_GET ( " rendering/quality/driver/fallback_to_gles2 " ) | | editor ) {
2018-08-25 00:04:25 +02:00
p_video_driver = VIDEO_DRIVER_GLES2 ;
opengl_api_type = ContextGL_X11 : : GLES_2_0_COMPATIBLE ;
continue ;
} else {
gl_initialization_error = true ;
break ;
}
}
}
if ( opengl_api_type = = ContextGL_X11 : : GLES_2_0_COMPATIBLE ) {
if ( RasterizerGLES2 : : is_viable ( ) = = OK ) {
RasterizerGLES2 : : register_config ( ) ;
RasterizerGLES2 : : make_current ( ) ;
break ;
} else {
gl_initialization_error = true ;
break ;
}
}
2017-12-04 13:41:34 +01:00
}
2014-02-10 02:10:30 +01:00
2018-08-25 00:04:25 +02:00
if ( gl_initialization_error ) {
OS : : get_singleton ( ) - > alert ( " Your video card driver does not support any of the supported OpenGL versions. \n "
2021-08-05 18:23:33 +02:00
" Please update your drivers or if you have a very old or integrated GPU, upgrade it. \n "
2021-09-15 18:25:49 +02:00
" If you have updated your graphics drivers recently, try rebooting. \n "
2021-08-05 18:23:33 +02:00
" Alternatively, you can force software rendering by running Godot with the `LIBGL_ALWAYS_SOFTWARE=1` \n "
" environment variable set, but this will be very slow. " ,
2018-08-25 00:04:25 +02:00
" Unable to initialize Video driver " ) ;
return ERR_UNAVAILABLE ;
}
video_driver_index = p_video_driver ;
2018-07-19 23:58:15 +02:00
2017-12-08 17:58:28 +01:00
context_gl - > set_use_vsync ( current_videomode . use_vsync ) ;
2016-10-03 21:33:42 +02:00
# endif
2014-02-10 02:10:30 +01:00
2022-05-23 14:02:12 +02:00
# ifdef SPEECHD_ENABLED
// Init TTS
2023-05-22 15:41:09 +02:00
bool tts_enabled = GLOBAL_GET ( " audio/general/text_to_speech " ) ;
if ( tts_enabled ) {
tts = memnew ( TTS_Linux ) ;
}
2022-05-23 14:02:12 +02:00
# endif
2018-11-01 19:22:15 +01:00
visual_server = memnew ( VisualServerRaster ) ;
2017-06-09 05:23:50 +02:00
if ( get_render_thread_mode ( ) ! = RENDER_THREAD_UNSAFE ) {
visual_server = memnew ( VisualServerWrapMT ( visual_server , get_render_thread_mode ( ) = = RENDER_SEPARATE_THREAD ) ) ;
2014-02-10 02:10:30 +01:00
}
2018-11-01 19:22:15 +01:00
2017-10-24 21:35:28 +02:00
if ( current_videomode . maximized ) {
current_videomode . maximized = false ;
set_window_maximized ( true ) ;
// borderless fullscreen window mode
} else if ( current_videomode . fullscreen ) {
current_videomode . fullscreen = false ;
set_window_fullscreen ( true ) ;
2017-07-05 17:19:24 +02:00
} else if ( current_videomode . borderless_window ) {
Hints hints ;
Atom property ;
hints . flags = 2 ;
hints . decorations = 0 ;
property = XInternAtom ( x11_display , " _MOTIF_WM_HINTS " , True ) ;
2021-02-03 16:08:37 +01:00
if ( property ! = None ) {
XChangeProperty ( x11_display , x11_window , property , property , 32 , PropModeReplace , ( unsigned char * ) & hints , 5 ) ;
}
2014-08-25 08:54:10 +02:00
}
2019-09-11 10:13:48 +02:00
// make PID known to X11
{
const long pid = this - > get_process_id ( ) ;
Atom net_wm_pid = XInternAtom ( x11_display , " _NET_WM_PID " , False ) ;
2021-02-03 16:08:37 +01:00
if ( net_wm_pid ! = None ) {
XChangeProperty ( x11_display , x11_window , net_wm_pid , XA_CARDINAL , 32 , PropModeReplace , ( unsigned char * ) & pid , 1 ) ;
}
2019-09-11 10:13:48 +02:00
}
2015-01-15 14:50:23 +01:00
// disable resizable window
2018-11-19 03:03:54 +01:00
if ( ! current_videomode . resizable & & ! current_videomode . fullscreen ) {
2014-08-25 08:54:10 +02:00
XSizeHints * xsh ;
xsh = XAllocSizeHints ( ) ;
xsh - > flags = PMinSize | PMaxSize ;
XWindowAttributes xwa ;
if ( current_videomode . fullscreen ) {
2017-03-05 16:44:50 +01:00
XGetWindowAttributes ( x11_display , DefaultRootWindow ( x11_display ) , & xwa ) ;
2014-09-16 08:49:31 +02:00
} else {
2017-03-05 16:44:50 +01:00
XGetWindowAttributes ( x11_display , x11_window , & xwa ) ;
2014-08-25 08:54:10 +02:00
}
2016-03-09 00:00:52 +01:00
xsh - > min_width = xwa . width ;
2014-08-25 08:54:10 +02:00
xsh - > max_width = xwa . width ;
xsh - > min_height = xwa . height ;
xsh - > max_height = xwa . height ;
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
2015-01-15 14:50:23 +01:00
XFree ( xsh ) ;
2014-08-25 08:54:10 +02:00
}
2015-01-17 16:28:04 +01:00
2017-12-27 20:51:19 +01:00
if ( current_videomode . always_on_top ) {
current_videomode . always_on_top = false ;
set_window_always_on_top ( true ) ;
}
2018-01-03 18:26:44 +01:00
ERR_FAIL_COND_V ( ! visual_server , ERR_UNAVAILABLE ) ;
ERR_FAIL_COND_V ( x11_window = = 0 , ERR_UNAVAILABLE ) ;
2014-02-10 02:10:30 +01:00
XSetWindowAttributes new_attr ;
2017-03-05 16:44:50 +01:00
new_attr . event_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask |
2021-10-28 13:23:24 +02:00
ButtonReleaseMask | EnterWindowMask |
LeaveWindowMask | PointerMotionMask |
Button1MotionMask |
Button2MotionMask | Button3MotionMask |
Button4MotionMask | Button5MotionMask |
ButtonMotionMask | KeymapStateMask |
ExposureMask | VisibilityChangeMask |
StructureNotifyMask |
SubstructureNotifyMask | SubstructureRedirectMask |
FocusChangeMask | PropertyChangeMask |
ColormapChangeMask | OwnerGrabButtonMask |
im_event_mask ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
XChangeWindowAttributes ( x11_display , x11_window , CWEventMask , & new_attr ) ;
2016-03-09 00:00:52 +01:00
2018-08-18 00:59:26 +02:00
static unsigned char all_mask_data [ XIMaskLen ( XI_LASTEVENT ) ] = { } ;
static unsigned char all_master_mask_data [ XIMaskLen ( XI_LASTEVENT ) ] = { } ;
2017-11-29 21:01:26 +01:00
2018-08-18 00:59:26 +02:00
xi . all_event_mask . deviceid = XIAllDevices ;
xi . all_event_mask . mask_len = sizeof ( all_mask_data ) ;
xi . all_event_mask . mask = all_mask_data ;
2017-11-29 21:01:26 +01:00
2018-08-18 00:59:26 +02:00
xi . all_master_event_mask . deviceid = XIAllMasterDevices ;
xi . all_master_event_mask . mask_len = sizeof ( all_master_mask_data ) ;
xi . all_master_event_mask . mask = all_master_mask_data ;
2017-11-29 21:01:26 +01:00
2018-08-18 00:59:26 +02:00
XISetMask ( xi . all_event_mask . mask , XI_HierarchyChanged ) ;
XISetMask ( xi . all_master_event_mask . mask , XI_DeviceChanged ) ;
XISetMask ( xi . all_master_event_mask . mask , XI_RawMotion ) ;
2017-11-29 21:01:26 +01:00
2018-08-18 00:59:26 +02:00
# ifdef TOUCH_ENABLED
if ( xi . touch_devices . size ( ) ) {
XISetMask ( xi . all_event_mask . mask , XI_TouchBegin ) ;
XISetMask ( xi . all_event_mask . mask , XI_TouchUpdate ) ;
XISetMask ( xi . all_event_mask . mask , XI_TouchEnd ) ;
XISetMask ( xi . all_event_mask . mask , XI_TouchOwnership ) ;
2017-11-29 21:01:26 +01:00
}
# endif
2018-08-18 00:59:26 +02:00
XISelectEvents ( x11_display , x11_window , & xi . all_event_mask , 1 ) ;
XISelectEvents ( x11_display , DefaultRootWindow ( x11_display ) , & xi . all_master_event_mask , 1 ) ;
2015-01-15 14:50:23 +01:00
/* set the titlebar name */
XStoreName ( x11_display , x11_window , " Godot " ) ;
2014-05-22 08:05:05 +02:00
2016-03-09 00:00:52 +01:00
wm_delete = XInternAtom ( x11_display , " WM_DELETE_WINDOW " , true ) ;
2014-02-10 02:10:30 +01:00
XSetWMProtocols ( x11_display , x11_window , & wm_delete , 1 ) ;
2016-03-09 00:00:52 +01:00
2018-06-07 22:16:57 +02:00
im_active = false ;
im_position = Vector2 ( ) ;
2014-02-10 02:10:30 +01:00
if ( xim & & xim_style ) {
2021-05-04 16:00:45 +02:00
xic = XCreateIC ( xim , XNInputStyle , xim_style , XNClientWindow , x11_window , XNFocusWindow , x11_window , ( char * ) nullptr ) ;
if ( XGetICValues ( xic , XNFilterEvents , & im_event_mask , NULL ) ! = nullptr ) {
2017-06-27 11:26:43 +02:00
WARN_PRINT ( " XGetICValues couldn't obtain XNFilterEvents value " ) ;
XDestroyIC ( xic ) ;
2021-05-04 16:00:45 +02:00
xic = nullptr ;
2017-06-27 11:26:43 +02:00
}
if ( xic ) {
2018-06-07 22:16:57 +02:00
XUnsetICFocus ( xic ) ;
2017-06-27 11:26:43 +02:00
} else {
WARN_PRINT ( " XCreateIC couldn't create xic " ) ;
}
2014-02-10 02:10:30 +01:00
} else {
2021-05-04 16:00:45 +02:00
xic = nullptr ;
2014-02-10 02:10:30 +01:00
WARN_PRINT ( " XCreateIC couldn't create xic " ) ;
2016-03-09 00:00:52 +01:00
}
2014-02-10 02:10:30 +01:00
cursor_size = XcursorGetDefaultSize ( x11_display ) ;
cursor_theme = XcursorGetTheme ( x11_display ) ;
if ( ! cursor_theme ) {
2018-08-24 08:47:34 +02:00
print_verbose ( " XcursorGetTheme could not get cursor theme " ) ;
2017-03-05 16:44:50 +01:00
cursor_theme = " default " ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < CURSOR_MAX ; i + + ) {
cursors [ i ] = None ;
2021-05-04 16:00:45 +02:00
img [ i ] = nullptr ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
current_cursor = CURSOR_ARROW ;
2014-02-10 02:10:30 +01:00
2019-04-04 22:00:16 +02:00
for ( int i = 0 ; i < CURSOR_MAX ; i + + ) {
static const char * cursor_file [ ] = {
" left_ptr " ,
" xterm " ,
" hand2 " ,
" cross " ,
" watch " ,
" left_ptr_watch " ,
" fleur " ,
" hand1 " ,
" X_cursor " ,
" sb_v_double_arrow " ,
" sb_h_double_arrow " ,
" size_bdiag " ,
" size_fdiag " ,
" hand1 " ,
" sb_v_double_arrow " ,
" sb_h_double_arrow " ,
" question_arrow "
} ;
img [ i ] = XcursorLibraryLoadImage ( cursor_file [ i ] , cursor_theme , cursor_size ) ;
if ( img [ i ] ) {
cursors [ i ] = XcursorImageLoadCursor ( x11_display , img [ i ] ) ;
} else {
print_verbose ( " Failed loading custom cursor: " + String ( cursor_file [ i ] ) ) ;
2014-02-10 02:10:30 +01:00
}
}
{
2019-05-23 12:47:28 +02:00
// Creating an empty/transparent cursor
// Create 1x1 bitmap
Pixmap cursormask = XCreatePixmap ( x11_display ,
RootWindow ( x11_display , DefaultScreen ( x11_display ) ) , 1 , 1 , 1 ) ;
2014-02-10 02:10:30 +01:00
2019-05-23 12:47:28 +02:00
// Fill with zero
XGCValues xgc ;
2015-10-25 15:15:56 +01:00
xgc . function = GXclear ;
2019-05-23 12:47:28 +02:00
GC gc = XCreateGC ( x11_display , cursormask , GCFunction , & xgc ) ;
2014-02-10 02:10:30 +01:00
XFillRectangle ( x11_display , cursormask , gc , 0 , 0 , 1 , 1 ) ;
2019-05-23 12:47:28 +02:00
// Color value doesn't matter. Mask zero means no foreground or background will be drawn
XColor col = { } ;
Cursor cursor = XCreatePixmapCursor ( x11_display ,
cursormask , // source (using cursor mask as placeholder, since it'll all be ignored)
cursormask , // mask
2017-03-05 16:44:50 +01:00
& col , & col , 0 , 0 ) ;
2019-05-23 12:47:28 +02:00
2017-03-05 16:44:50 +01:00
XFreePixmap ( x11_display , cursormask ) ;
XFreeGC ( x11_display , gc ) ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
if ( cursor = = None ) {
ERR_PRINT ( " FAILED CREATING CURSOR " ) ;
}
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
null_cursor = cursor ;
2014-02-10 02:10:30 +01:00
}
set_cursor_shape ( CURSOR_BUSY ) ;
2016-05-28 21:35:42 +02:00
//Set Xdnd (drag & drop) support
Atom XdndAware = XInternAtom ( x11_display , " XdndAware " , False ) ;
2017-03-05 16:44:50 +01:00
Atom version = 5 ;
2021-02-03 16:08:37 +01:00
if ( XdndAware ! = None ) {
XChangeProperty ( x11_display , x11_window , XdndAware , XA_ATOM , 32 , PropModeReplace , ( unsigned char * ) & version , 1 ) ;
}
2016-05-28 21:35:42 +02:00
xdnd_enter = XInternAtom ( x11_display , " XdndEnter " , False ) ;
xdnd_position = XInternAtom ( x11_display , " XdndPosition " , False ) ;
xdnd_status = XInternAtom ( x11_display , " XdndStatus " , False ) ;
xdnd_action_copy = XInternAtom ( x11_display , " XdndActionCopy " , False ) ;
xdnd_drop = XInternAtom ( x11_display , " XdndDrop " , False ) ;
xdnd_finished = XInternAtom ( x11_display , " XdndFinished " , False ) ;
xdnd_selection = XInternAtom ( x11_display , " XdndSelection " , False ) ;
requested = None ;
2014-02-10 02:10:30 +01:00
visual_server - > init ( ) ;
2018-08-25 00:04:25 +02:00
AudioDriverManager : : initialize ( p_audio_driver ) ;
2017-03-05 16:44:50 +01:00
input = memnew ( InputDefault ) ;
2017-01-25 19:21:41 +01:00
window_has_focus = true ; // Set focus to true at init
2015-12-21 22:39:03 +01:00
# ifdef JOYDEV_ENABLED
2017-03-05 16:44:50 +01:00
joypad = memnew ( JoypadLinux ( input ) ) ;
2015-12-18 06:12:53 +01:00
# endif
2017-07-26 23:29:51 +02:00
power_manager = memnew ( PowerX11 ) ;
2017-10-24 21:35:28 +02:00
2019-06-04 10:21:29 +02:00
if ( p_desired . layered ) {
2017-12-10 19:38:26 +01:00
set_window_per_pixel_transparency_enabled ( true ) ;
}
2017-10-24 21:35:28 +02:00
XEvent xevent ;
2017-12-09 23:21:34 +01:00
while ( XPending ( x11_display ) > 0 ) {
XNextEvent ( x11_display , & xevent ) ;
if ( xevent . type = = ConfigureNotify ) {
_window_changed ( & xevent ) ;
}
2017-10-24 21:35:28 +02:00
}
2018-01-05 12:10:47 +01:00
2021-01-27 20:10:10 +01:00
events_thread . start ( _poll_events_thread , this ) ;
2020-09-25 18:16:39 +02:00
2018-09-09 22:13:50 +02:00
update_real_mouse_position ( ) ;
2018-01-05 12:10:47 +01:00
return OK ;
2014-02-10 02:10:30 +01:00
}
2015-10-25 15:15:56 +01:00
2018-08-18 00:59:26 +02:00
bool OS_X11 : : refresh_device_info ( ) {
int event_base , error_base ;
print_verbose ( " XInput: Refreshing devices. " ) ;
if ( ! XQueryExtension ( x11_display , " XInputExtension " , & xi . opcode , & event_base , & error_base ) ) {
print_verbose ( " XInput extension not available. Please upgrade your distribution. " ) ;
return false ;
}
int xi_major_query = XINPUT_CLIENT_VERSION_MAJOR ;
int xi_minor_query = XINPUT_CLIENT_VERSION_MINOR ;
if ( XIQueryVersion ( x11_display , & xi_major_query , & xi_minor_query ) ! = Success ) {
print_verbose ( vformat ( " XInput 2 not available (server supports %d.%d). " , xi_major_query , xi_minor_query ) ) ;
xi . opcode = 0 ;
return false ;
}
if ( xi_major_query < XINPUT_CLIENT_VERSION_MAJOR | | ( xi_major_query = = XINPUT_CLIENT_VERSION_MAJOR & & xi_minor_query < XINPUT_CLIENT_VERSION_MINOR ) ) {
print_verbose ( vformat ( " XInput %d.%d not available (server supports %d.%d). Touch input unavailable. " ,
XINPUT_CLIENT_VERSION_MAJOR , XINPUT_CLIENT_VERSION_MINOR , xi_major_query , xi_minor_query ) ) ;
}
xi . absolute_devices . clear ( ) ;
xi . touch_devices . clear ( ) ;
2022-06-18 13:27:02 +02:00
xi . pen_inverted_devices . clear ( ) ;
2018-08-18 00:59:26 +02:00
int dev_count ;
XIDeviceInfo * info = XIQueryDevice ( x11_display , XIAllDevices , & dev_count ) ;
for ( int i = 0 ; i < dev_count ; i + + ) {
XIDeviceInfo * dev = & info [ i ] ;
2021-05-05 12:44:11 +02:00
if ( ! dev - > enabled ) {
2018-08-18 00:59:26 +02:00
continue ;
2021-05-05 12:44:11 +02:00
}
2022-06-18 13:27:02 +02:00
if ( ! ( dev - > use = = XISlavePointer | | dev - > use = = XIFloatingSlave ) ) {
2018-08-18 00:59:26 +02:00
continue ;
2021-05-05 12:44:11 +02:00
}
2018-08-18 00:59:26 +02:00
bool direct_touch = false ;
bool absolute_mode = false ;
int resolution_x = 0 ;
int resolution_y = 0 ;
2020-04-10 12:41:41 +02:00
double abs_x_min = 0 ;
double abs_x_max = 0 ;
double abs_y_min = 0 ;
double abs_y_max = 0 ;
double pressure_min = 0 ;
double pressure_max = 0 ;
double tilt_x_min = 0 ;
double tilt_x_max = 0 ;
double tilt_y_min = 0 ;
double tilt_y_max = 0 ;
2018-08-18 00:59:26 +02:00
for ( int j = 0 ; j < dev - > num_classes ; j + + ) {
# ifdef TOUCH_ENABLED
if ( dev - > classes [ j ] - > type = = XITouchClass & & ( ( XITouchClassInfo * ) dev - > classes [ j ] ) - > mode = = XIDirectTouch ) {
direct_touch = true ;
}
# endif
if ( dev - > classes [ j ] - > type = = XIValuatorClass ) {
XIValuatorClassInfo * class_info = ( XIValuatorClassInfo * ) dev - > classes [ j ] ;
2018-12-13 21:32:11 +01:00
if ( class_info - > number = = VALUATOR_ABSX & & class_info - > mode = = XIModeAbsolute ) {
2018-08-18 00:59:26 +02:00
resolution_x = class_info - > resolution ;
2020-04-10 12:41:41 +02:00
abs_x_min = class_info - > min ;
2022-01-02 12:45:10 +01:00
abs_x_max = class_info - > max ;
2018-08-18 00:59:26 +02:00
absolute_mode = true ;
2018-12-13 21:32:11 +01:00
} else if ( class_info - > number = = VALUATOR_ABSY & & class_info - > mode = = XIModeAbsolute ) {
2018-08-18 00:59:26 +02:00
resolution_y = class_info - > resolution ;
2020-04-10 12:41:41 +02:00
abs_y_min = class_info - > min ;
abs_y_max = class_info - > max ;
2018-08-18 00:59:26 +02:00
absolute_mode = true ;
2018-12-13 21:32:11 +01:00
} else if ( class_info - > number = = VALUATOR_PRESSURE & & class_info - > mode = = XIModeAbsolute ) {
2020-04-10 12:41:41 +02:00
pressure_min = class_info - > min ;
pressure_max = class_info - > max ;
2018-12-13 21:32:11 +01:00
} else if ( class_info - > number = = VALUATOR_TILTX & & class_info - > mode = = XIModeAbsolute ) {
2020-04-10 12:41:41 +02:00
tilt_x_min = class_info - > min ;
tilt_x_max = class_info - > max ;
2018-12-13 21:32:11 +01:00
} else if ( class_info - > number = = VALUATOR_TILTY & & class_info - > mode = = XIModeAbsolute ) {
2022-01-02 12:45:10 +01:00
tilt_y_min = class_info - > min ;
tilt_y_max = class_info - > max ;
2018-08-18 00:59:26 +02:00
}
}
}
if ( direct_touch ) {
xi . touch_devices . push_back ( dev - > deviceid ) ;
print_verbose ( " XInput: Using touch device: " + String ( dev - > name ) ) ;
}
if ( absolute_mode ) {
// If no resolution was reported, use the min/max ranges.
if ( resolution_x < = 0 ) {
2020-04-10 12:41:41 +02:00
resolution_x = ( abs_x_max - abs_x_min ) * abs_resolution_range_mult ;
2018-08-18 00:59:26 +02:00
}
if ( resolution_y < = 0 ) {
2020-04-10 12:41:41 +02:00
resolution_y = ( abs_y_max - abs_y_min ) * abs_resolution_range_mult ;
2018-08-18 00:59:26 +02:00
}
xi . absolute_devices [ dev - > deviceid ] = Vector2 ( abs_resolution_mult / resolution_x , abs_resolution_mult / resolution_y ) ;
print_verbose ( " XInput: Absolute pointing device: " + String ( dev - > name ) ) ;
}
2018-12-13 21:32:11 +01:00
xi . pressure = 0 ;
2020-04-10 12:41:41 +02:00
xi . pen_pressure_range [ dev - > deviceid ] = Vector2 ( pressure_min , pressure_max ) ;
xi . pen_tilt_x_range [ dev - > deviceid ] = Vector2 ( tilt_x_min , tilt_x_max ) ;
xi . pen_tilt_y_range [ dev - > deviceid ] = Vector2 ( tilt_y_min , tilt_y_max ) ;
2022-07-20 00:13:35 +02:00
xi . pen_inverted_devices [ dev - > deviceid ] = String ( dev - > name ) . findn ( " eraser " ) > 0 ;
2018-08-18 00:59:26 +02:00
}
XIFreeDeviceInfo ( info ) ;
# ifdef TOUCH_ENABLED
if ( ! xi . touch_devices . size ( ) ) {
print_verbose ( " XInput: No touch devices found. " ) ;
}
# endif
return true ;
}
2017-06-27 11:26:43 +02:00
void OS_X11 : : xim_destroy_callback ( : : XIM im , : : XPointer client_data ,
: : XPointer call_data ) {
WARN_PRINT ( " Input method stopped " ) ;
OS_X11 * os = reinterpret_cast < OS_X11 * > ( client_data ) ;
2021-05-04 16:00:45 +02:00
os - > xim = nullptr ;
os - > xic = nullptr ;
2017-06-27 11:26:43 +02:00
}
2018-06-07 22:16:57 +02:00
void OS_X11 : : set_ime_active ( const bool p_active ) {
im_active = p_active ;
2020-09-25 18:16:39 +02:00
if ( ! xic ) {
2018-06-07 22:16:57 +02:00
return ;
2020-09-25 18:16:39 +02:00
}
2018-06-07 22:16:57 +02:00
2020-09-25 18:16:39 +02:00
// Block events polling while changing input focus
// because it triggers some event polling internally.
2018-06-07 22:16:57 +02:00
if ( p_active ) {
2020-09-25 18:16:39 +02:00
{
MutexLock mutex_lock ( events_mutex ) ;
XSetICFocus ( xic ) ;
}
2018-06-07 22:16:57 +02:00
set_ime_position ( im_position ) ;
} else {
2020-09-25 18:16:39 +02:00
MutexLock mutex_lock ( events_mutex ) ;
2018-06-07 22:16:57 +02:00
XUnsetICFocus ( xic ) ;
}
}
2017-06-25 17:50:45 +02:00
void OS_X11 : : set_ime_position ( const Point2 & p_pos ) {
2018-06-07 22:16:57 +02:00
im_position = p_pos ;
2021-05-05 12:44:11 +02:00
if ( ! xic ) {
2017-06-27 11:26:43 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-06-25 17:50:45 +02:00
2017-06-27 11:26:43 +02:00
: : XPoint spot ;
2017-06-25 17:50:45 +02:00
spot . x = short ( p_pos . x ) ;
spot . y = short ( p_pos . y ) ;
XVaNestedList preedit_attr = XVaCreateNestedList ( 0 , XNSpotLocation , & spot , NULL ) ;
2020-09-25 18:16:39 +02:00
{
// Block events polling during this call
// because it triggers some event polling internally.
MutexLock mutex_lock ( events_mutex ) ;
XSetICValues ( xic , XNPreeditAttributes , preedit_attr , NULL ) ;
}
2017-06-27 11:26:43 +02:00
XFree ( preedit_attr ) ;
}
2018-01-20 14:42:19 +01:00
String OS_X11 : : get_unique_id ( ) const {
static String machine_id ;
if ( machine_id . empty ( ) ) {
if ( FileAccess * f = FileAccess : : open ( " /etc/machine-id " , FileAccess : : READ ) ) {
while ( machine_id . empty ( ) & & ! f - > eof_reached ( ) ) {
machine_id = f - > get_line ( ) . strip_edges ( ) ;
}
f - > close ( ) ;
memdelete ( f ) ;
}
}
return machine_id ;
}
2022-02-15 22:25:51 +01:00
String OS_X11 : : get_processor_name ( ) const {
FileAccessRef f = FileAccess : : open ( " /proc/cpuinfo " , FileAccess : : READ ) ;
ERR_FAIL_COND_V_MSG ( ! f , " " , String ( " Couldn't open `/proc/cpuinfo` to get the CPU model name. Returning an empty string. " ) ) ;
while ( ! f - > eof_reached ( ) ) {
const String line = f - > get_line ( ) ;
if ( line . find ( " model name " ) ! = - 1 ) {
return line . split ( " : " ) [ 1 ] . strip_edges ( ) ;
}
}
ERR_FAIL_V_MSG ( " " , String ( " Couldn't get the CPU model name from `/proc/cpuinfo`. Returning an empty string. " ) ) ;
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : finalize ( ) {
2020-09-25 18:16:39 +02:00
events_thread_done = true ;
2021-01-27 20:10:10 +01:00
events_thread . wait_to_finish ( ) ;
2014-02-10 02:10:30 +01:00
2021-05-05 12:44:11 +02:00
if ( main_loop ) {
2014-02-10 02:10:30 +01:00
memdelete ( main_loop ) ;
2021-05-05 12:44:11 +02:00
}
2021-05-04 16:00:45 +02:00
main_loop = nullptr ;
2014-02-10 02:10:30 +01:00
2017-12-06 21:36:34 +01:00
/*
2017-01-14 12:26:56 +01:00
if ( debugger_connection_console ) {
memdelete ( debugger_connection_console ) ;
}
*/
2018-07-14 14:11:28 +02:00
# ifdef ALSAMIDI_ENABLED
driver_alsamidi . close ( ) ;
# endif
2014-02-10 02:10:30 +01:00
2022-05-23 14:02:12 +02:00
# ifdef SPEECHD_ENABLED
2023-05-22 15:41:09 +02:00
if ( tts ) {
memdelete ( tts ) ;
}
2022-05-23 14:02:12 +02:00
# endif
2016-01-05 23:35:54 +01:00
# ifdef JOYDEV_ENABLED
2017-01-08 21:05:51 +01:00
memdelete ( joypad ) ;
2017-11-29 21:01:26 +01:00
# endif
2018-08-18 00:59:26 +02:00
xi . touch_devices . clear ( ) ;
xi . state . clear ( ) ;
2015-12-31 14:25:21 +01:00
memdelete ( input ) ;
2019-07-24 19:57:59 +02:00
cursors_cache . clear ( ) ;
2014-02-10 02:10:30 +01:00
visual_server - > finish ( ) ;
memdelete ( visual_server ) ;
2016-10-03 21:33:42 +02:00
//memdelete(rasterizer);
2016-03-09 00:00:52 +01:00
2017-08-24 18:51:28 +02:00
memdelete ( power_manager ) ;
2021-05-05 12:44:11 +02:00
if ( xrandr_handle ) {
2016-06-09 18:54:06 +02:00
dlclose ( xrandr_handle ) ;
2021-05-05 12:44:11 +02:00
}
2016-06-09 18:54:06 +02:00
2020-09-23 13:43:51 +02:00
if ( ! OS : : get_singleton ( ) - > is_no_window_mode_enabled ( ) ) {
XUnmapWindow ( x11_display , x11_window ) ;
}
2017-03-05 16:44:50 +01:00
XDestroyWindow ( x11_display , x11_window ) ;
2015-10-25 15:15:56 +01:00
2017-10-13 00:18:04 +02:00
# if defined(OPENGL_ENABLED)
2014-02-10 02:10:30 +01:00
memdelete ( context_gl ) ;
# endif
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < CURSOR_MAX ; i + + ) {
2021-05-05 12:44:11 +02:00
if ( cursors [ i ] ! = None ) {
2017-03-05 16:44:50 +01:00
XFreeCursor ( x11_display , cursors [ i ] ) ;
2021-05-05 12:44:11 +02:00
}
if ( img [ i ] ! = nullptr ) {
2017-03-05 16:44:50 +01:00
XcursorImageDestroy ( img [ i ] ) ;
2021-05-05 12:44:11 +02:00
}
2016-03-09 00:00:52 +01:00
} ;
2015-10-25 15:15:56 +01:00
2017-06-27 11:26:43 +02:00
if ( xic ) {
XDestroyIC ( xic ) ;
}
if ( xim ) {
XCloseIM ( xim ) ;
}
2014-02-10 02:10:30 +01:00
XCloseDisplay ( x11_display ) ;
2021-05-05 12:44:11 +02:00
if ( xmbstring ) {
2014-02-10 02:10:30 +01:00
memfree ( xmbstring ) ;
2021-05-05 12:44:11 +02:00
}
2015-10-25 15:15:56 +01:00
2014-02-10 02:10:30 +01:00
args . clear ( ) ;
}
2021-09-24 14:07:44 +02:00
bool OS_X11 : : is_offscreen_gl_available ( ) const {
# if defined(OPENGL_ENABLED)
return context_gl - > is_offscreen_available ( ) ;
# else
return false ;
# endif
}
void OS_X11 : : set_offscreen_gl_current ( bool p_current ) {
# if defined(OPENGL_ENABLED)
if ( p_current ) {
return context_gl - > make_offscreen_current ( ) ;
} else {
return context_gl - > release_offscreen_current ( ) ;
}
# endif
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : set_mouse_mode ( MouseMode p_mode ) {
2021-05-05 12:44:11 +02:00
if ( p_mode = = mouse_mode ) {
2014-02-10 02:10:30 +01:00
return ;
2021-05-05 12:44:11 +02:00
}
2014-02-10 02:10:30 +01:00
2022-07-29 19:41:29 +02:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED | | mouse_mode = = MOUSE_MODE_CONFINED | | mouse_mode = = MOUSE_MODE_CONFINED_HIDDEN ) {
2014-02-10 02:10:30 +01:00
XUngrabPointer ( x11_display , CurrentTime ) ;
2021-05-05 12:44:11 +02:00
}
2017-01-25 19:21:41 +01:00
// The only modes that show a cursor are VISIBLE and CONFINED
bool showCursor = ( p_mode = = MOUSE_MODE_VISIBLE | | p_mode = = MOUSE_MODE_CONFINED ) ;
if ( showCursor ) {
2018-04-09 02:59:51 +02:00
XDefineCursor ( x11_display , x11_window , cursors [ current_cursor ] ) ; // show cursor
2017-01-25 19:21:41 +01:00
} else {
2017-03-05 16:44:50 +01:00
XDefineCursor ( x11_display , x11_window , null_cursor ) ; // hide cursor
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
mouse_mode = p_mode ;
2014-02-10 02:10:30 +01:00
2022-07-29 19:41:29 +02:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED | | mouse_mode = = MOUSE_MODE_CONFINED | | mouse_mode = = MOUSE_MODE_CONFINED_HIDDEN ) {
2018-08-18 00:59:26 +02:00
//flush pending motion events
flush_mouse_motion ( ) ;
2015-08-29 06:43:21 +02:00
2017-01-15 22:15:47 +01:00
if ( XGrabPointer (
2017-03-05 16:44:50 +01:00
x11_display , x11_window , True ,
ButtonPressMask | ButtonReleaseMask | PointerMotionMask ,
GrabModeAsync , GrabModeAsync , x11_window , None , CurrentTime ) ! = GrabSuccess ) {
2014-02-10 02:10:30 +01:00
ERR_PRINT ( " NO GRAB " ) ;
}
2018-09-04 15:11:37 +02:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
center . x = current_videomode . width / 2 ;
center . y = current_videomode . height / 2 ;
XWarpPointer ( x11_display , None , x11_window ,
0 , 0 , 0 , 0 , ( int ) center . x , ( int ) center . y ) ;
2014-02-10 02:10:30 +01:00
2018-09-04 15:11:37 +02:00
input - > set_mouse_position ( center ) ;
}
2015-08-29 06:43:21 +02:00
} else {
2017-03-05 16:44:50 +01:00
do_mouse_warp = false ;
2015-02-12 15:58:00 +01:00
}
2016-04-12 16:20:28 +02:00
XFlush ( x11_display ) ;
2014-02-10 02:10:30 +01:00
}
2017-09-10 15:37:49 +02:00
void OS_X11 : : warp_mouse_position ( const Point2 & p_to ) {
2017-03-05 16:44:50 +01:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
last_mouse_pos = p_to ;
2014-09-20 02:01:41 +02:00
} else {
2015-02-14 23:22:06 +01:00
/*XWindowAttributes xwa;
XGetWindowAttributes ( x11_display , x11_window , & xwa ) ;
printf ( " %d %d \n " , xwa . x , xwa . y ) ; needed ? */
2014-09-20 02:01:41 +02:00
XWarpPointer ( x11_display , None , x11_window ,
2017-03-05 16:44:50 +01:00
0 , 0 , 0 , 0 , ( int ) p_to . x , ( int ) p_to . y ) ;
2014-09-20 02:01:41 +02:00
}
}
2018-08-18 00:59:26 +02:00
void OS_X11 : : flush_mouse_motion ( ) {
2020-09-25 18:16:39 +02:00
// Block events polling while flushing motion events.
MutexLock mutex_lock ( events_mutex ) ;
for ( uint32_t event_index = 0 ; event_index < polled_events . size ( ) ; + + event_index ) {
XEvent & event = polled_events [ event_index ] ;
if ( XGetEventData ( x11_display , & event . xcookie ) & & event . xcookie . type = = GenericEvent & & event . xcookie . extension = = xi . opcode ) {
XIDeviceEvent * event_data = ( XIDeviceEvent * ) event . xcookie . data ;
if ( event_data - > evtype = = XI_RawMotion ) {
XFreeEventData ( x11_display , & event . xcookie ) ;
polled_events . remove ( event_index - - ) ;
continue ;
2018-08-18 00:59:26 +02:00
}
2020-09-25 18:16:39 +02:00
XFreeEventData ( x11_display , & event . xcookie ) ;
2018-08-18 00:59:26 +02:00
break ;
}
}
xi . relative_motion . x = 0 ;
xi . relative_motion . y = 0 ;
}
2014-02-10 02:10:30 +01:00
OS : : MouseMode OS_X11 : : get_mouse_mode ( ) const {
return mouse_mode ;
}
int OS_X11 : : get_mouse_button_state ( ) const {
return last_button_state ;
}
2017-03-29 17:29:38 +02:00
Point2 OS_X11 : : get_mouse_position ( ) const {
2014-02-10 02:10:30 +01:00
return last_mouse_pos ;
}
2017-12-10 19:38:26 +01:00
bool OS_X11 : : get_window_per_pixel_transparency_enabled ( ) const {
2021-05-05 12:44:11 +02:00
if ( ! is_layered_allowed ( ) ) {
2021-05-04 14:28:27 +02:00
return false ;
2021-05-05 12:44:11 +02:00
}
2017-12-10 19:38:26 +01:00
return layered_window ;
}
void OS_X11 : : set_window_per_pixel_transparency_enabled ( bool p_enabled ) {
2021-05-05 12:44:11 +02:00
if ( ! is_layered_allowed ( ) ) {
2021-05-04 14:28:27 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-12-10 19:38:26 +01:00
if ( layered_window ! = p_enabled ) {
if ( p_enabled ) {
layered_window = true ;
} else {
layered_window = false ;
}
}
}
2017-03-05 16:44:50 +01:00
void OS_X11 : : set_window_title ( const String & p_title ) {
XStoreName ( x11_display , x11_window , p_title . utf8 ( ) . get_data ( ) ) ;
2016-02-04 00:39:53 +01:00
Atom _net_wm_name = XInternAtom ( x11_display , " _NET_WM_NAME " , false ) ;
Atom utf8_string = XInternAtom ( x11_display , " UTF8_STRING " , false ) ;
2021-02-03 16:08:37 +01:00
if ( _net_wm_name ! = None & & utf8_string ! = None ) {
XChangeProperty ( x11_display , x11_window , _net_wm_name , utf8_string , 8 , PropModeReplace , ( unsigned char * ) p_title . utf8 ( ) . get_data ( ) , p_title . utf8 ( ) . length ( ) ) ;
}
2014-02-10 02:10:30 +01:00
}
2020-06-29 11:31:13 +02:00
void OS_X11 : : set_window_mouse_passthrough ( const PoolVector2Array & p_region ) {
int event_base , error_base ;
const Bool ext_okay = XShapeQueryExtension ( x11_display , & event_base , & error_base ) ;
if ( ext_okay ) {
Region region ;
if ( p_region . size ( ) = = 0 ) {
region = XCreateRegion ( ) ;
XRectangle rect ;
rect . x = 0 ;
rect . y = 0 ;
rect . width = get_real_window_size ( ) . x ;
rect . height = get_real_window_size ( ) . y ;
XUnionRectWithRegion ( & rect , region , region ) ;
} else {
XPoint * points = ( XPoint * ) memalloc ( sizeof ( XPoint ) * p_region . size ( ) ) ;
for ( int i = 0 ; i < p_region . size ( ) ; i + + ) {
points [ i ] . x = p_region [ i ] . x ;
points [ i ] . y = p_region [ i ] . y ;
}
region = XPolygonRegion ( points , p_region . size ( ) , EvenOddRule ) ;
memfree ( points ) ;
}
XShapeCombineRegion ( x11_display , x11_window , ShapeInput , 0 , 0 , region , ShapeSet ) ;
XDestroyRegion ( region ) ;
}
}
2017-03-05 16:44:50 +01:00
void OS_X11 : : set_video_mode ( const VideoMode & p_video_mode , int p_screen ) {
2014-02-10 02:10:30 +01:00
}
2015-10-25 18:36:27 +01:00
OS : : VideoMode OS_X11 : : get_video_mode ( int p_screen ) const {
2014-02-10 02:10:30 +01:00
return current_videomode ;
}
2017-03-05 16:44:50 +01:00
void OS_X11 : : get_fullscreen_mode_list ( List < VideoMode > * p_list , int p_screen ) const {
2014-02-10 02:10:30 +01:00
}
2015-01-10 14:50:31 +01:00
void OS_X11 : : set_wm_fullscreen ( bool p_enabled ) {
2018-02-16 21:49:17 +01:00
if ( p_enabled & & ! get_borderless_window ( ) ) {
// remove decorations if the window is not already borderless
Hints hints ;
Atom property ;
hints . flags = 2 ;
hints . decorations = 0 ;
property = XInternAtom ( x11_display , " _MOTIF_WM_HINTS " , True ) ;
2021-02-03 16:08:37 +01:00
if ( property ! = None ) {
XChangeProperty ( x11_display , x11_window , property , property , 32 , PropModeReplace , ( unsigned char * ) & hints , 5 ) ;
}
2018-02-16 21:49:17 +01:00
}
2017-07-12 19:20:29 +02:00
if ( p_enabled & & ! is_window_resizable ( ) ) {
// Set the window as resizable to prevent window managers to ignore the fullscreen state flag.
XSizeHints * xsh ;
xsh = XAllocSizeHints ( ) ;
xsh - > flags = 0L ;
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
XFree ( xsh ) ;
}
2018-02-21 17:30:55 +01:00
// Using EWMH -- Extended Window Manager Hints
2015-01-10 08:47:34 +01:00
XEvent xev ;
Atom wm_state = XInternAtom ( x11_display , " _NET_WM_STATE " , False ) ;
Atom wm_fullscreen = XInternAtom ( x11_display , " _NET_WM_STATE_FULLSCREEN " , False ) ;
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . xclient . window = x11_window ;
xev . xclient . message_type = wm_state ;
xev . xclient . format = 32 ;
2015-01-16 16:18:45 +01:00
xev . xclient . data . l [ 0 ] = p_enabled ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE ;
2015-01-10 08:47:34 +01:00
xev . xclient . data . l [ 1 ] = wm_fullscreen ;
xev . xclient . data . l [ 2 ] = 0 ;
2015-01-17 11:43:12 +01:00
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , & xev ) ;
2017-09-09 23:24:19 +02:00
// set bypass compositor hint
Atom bypass_compositor = XInternAtom ( x11_display , " _NET_WM_BYPASS_COMPOSITOR " , False ) ;
unsigned long compositing_disable_on = p_enabled ? 1 : 0 ;
2021-02-03 16:08:37 +01:00
if ( bypass_compositor ! = None ) {
XChangeProperty ( x11_display , x11_window , bypass_compositor , XA_CARDINAL , 32 , PropModeReplace , ( unsigned char * ) & compositing_disable_on , 1 ) ;
}
2017-09-09 23:24:19 +02:00
2017-07-12 19:20:29 +02:00
XFlush ( x11_display ) ;
2019-06-13 14:31:08 +02:00
if ( ! p_enabled ) {
2017-07-12 19:20:29 +02:00
// Reset the non-resizable flags if we un-set these before.
Size2 size = get_window_size ( ) ;
XSizeHints * xsh ;
xsh = XAllocSizeHints ( ) ;
2019-06-13 14:31:08 +02:00
if ( ! is_window_resizable ( ) ) {
xsh - > flags = PMinSize | PMaxSize ;
xsh - > min_width = size . x ;
xsh - > max_width = size . x ;
xsh - > min_height = size . y ;
xsh - > max_height = size . y ;
} else {
xsh - > flags = 0L ;
if ( min_size ! = Size2 ( ) ) {
xsh - > flags | = PMinSize ;
xsh - > min_width = min_size . x ;
xsh - > min_height = min_size . y ;
}
if ( max_size ! = Size2 ( ) ) {
xsh - > flags | = PMaxSize ;
xsh - > max_width = max_size . x ;
xsh - > max_height = max_size . y ;
}
}
2017-07-12 19:20:29 +02:00
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
XFree ( xsh ) ;
2017-09-10 06:41:34 +02:00
2019-06-11 11:07:48 +02:00
// put back or remove decorations according to the last set borderless state
2017-09-10 06:41:34 +02:00
Hints hints ;
Atom property ;
hints . flags = 2 ;
2019-06-11 11:07:48 +02:00
hints . decorations = current_videomode . borderless_window ? 0 : 1 ;
2017-09-10 06:41:34 +02:00
property = XInternAtom ( x11_display , " _MOTIF_WM_HINTS " , True ) ;
2021-02-03 16:08:37 +01:00
if ( property ! = None ) {
XChangeProperty ( x11_display , x11_window , property , property , 32 , PropModeReplace , ( unsigned char * ) & hints , 5 ) ;
}
2017-09-10 06:41:34 +02:00
}
2015-01-10 14:50:31 +01:00
}
2017-12-27 20:51:19 +01:00
void OS_X11 : : set_wm_above ( bool p_enabled ) {
Atom wm_state = XInternAtom ( x11_display , " _NET_WM_STATE " , False ) ;
Atom wm_above = XInternAtom ( x11_display , " _NET_WM_STATE_ABOVE " , False ) ;
XClientMessageEvent xev ;
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . window = x11_window ;
xev . message_type = wm_state ;
xev . format = 32 ;
xev . data . l [ 0 ] = p_enabled ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE ;
xev . data . l [ 1 ] = wm_above ;
xev . data . l [ 3 ] = 1 ;
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , ( XEvent * ) & xev ) ;
}
2015-01-11 11:52:42 +01:00
int OS_X11 : : get_screen_count ( ) const {
2015-01-16 16:18:45 +01:00
// Using Xinerama Extension
2015-01-13 14:01:24 +01:00
int event_base , error_base ;
const Bool ext_okay = XineramaQueryExtension ( x11_display , & event_base , & error_base ) ;
2021-05-05 12:44:11 +02:00
if ( ! ext_okay ) {
2021-05-04 14:28:27 +02:00
return 0 ;
2021-05-05 12:44:11 +02:00
}
2016-03-09 00:00:52 +01:00
2015-01-13 14:01:24 +01:00
int count ;
2017-03-05 16:44:50 +01:00
XineramaScreenInfo * xsi = XineramaQueryScreens ( x11_display , & count ) ;
2015-01-13 14:01:24 +01:00
XFree ( xsi ) ;
return count ;
2015-01-11 11:52:42 +01:00
}
2015-03-22 23:00:50 +01:00
int OS_X11 : : get_current_screen ( ) const {
2017-03-05 16:44:50 +01:00
int x , y ;
Window child ;
XTranslateCoordinates ( x11_display , x11_window , DefaultRootWindow ( x11_display ) , 0 , 0 , & x , & y , & child ) ;
2015-01-14 05:02:59 +01:00
int count = get_screen_count ( ) ;
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < count ; i + + ) {
2015-01-14 05:02:59 +01:00
Point2i pos = get_screen_position ( i ) ;
Size2i size = get_screen_size ( i ) ;
2021-05-05 12:44:11 +02:00
if ( ( x > = pos . x & & x < pos . x + size . width ) & & ( y > = pos . y & & y < pos . y + size . height ) ) {
2016-03-09 00:00:52 +01:00
return i ;
2021-05-05 12:44:11 +02:00
}
2015-01-14 05:02:59 +01:00
}
return 0 ;
}
2015-03-22 23:00:50 +01:00
void OS_X11 : : set_current_screen ( int p_screen ) {
2021-02-28 18:11:25 +01:00
if ( p_screen = = - 1 ) {
p_screen = get_current_screen ( ) ;
}
// Check if screen is valid
ERR_FAIL_INDEX ( p_screen , get_screen_count ( ) ) ;
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
if ( current_videomode . fullscreen ) {
2015-01-14 05:02:59 +01:00
Point2i position = get_screen_position ( p_screen ) ;
Size2i size = get_screen_size ( p_screen ) ;
2017-03-05 16:44:50 +01:00
XMoveResizeWindow ( x11_display , x11_window , position . x , position . y , size . x , size . y ) ;
} else {
if ( p_screen ! = get_current_screen ( ) ) {
2022-07-19 10:39:21 +02:00
Vector2 ofs = get_window_position ( ) - get_screen_position ( get_current_screen ( ) ) ;
set_window_position ( ofs + get_screen_position ( p_screen ) ) ;
2015-01-14 05:02:59 +01:00
}
}
}
2015-01-13 10:25:50 +01:00
Point2 OS_X11 : : get_screen_position ( int p_screen ) const {
2017-08-20 21:12:29 +02:00
if ( p_screen = = - 1 ) {
p_screen = get_current_screen ( ) ;
}
2015-01-16 16:18:45 +01:00
// Using Xinerama Extension
2015-01-13 14:01:24 +01:00
int event_base , error_base ;
const Bool ext_okay = XineramaQueryExtension ( x11_display , & event_base , & error_base ) ;
2017-03-05 16:44:50 +01:00
if ( ! ext_okay ) {
return Point2i ( 0 , 0 ) ;
2015-08-31 04:36:46 +02:00
}
2016-03-09 00:00:52 +01:00
2015-01-13 14:01:24 +01:00
int count ;
2017-03-05 16:44:50 +01:00
XineramaScreenInfo * xsi = XineramaQueryScreens ( x11_display , & count ) ;
2021-02-28 18:11:25 +01:00
// Check if screen is valid
2022-04-24 03:44:47 +02:00
if ( p_screen < 0 | | p_screen > = count ) {
XFree ( xsi ) ;
ERR_FAIL_V_MSG ( Point2i ( 0 , 0 ) , vformat ( " Index %d is out of bounds (count = %d) " , p_screen , count ) ) ;
}
2016-03-09 00:00:52 +01:00
2015-01-13 14:01:24 +01:00
Point2i position = Point2i ( xsi [ p_screen ] . x_org , xsi [ p_screen ] . y_org ) ;
2015-08-31 04:36:46 +02:00
2015-01-13 14:01:24 +01:00
XFree ( xsi ) ;
2015-08-31 04:36:46 +02:00
2015-01-13 14:01:24 +01:00
return position ;
2015-01-13 10:25:50 +01:00
}
2015-01-11 12:35:53 +01:00
Size2 OS_X11 : : get_screen_size ( int p_screen ) const {
2017-08-20 21:12:29 +02:00
if ( p_screen = = - 1 ) {
p_screen = get_current_screen ( ) ;
}
2015-01-16 16:18:45 +01:00
// Using Xinerama Extension
2015-01-13 14:01:24 +01:00
int event_base , error_base ;
const Bool ext_okay = XineramaQueryExtension ( x11_display , & event_base , & error_base ) ;
2021-05-05 12:44:11 +02:00
if ( ! ext_okay ) {
2021-05-04 14:28:27 +02:00
return Size2i ( 0 , 0 ) ;
2021-05-05 12:44:11 +02:00
}
2016-03-09 00:00:52 +01:00
2015-01-13 14:01:24 +01:00
int count ;
2017-03-05 16:44:50 +01:00
XineramaScreenInfo * xsi = XineramaQueryScreens ( x11_display , & count ) ;
2021-02-28 18:11:25 +01:00
// Check if screen is valid
2022-04-24 03:44:47 +02:00
if ( p_screen < 0 | | p_screen > = count ) {
XFree ( xsi ) ;
ERR_FAIL_V_MSG ( Size2i ( 0 , 0 ) , vformat ( " Index %d is out of bounds (count = %d) " , p_screen , count ) ) ;
}
2016-03-09 00:00:52 +01:00
2015-01-13 14:01:24 +01:00
Size2i size = Point2i ( xsi [ p_screen ] . width , xsi [ p_screen ] . height ) ;
XFree ( xsi ) ;
return size ;
2015-01-11 12:35:53 +01:00
}
2016-06-09 18:54:06 +02:00
int OS_X11 : : get_screen_dpi ( int p_screen ) const {
2017-08-20 21:12:29 +02:00
if ( p_screen = = - 1 ) {
p_screen = get_current_screen ( ) ;
}
2016-06-09 18:54:06 +02:00
//invalid screen?
ERR_FAIL_INDEX_V ( p_screen , get_screen_count ( ) , 0 ) ;
//Get physical monitor Dimensions through XRandR and calculate dpi
Size2 sc = get_screen_size ( p_screen ) ;
2016-06-12 15:29:02 +02:00
if ( xrandr_ext_ok ) {
2016-06-09 18:54:06 +02:00
int count = 0 ;
if ( xrr_get_monitors ) {
xrr_monitor_info * monitors = xrr_get_monitors ( x11_display , x11_window , true , & count ) ;
if ( p_screen < count ) {
2017-03-05 16:44:50 +01:00
double xdpi = sc . width / ( double ) monitors [ p_screen ] . mwidth * 25.4 ;
double ydpi = sc . height / ( double ) monitors [ p_screen ] . mheight * 25.4 ;
2016-06-12 15:29:02 +02:00
xrr_free_monitors ( monitors ) ;
2016-06-09 18:54:06 +02:00
return ( xdpi + ydpi ) / 2 ;
}
2016-06-12 15:29:02 +02:00
xrr_free_monitors ( monitors ) ;
2017-03-05 16:44:50 +01:00
} else if ( p_screen = = 0 ) {
2016-06-09 18:54:06 +02:00
XRRScreenSize * sizes = XRRSizes ( x11_display , 0 , & count ) ;
if ( sizes ) {
2017-03-05 16:44:50 +01:00
double xdpi = sc . width / ( double ) sizes [ 0 ] . mwidth * 25.4 ;
double ydpi = sc . height / ( double ) sizes [ 0 ] . mheight * 25.4 ;
2016-06-09 18:54:06 +02:00
return ( xdpi + ydpi ) / 2 ;
}
}
}
2017-03-05 16:44:50 +01:00
int width_mm = DisplayWidthMM ( x11_display , p_screen ) ;
2016-06-09 18:54:06 +02:00
int height_mm = DisplayHeightMM ( x11_display , p_screen ) ;
2017-03-05 16:44:50 +01:00
double xdpi = ( width_mm ? sc . width / ( double ) width_mm * 25.4 : 0 ) ;
double ydpi = ( height_mm ? sc . height / ( double ) height_mm * 25.4 : 0 ) ;
2021-05-05 12:44:11 +02:00
if ( xdpi | | ydpi ) {
2017-03-05 16:44:50 +01:00
return ( xdpi + ydpi ) / ( xdpi & & ydpi ? 2 : 1 ) ;
2021-05-05 12:44:11 +02:00
}
2016-06-09 18:54:06 +02:00
//could not get dpi
return 96 ;
}
2022-03-06 00:34:56 +01:00
float OS_X11 : : get_screen_refresh_rate ( int p_screen ) const {
if ( p_screen = = - 1 ) {
p_screen = get_current_screen ( ) ;
}
//invalid screen?
ERR_FAIL_INDEX_V ( p_screen , get_screen_count ( ) , OS : : get_singleton ( ) - > SCREEN_REFRESH_RATE_FALLBACK ) ;
//Use xrandr to get screen refresh rate.
if ( xrandr_ext_ok ) {
XRRScreenResources * screen_info = XRRGetScreenResources ( x11_display , x11_window ) ;
if ( screen_info ) {
RRMode current_mode = 0 ;
xrr_monitor_info * monitors = nullptr ;
if ( xrr_get_monitors ) {
int count = 0 ;
monitors = xrr_get_monitors ( x11_display , x11_window , true , & count ) ;
ERR_FAIL_INDEX_V ( p_screen , count , OS : : get_singleton ( ) - > SCREEN_REFRESH_RATE_FALLBACK ) ;
} else {
ERR_PRINT ( " An error occurred while trying to get the screen refresh rate. " ) ;
return OS : : get_singleton ( ) - > SCREEN_REFRESH_RATE_FALLBACK ;
}
bool found_active_mode = false ;
for ( int crtc = 0 ; crtc < screen_info - > ncrtc ; crtc + + ) { // Loop through outputs to find which one is currently outputting.
XRRCrtcInfo * monitor_info = XRRGetCrtcInfo ( x11_display , screen_info , screen_info - > crtcs [ crtc ] ) ;
if ( monitor_info - > x ! = monitors [ p_screen ] . x | | monitor_info - > y ! = monitors [ p_screen ] . y ) { // If X and Y aren't the same as the monitor we're looking for, this isn't the right monitor. Continue.
continue ;
}
if ( monitor_info - > mode ! = None ) {
current_mode = monitor_info - > mode ;
found_active_mode = true ;
break ;
}
}
if ( found_active_mode ) {
for ( int mode = 0 ; mode < screen_info - > nmode ; mode + + ) {
XRRModeInfo m_info = screen_info - > modes [ mode ] ;
if ( m_info . id = = current_mode ) {
// Snap to nearest 0.01 to stay consistent with other platforms.
return Math : : stepify ( ( float ) m_info . dotClock / ( ( float ) m_info . hTotal * ( float ) m_info . vTotal ) , 0.01 ) ;
}
}
}
ERR_PRINT ( " An error occurred while trying to get the screen refresh rate. " ) ; // We should have returned the refresh rate by now. An error must have occurred.
return OS : : get_singleton ( ) - > SCREEN_REFRESH_RATE_FALLBACK ;
} else {
ERR_PRINT ( " An error occurred while trying to get the screen refresh rate. " ) ;
return OS : : get_singleton ( ) - > SCREEN_REFRESH_RATE_FALLBACK ;
}
}
ERR_PRINT ( " An error occurred while trying to get the screen refresh rate. " ) ;
return OS : : get_singleton ( ) - > SCREEN_REFRESH_RATE_FALLBACK ;
}
2015-01-11 08:47:27 +01:00
Point2 OS_X11 : : get_window_position ( ) const {
2017-03-05 16:44:50 +01:00
int x , y ;
2015-01-11 08:47:27 +01:00
Window child ;
2017-03-05 16:44:50 +01:00
XTranslateCoordinates ( x11_display , x11_window , DefaultRootWindow ( x11_display ) , 0 , 0 , & x , & y , & child ) ;
2019-03-12 18:09:16 +01:00
return Point2i ( x , y ) ;
2015-01-11 08:47:27 +01:00
}
2015-01-10 18:07:23 +01:00
2017-03-05 16:44:50 +01:00
void OS_X11 : : set_window_position ( const Point2 & p_position ) {
2019-03-12 18:09:16 +01:00
int x = 0 ;
int y = 0 ;
2019-06-26 15:08:25 +02:00
if ( ! get_borderless_window ( ) ) {
2019-03-12 18:09:16 +01:00
//exclude window decorations
XSync ( x11_display , False ) ;
Atom prop = XInternAtom ( x11_display , " _NET_FRAME_EXTENTS " , True ) ;
2019-05-09 18:12:31 +02:00
if ( prop ! = None ) {
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
2021-05-04 16:00:45 +02:00
unsigned char * data = nullptr ;
2019-05-09 18:12:31 +02:00
if ( XGetWindowProperty ( x11_display , x11_window , prop , 0 , 4 , False , AnyPropertyType , & type , & format , & len , & remaining , & data ) = = Success ) {
if ( format = = 32 & & len = = 4 ) {
long * extents = ( long * ) data ;
x = extents [ 0 ] ;
y = extents [ 2 ] ;
}
XFree ( data ) ;
2019-05-01 09:49:10 +02:00
}
2019-03-12 18:09:16 +01:00
}
}
XMoveWindow ( x11_display , x11_window , p_position . x - x , p_position . y - y ) ;
2018-09-09 22:13:50 +02:00
update_real_mouse_position ( ) ;
2015-01-11 08:47:27 +01:00
}
2015-01-10 14:50:31 +01:00
2015-01-11 10:36:56 +01:00
Size2 OS_X11 : : get_window_size ( ) const {
2017-01-30 17:25:48 +01:00
// Use current_videomode width and height instead of XGetWindowAttributes
// since right after a XResizeWindow the attributes may not be updated yet
return Size2i ( current_videomode . width , current_videomode . height ) ;
2015-01-11 10:36:56 +01:00
}
2018-02-12 18:17:29 +01:00
Size2 OS_X11 : : get_real_window_size ( ) const {
XWindowAttributes xwa ;
XSync ( x11_display , False ) ;
XGetWindowAttributes ( x11_display , x11_window , & xwa ) ;
int w = xwa . width ;
int h = xwa . height ;
Atom prop = XInternAtom ( x11_display , " _NET_FRAME_EXTENTS " , True ) ;
2019-05-09 18:12:31 +02:00
if ( prop ! = None ) {
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
2021-05-04 16:00:45 +02:00
unsigned char * data = nullptr ;
2019-05-09 18:12:31 +02:00
if ( XGetWindowProperty ( x11_display , x11_window , prop , 0 , 4 , False , AnyPropertyType , & type , & format , & len , & remaining , & data ) = = Success ) {
if ( format = = 32 & & len = = 4 ) {
long * extents = ( long * ) data ;
w + = extents [ 0 ] + extents [ 1 ] ; // left, right
h + = extents [ 2 ] + extents [ 3 ] ; // top, bottom
}
XFree ( data ) ;
2019-05-01 09:49:10 +02:00
}
2018-02-12 18:17:29 +01:00
}
return Size2 ( w , h ) ;
}
2019-06-13 14:31:08 +02:00
Size2 OS_X11 : : get_max_window_size ( ) const {
return max_size ;
}
Size2 OS_X11 : : get_min_window_size ( ) const {
return min_size ;
}
void OS_X11 : : set_min_window_size ( const Size2 p_size ) {
if ( ( p_size ! = Size2 ( ) ) & & ( max_size ! = Size2 ( ) ) & & ( ( p_size . x > max_size . x ) | | ( p_size . y > max_size . y ) ) ) {
2019-07-30 14:50:52 +02:00
ERR_PRINT ( " Minimum window size can't be larger than maximum window size! " ) ;
2019-06-13 14:31:08 +02:00
return ;
}
min_size = p_size ;
if ( is_window_resizable ( ) ) {
XSizeHints * xsh ;
xsh = XAllocSizeHints ( ) ;
xsh - > flags = 0L ;
if ( min_size ! = Size2 ( ) ) {
xsh - > flags | = PMinSize ;
xsh - > min_width = min_size . x ;
xsh - > min_height = min_size . y ;
}
if ( max_size ! = Size2 ( ) ) {
xsh - > flags | = PMaxSize ;
xsh - > max_width = max_size . x ;
xsh - > max_height = max_size . y ;
}
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
XFree ( xsh ) ;
XFlush ( x11_display ) ;
}
}
void OS_X11 : : set_max_window_size ( const Size2 p_size ) {
if ( ( p_size ! = Size2 ( ) ) & & ( ( p_size . x < min_size . x ) | | ( p_size . y < min_size . y ) ) ) {
2019-07-30 14:50:52 +02:00
ERR_PRINT ( " Maximum window size can't be smaller than minimum window size! " ) ;
2019-06-13 14:31:08 +02:00
return ;
}
max_size = p_size ;
if ( is_window_resizable ( ) ) {
XSizeHints * xsh ;
xsh = XAllocSizeHints ( ) ;
xsh - > flags = 0L ;
if ( min_size ! = Size2 ( ) ) {
xsh - > flags | = PMinSize ;
xsh - > min_width = min_size . x ;
xsh - > min_height = min_size . y ;
}
if ( max_size ! = Size2 ( ) ) {
xsh - > flags | = PMaxSize ;
xsh - > max_width = max_size . x ;
xsh - > max_height = max_size . y ;
}
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
XFree ( xsh ) ;
XFlush ( x11_display ) ;
}
}
2015-01-11 10:36:56 +01:00
void OS_X11 : : set_window_size ( const Size2 p_size ) {
2021-05-05 12:44:11 +02:00
if ( current_videomode . width = = p_size . width & & current_videomode . height = = p_size . height ) {
2018-09-10 00:08:21 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2018-09-10 00:08:21 +02:00
XWindowAttributes xwa ;
XSync ( x11_display , False ) ;
XGetWindowAttributes ( x11_display , x11_window , & xwa ) ;
int old_w = xwa . width ;
int old_h = xwa . height ;
2021-03-01 13:19:09 +01:00
Size2 size = p_size ;
2022-05-05 22:53:30 +02:00
ERR_FAIL_COND ( Math : : is_nan ( size . x ) | | Math : : is_nan ( size . y ) ) ;
2021-03-01 13:19:09 +01:00
size . x = MAX ( 1 , size . x ) ;
size . y = MAX ( 1 , size . y ) ;
2017-01-30 17:25:48 +01:00
// If window resizable is disabled we need to update the attributes first
2019-06-13 14:31:08 +02:00
XSizeHints * xsh ;
xsh = XAllocSizeHints ( ) ;
2018-10-06 22:20:41 +02:00
if ( ! is_window_resizable ( ) ) {
2017-01-30 17:25:48 +01:00
xsh - > flags = PMinSize | PMaxSize ;
2021-03-01 13:19:09 +01:00
xsh - > min_width = size . x ;
xsh - > max_width = size . x ;
xsh - > min_height = size . y ;
xsh - > max_height = size . y ;
2019-06-13 14:31:08 +02:00
} else {
xsh - > flags = 0L ;
if ( min_size ! = Size2 ( ) ) {
xsh - > flags | = PMinSize ;
xsh - > min_width = min_size . x ;
xsh - > min_height = min_size . y ;
}
if ( max_size ! = Size2 ( ) ) {
xsh - > flags | = PMaxSize ;
xsh - > max_width = max_size . x ;
xsh - > max_height = max_size . y ;
}
2017-01-30 17:25:48 +01:00
}
2019-06-13 14:31:08 +02:00
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
XFree ( xsh ) ;
2017-01-30 17:25:48 +01:00
// Resize the window
2021-03-01 13:19:09 +01:00
XResizeWindow ( x11_display , x11_window , size . x , size . y ) ;
2017-01-30 17:25:48 +01:00
// Update our videomode width and height
2021-03-01 13:19:09 +01:00
current_videomode . width = size . x ;
current_videomode . height = size . y ;
2018-09-10 00:08:21 +02:00
for ( int timeout = 0 ; timeout < 50 ; + + timeout ) {
XSync ( x11_display , False ) ;
XGetWindowAttributes ( x11_display , x11_window , & xwa ) ;
2021-05-05 12:44:11 +02:00
if ( old_w ! = xwa . width | | old_h ! = xwa . height ) {
2018-09-10 00:08:21 +02:00
break ;
2021-05-05 12:44:11 +02:00
}
2018-09-10 00:08:21 +02:00
usleep ( 10000 ) ;
}
2015-01-11 10:36:56 +01:00
}
2015-03-22 23:00:50 +01:00
void OS_X11 : : set_window_fullscreen ( bool p_enabled ) {
2021-05-05 12:44:11 +02:00
if ( current_videomode . fullscreen = = p_enabled ) {
2017-12-27 20:51:19 +01:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-12-27 20:51:19 +01:00
2021-05-05 12:44:11 +02:00
if ( layered_window ) {
2017-12-10 19:38:26 +01:00
set_window_per_pixel_transparency_enabled ( false ) ;
2021-05-05 12:44:11 +02:00
}
2017-12-10 19:38:26 +01:00
2017-12-27 20:51:19 +01:00
if ( p_enabled & & current_videomode . always_on_top ) {
// Fullscreen + Always-on-top requires a maximized window on some window managers (Metacity)
set_window_maximized ( true ) ;
}
2015-01-17 11:43:12 +01:00
set_wm_fullscreen ( p_enabled ) ;
2020-02-03 15:15:24 +01:00
if ( ! p_enabled & & current_videomode . always_on_top ) {
2017-12-27 20:51:19 +01:00
// Restore
set_window_maximized ( false ) ;
}
2020-02-03 16:14:41 +01:00
if ( ! p_enabled ) {
set_window_position ( last_position_before_fs ) ;
} else {
last_position_before_fs = get_window_position ( ) ;
}
2015-01-17 11:43:12 +01:00
current_videomode . fullscreen = p_enabled ;
2015-01-10 08:47:34 +01:00
}
2015-03-22 23:00:50 +01:00
bool OS_X11 : : is_window_fullscreen ( ) const {
2015-01-10 09:01:01 +01:00
return current_videomode . fullscreen ;
2015-01-10 08:47:34 +01:00
}
2015-01-15 14:50:23 +01:00
2015-03-22 23:00:50 +01:00
void OS_X11 : : set_window_resizable ( bool p_enabled ) {
2019-06-13 14:31:08 +02:00
XSizeHints * xsh ;
2015-01-17 11:43:12 +01:00
xsh = XAllocSizeHints ( ) ;
2017-03-05 16:44:50 +01:00
if ( ! p_enabled ) {
2019-06-13 14:31:08 +02:00
Size2 size = get_window_size ( ) ;
xsh - > flags = PMinSize | PMaxSize ;
2017-01-30 17:25:48 +01:00
xsh - > min_width = size . x ;
xsh - > max_width = size . x ;
xsh - > min_height = size . y ;
xsh - > max_height = size . y ;
2019-06-13 14:31:08 +02:00
} else {
xsh - > flags = 0L ;
if ( min_size ! = Size2 ( ) ) {
xsh - > flags | = PMinSize ;
xsh - > min_width = min_size . x ;
xsh - > min_height = min_size . y ;
}
if ( max_size ! = Size2 ( ) ) {
xsh - > flags | = PMaxSize ;
xsh - > max_width = max_size . x ;
xsh - > max_height = max_size . y ;
}
2015-01-15 14:50:23 +01:00
}
2019-06-13 14:31:08 +02:00
2015-01-17 11:43:12 +01:00
XSetWMNormalHints ( x11_display , x11_window , xsh ) ;
XFree ( xsh ) ;
2019-06-13 14:31:08 +02:00
2015-01-17 11:43:12 +01:00
current_videomode . resizable = p_enabled ;
2019-06-13 14:31:08 +02:00
XFlush ( x11_display ) ;
2015-01-15 14:50:23 +01:00
}
2015-03-22 23:00:50 +01:00
bool OS_X11 : : is_window_resizable ( ) const {
2015-01-15 14:50:23 +01:00
return current_videomode . resizable ;
}
2015-01-16 16:18:45 +01:00
2015-03-22 23:00:50 +01:00
void OS_X11 : : set_window_minimized ( bool p_enabled ) {
2020-11-18 00:33:39 +01:00
if ( is_no_window_mode_enabled ( ) ) {
return ;
}
2016-07-21 21:11:34 +02:00
// Using ICCCM -- Inter-Client Communication Conventions Manual
XEvent xev ;
Atom wm_change = XInternAtom ( x11_display , " WM_CHANGE_STATE " , False ) ;
2015-01-16 16:18:45 +01:00
2016-07-21 21:11:34 +02:00
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . xclient . window = x11_window ;
xev . xclient . message_type = wm_change ;
xev . xclient . format = 32 ;
xev . xclient . data . l [ 0 ] = p_enabled ? WM_IconicState : WM_NormalState ;
2015-01-16 16:18:45 +01:00
2016-07-21 21:11:34 +02:00
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , & xev ) ;
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
Atom wm_state = XInternAtom ( x11_display , " _NET_WM_STATE " , False ) ;
Atom wm_hidden = XInternAtom ( x11_display , " _NET_WM_STATE_HIDDEN " , False ) ;
2015-01-16 18:36:07 +01:00
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . xclient . window = x11_window ;
xev . xclient . message_type = wm_state ;
xev . xclient . format = 32 ;
xev . xclient . data . l [ 0 ] = _NET_WM_STATE_ADD ;
xev . xclient . data . l [ 1 ] = wm_hidden ;
2016-03-09 00:00:52 +01:00
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , & xev ) ;
2015-01-16 16:18:45 +01:00
}
2015-03-22 23:00:50 +01:00
bool OS_X11 : : is_window_minimized ( ) const {
2015-01-16 16:18:45 +01:00
// Using ICCCM -- Inter-Client Communication Conventions Manual
2017-03-05 16:44:50 +01:00
Atom property = XInternAtom ( x11_display , " WM_STATE " , True ) ;
2021-02-03 16:08:37 +01:00
if ( property = = None ) {
return false ;
}
2017-03-05 16:44:50 +01:00
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
2021-05-04 16:00:45 +02:00
unsigned char * data = nullptr ;
2020-06-29 13:02:34 +02:00
bool retval = false ;
2017-03-05 16:44:50 +01:00
int result = XGetWindowProperty (
x11_display ,
x11_window ,
property ,
0 ,
32 ,
False ,
AnyPropertyType ,
& type ,
& format ,
& len ,
& remaining ,
& data ) ;
if ( result = = Success ) {
long * state = ( long * ) data ;
2020-06-29 13:02:34 +02:00
if ( state [ 0 ] = = WM_IconicState ) {
retval = true ;
}
XFree ( data ) ;
2015-01-16 16:18:45 +01:00
}
2020-06-29 13:02:34 +02:00
return retval ;
2015-01-16 16:18:45 +01:00
}
2015-03-22 23:00:50 +01:00
void OS_X11 : : set_window_maximized ( bool p_enabled ) {
2020-11-18 00:33:39 +01:00
if ( is_no_window_mode_enabled ( ) ) {
return ;
}
2021-05-05 12:44:11 +02:00
if ( is_window_maximized ( ) = = p_enabled ) {
2017-10-24 21:35:28 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-10-24 21:35:28 +02:00
2016-03-09 00:00:52 +01:00
// Using EWMH -- Extended Window Manager Hints
2015-01-16 16:18:45 +01:00
XEvent xev ;
Atom wm_state = XInternAtom ( x11_display , " _NET_WM_STATE " , False ) ;
Atom wm_max_horz = XInternAtom ( x11_display , " _NET_WM_STATE_MAXIMIZED_HORZ " , False ) ;
Atom wm_max_vert = XInternAtom ( x11_display , " _NET_WM_STATE_MAXIMIZED_VERT " , False ) ;
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . xclient . window = x11_window ;
xev . xclient . message_type = wm_state ;
xev . xclient . format = 32 ;
xev . xclient . data . l [ 0 ] = p_enabled ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE ;
xev . xclient . data . l [ 1 ] = wm_max_horz ;
xev . xclient . data . l [ 2 ] = wm_max_vert ;
2015-01-16 18:36:07 +01:00
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , & xev ) ;
2016-01-03 22:52:42 +01:00
2019-08-10 21:09:21 +02:00
if ( p_enabled & & is_window_maximize_allowed ( ) ) {
// Wait for effective resizing (so the GLX context is too).
// Give up after 0.5s, it's not going to happen on this WM.
// https://github.com/godotengine/godot/issues/19978
for ( int attempt = 0 ; ! is_window_maximized ( ) & & attempt < 50 ; attempt + + ) {
usleep ( 10000 ) ;
2017-12-27 11:25:57 +01:00
}
2017-12-24 00:59:51 +01:00
}
2015-01-16 16:18:45 +01:00
maximized = p_enabled ;
}
2020-06-29 13:02:34 +02:00
// Just a helper to reduce code duplication in `is_window_maximize_allowed`
// and `is_window_maximized`.
bool OS_X11 : : window_maximize_check ( const char * p_atom_name ) const {
Atom property = XInternAtom ( x11_display , p_atom_name , False ) ;
2017-12-27 11:25:57 +01:00
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
2021-05-04 16:00:45 +02:00
unsigned char * data = nullptr ;
2020-06-29 13:02:34 +02:00
bool retval = false ;
2017-12-27 11:25:57 +01:00
2021-02-03 16:08:37 +01:00
if ( property = = None ) {
return false ;
}
2017-12-27 11:25:57 +01:00
int result = XGetWindowProperty (
x11_display ,
x11_window ,
property ,
0 ,
1024 ,
False ,
XA_ATOM ,
& type ,
& format ,
& len ,
& remaining ,
& data ) ;
if ( result = = Success ) {
Atom * atoms = ( Atom * ) data ;
2022-03-31 23:10:32 +02:00
Atom wm_act_max_horz ;
Atom wm_act_max_vert ;
if ( strcmp ( p_atom_name , " _NET_WM_STATE " ) = = 0 ) {
wm_act_max_horz = XInternAtom ( x11_display , " _NET_WM_STATE_MAXIMIZED_HORZ " , False ) ;
wm_act_max_vert = XInternAtom ( x11_display , " _NET_WM_STATE_MAXIMIZED_VERT " , False ) ;
} else {
wm_act_max_horz = XInternAtom ( x11_display , " _NET_WM_ACTION_MAXIMIZE_HORZ " , False ) ;
wm_act_max_vert = XInternAtom ( x11_display , " _NET_WM_ACTION_MAXIMIZE_VERT " , False ) ;
}
2017-12-27 11:25:57 +01:00
bool found_wm_act_max_horz = false ;
bool found_wm_act_max_vert = false ;
2019-09-22 18:45:08 +02:00
for ( uint64_t i = 0 ; i < len ; i + + ) {
2021-05-05 12:44:11 +02:00
if ( atoms [ i ] = = wm_act_max_horz ) {
2017-12-27 11:25:57 +01:00
found_wm_act_max_horz = true ;
2021-05-05 12:44:11 +02:00
}
if ( atoms [ i ] = = wm_act_max_vert ) {
2017-12-27 11:25:57 +01:00
found_wm_act_max_vert = true ;
2021-05-05 12:44:11 +02:00
}
2017-12-27 11:25:57 +01:00
2020-06-29 13:02:34 +02:00
if ( found_wm_act_max_horz | | found_wm_act_max_vert ) {
2018-02-28 21:55:13 +01:00
retval = true ;
break ;
}
2015-01-16 16:18:45 +01:00
}
2020-06-29 13:02:34 +02:00
XFree ( data ) ;
2015-01-16 16:18:45 +01:00
}
2018-02-28 21:55:13 +01:00
return retval ;
2015-01-16 16:18:45 +01:00
}
2015-03-22 23:00:50 +01:00
2022-06-30 03:55:40 +02:00
bool OS_X11 : : window_fullscreen_check ( ) const {
// Using EWMH -- Extended Window Manager Hints
Atom property = XInternAtom ( x11_display , " _NET_WM_STATE " , False ) ;
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
unsigned char * data = nullptr ;
bool retval = false ;
if ( property = = None ) {
return retval ;
}
int result = XGetWindowProperty (
x11_display ,
x11_window ,
property ,
0 ,
1024 ,
False ,
XA_ATOM ,
& type ,
& format ,
& len ,
& remaining ,
& data ) ;
if ( result = = Success ) {
Atom * atoms = ( Atom * ) data ;
Atom wm_fullscreen = XInternAtom ( x11_display , " _NET_WM_STATE_FULLSCREEN " , False ) ;
for ( uint64_t i = 0 ; i < len ; i + + ) {
if ( atoms [ i ] = = wm_fullscreen ) {
retval = true ;
break ;
}
}
XFree ( data ) ;
}
return retval ;
}
2020-06-29 13:02:34 +02:00
bool OS_X11 : : is_window_maximize_allowed ( ) const {
return window_maximize_check ( " _NET_WM_ALLOWED_ACTIONS " ) ;
}
bool OS_X11 : : is_window_maximized ( ) const {
// Using EWMH -- Extended Window Manager Hints
return window_maximize_check ( " _NET_WM_STATE " ) ;
}
2017-12-27 20:51:19 +01:00
void OS_X11 : : set_window_always_on_top ( bool p_enabled ) {
2021-05-05 12:44:11 +02:00
if ( is_window_always_on_top ( ) = = p_enabled ) {
2017-12-27 20:51:19 +01:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-12-27 20:51:19 +01:00
if ( p_enabled & & current_videomode . fullscreen ) {
// Fullscreen + Always-on-top requires a maximized window on some window managers (Metacity)
set_window_maximized ( true ) ;
}
set_wm_above ( p_enabled ) ;
if ( ! p_enabled & & ! current_videomode . fullscreen ) {
// Restore
set_window_maximized ( false ) ;
}
current_videomode . always_on_top = p_enabled ;
}
bool OS_X11 : : is_window_always_on_top ( ) const {
return current_videomode . always_on_top ;
}
2019-11-28 13:41:07 +01:00
bool OS_X11 : : is_window_focused ( ) const {
return window_focused ;
}
2017-12-14 19:15:46 +01:00
void OS_X11 : : set_borderless_window ( bool p_borderless ) {
2021-05-05 12:44:11 +02:00
if ( get_borderless_window ( ) = = p_borderless ) {
2017-07-05 17:19:24 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-07-05 17:19:24 +02:00
current_videomode . borderless_window = p_borderless ;
Hints hints ;
Atom property ;
hints . flags = 2 ;
hints . decorations = current_videomode . borderless_window ? 0 : 1 ;
property = XInternAtom ( x11_display , " _MOTIF_WM_HINTS " , True ) ;
2021-02-03 16:08:37 +01:00
if ( property ! = None ) {
XChangeProperty ( x11_display , x11_window , property , property , 32 , PropModeReplace , ( unsigned char * ) & hints , 5 ) ;
}
2018-05-23 21:25:41 +02:00
// Preserve window size
set_window_size ( Size2 ( current_videomode . width , current_videomode . height ) ) ;
2017-07-05 17:19:24 +02:00
}
bool OS_X11 : : get_borderless_window ( ) {
2019-06-11 11:07:48 +02:00
bool borderless = current_videomode . borderless_window ;
Atom prop = XInternAtom ( x11_display , " _MOTIF_WM_HINTS " , True ) ;
if ( prop ! = None ) {
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
2021-05-04 16:00:45 +02:00
unsigned char * data = nullptr ;
2019-06-11 11:07:48 +02:00
if ( XGetWindowProperty ( x11_display , x11_window , prop , 0 , sizeof ( Hints ) , False , AnyPropertyType , & type , & format , & len , & remaining , & data ) = = Success ) {
if ( data & & ( format = = 32 ) & & ( len > = 5 ) ) {
borderless = ! ( ( Hints * ) data ) - > decorations ;
}
XFree ( data ) ;
}
}
return borderless ;
2017-07-05 17:19:24 +02:00
}
2016-07-21 19:40:36 +02:00
void OS_X11 : : request_attention ( ) {
// Using EWMH -- Extended Window Manager Hints
//
// Sets the _NET_WM_STATE_DEMANDS_ATTENTION atom for WM_STATE
// Will be unset by the window manager after user react on the request for attention
2018-08-16 21:36:37 +02:00
2016-07-21 19:40:36 +02:00
XEvent xev ;
Atom wm_state = XInternAtom ( x11_display , " _NET_WM_STATE " , False ) ;
Atom wm_attention = XInternAtom ( x11_display , " _NET_WM_STATE_DEMANDS_ATTENTION " , False ) ;
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . xclient . window = x11_window ;
xev . xclient . message_type = wm_state ;
xev . xclient . format = 32 ;
xev . xclient . data . l [ 0 ] = _NET_WM_STATE_ADD ;
xev . xclient . data . l [ 1 ] = wm_attention ;
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , & xev ) ;
2018-08-16 21:36:37 +02:00
XFlush ( x11_display ) ;
2016-07-21 19:40:36 +02:00
}
2020-10-03 14:13:39 +02:00
void * OS_X11 : : get_native_handle ( int p_handle_type ) {
switch ( p_handle_type ) {
2021-05-04 14:35:44 +02:00
case APPLICATION_HANDLE :
2021-05-04 16:00:45 +02:00
return nullptr ; // Do we have a value to return here?
2021-05-04 14:35:44 +02:00
case DISPLAY_HANDLE :
return ( void * ) x11_display ;
case WINDOW_HANDLE :
return ( void * ) x11_window ;
case WINDOW_VIEW :
2021-05-04 16:00:45 +02:00
return nullptr ; // Do we have a value to return here?
2021-05-04 14:35:44 +02:00
case OPENGL_CONTEXT :
return context_gl - > get_glx_context ( ) ;
default :
2021-05-04 16:00:45 +02:00
return nullptr ;
2020-10-03 14:13:39 +02:00
}
}
2014-02-10 02:10:30 +01:00
2017-05-20 17:38:03 +02:00
void OS_X11 : : get_key_modifier_state ( unsigned int p_x11_state , Ref < InputEventWithModifiers > state ) {
state - > set_shift ( ( p_x11_state & ShiftMask ) ) ;
state - > set_control ( ( p_x11_state & ControlMask ) ) ;
state - > set_alt ( ( p_x11_state & Mod1Mask /*|| p_x11_state&Mod5Mask*/ ) ) ; //altgr should not count as alt
state - > set_metakey ( ( p_x11_state & Mod4Mask ) ) ;
2014-02-10 02:10:30 +01:00
}
2018-07-08 15:12:13 +02:00
unsigned int OS_X11 : : get_mouse_button_state ( unsigned int p_x11_button , int p_x11_type ) {
unsigned int mask = 1 < < ( p_x11_button - 1 ) ;
2016-03-09 00:00:52 +01:00
2018-07-08 15:12:13 +02:00
if ( p_x11_type = = ButtonPress ) {
last_button_state | = mask ;
} else {
last_button_state & = ~ mask ;
2014-02-10 02:10:30 +01:00
}
2018-07-08 15:12:13 +02:00
return last_button_state ;
2014-02-10 02:10:30 +01:00
}
2016-03-09 00:00:52 +01:00
2020-09-25 18:16:39 +02:00
void OS_X11 : : _handle_key_event ( XKeyEvent * p_event , LocalVector < XEvent > & p_events , uint32_t & p_event_index , bool p_echo ) {
2014-02-10 02:10:30 +01:00
// X11 functions don't know what const is
XKeyEvent * xkeyevent = p_event ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// This code was pretty difficult to write.
// The docs stink and every toolkit seems to
2016-03-09 00:00:52 +01:00
// do it in a different way.
2014-02-10 02:10:30 +01:00
/* Phase 1, obtain a proper keysym */
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// This was also very difficult to figure out.
// You'd expect you could just use Keysym provided by
2016-03-09 00:00:52 +01:00
// XKeycodeToKeysym to obtain internationalized
// input.. WRONG!!
2014-02-10 02:10:30 +01:00
// you must use XLookupString (???) which not only wastes
2017-03-24 21:45:31 +01:00
// cycles generating an unnecessary string, but also
2014-02-10 02:10:30 +01:00
// still works in half the cases. (won't handle deadkeys)
// For more complex input methods (deadkeys and more advanced)
// you have to use XmbLookupString (??).
2022-02-10 12:00:11 +01:00
// So.. then you have to choose which of both results
2014-02-10 02:10:30 +01:00
// you want to keep.
// This is a real bizarreness and cpu waster.
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
KeySym keysym_keycode = 0 ; // keysym used to find a keycode
KeySym keysym_unicode = 0 ; // keysym used to find unicode
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// XLookupString returns keysyms usable as nice scancodes/
2017-03-05 16:44:50 +01:00
char str [ 256 + 1 ] ;
2019-08-28 12:27:13 +02:00
XKeyEvent xkeyevent_no_mod = * xkeyevent ;
xkeyevent_no_mod . state & = ~ ShiftMask ;
xkeyevent_no_mod . state & = ~ ControlMask ;
2021-05-04 16:00:45 +02:00
XLookupString ( xkeyevent , str , 256 , & keysym_unicode , nullptr ) ;
XLookupString ( & xkeyevent_no_mod , nullptr , 0 , & keysym_keycode , nullptr ) ;
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
// Meanwhile, XLookupString returns keysyms useful for unicode.
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
if ( ! xmbstring ) {
// keep a temporary buffer for the string
2017-03-05 16:44:50 +01:00
xmbstring = ( char * ) memalloc ( sizeof ( char ) * 8 ) ;
xmblen = 8 ;
2016-03-09 00:00:52 +01:00
}
2014-02-10 02:10:30 +01:00
if ( xkeyevent - > type = = KeyPress & & xic ) {
Status status ;
2017-06-27 11:26:43 +02:00
# ifdef X_HAVE_UTF8_STRING
int utf8len = 8 ;
char * utf8string = ( char * ) memalloc ( sizeof ( char ) * utf8len ) ;
int utf8bytes = Xutf8LookupString ( xic , xkeyevent , utf8string ,
utf8len - 1 , & keysym_unicode , & status ) ;
if ( status = = XBufferOverflow ) {
utf8len = utf8bytes + 1 ;
utf8string = ( char * ) memrealloc ( utf8string , utf8len ) ;
utf8bytes = Xutf8LookupString ( xic , xkeyevent , utf8string ,
utf8len - 1 , & keysym_unicode , & status ) ;
}
utf8string [ utf8bytes ] = ' \0 ' ;
if ( status = = XLookupChars ) {
bool keypress = xkeyevent - > type = = KeyPress ;
unsigned int keycode = KeyMappingX11 : : get_keycode ( keysym_keycode ) ;
2021-03-07 16:16:42 +01:00
unsigned int physical_keycode = KeyMappingX11 : : get_scancode ( xkeyevent - > keycode ) ;
2021-05-05 12:44:11 +02:00
if ( keycode > = ' a ' & & keycode < = ' z ' ) {
2017-06-27 11:26:43 +02:00
keycode - = ' a ' - ' A ' ;
2021-05-05 12:44:11 +02:00
}
2017-06-27 11:26:43 +02:00
String tmp ;
tmp . parse_utf8 ( utf8string , utf8bytes ) ;
for ( int i = 0 ; i < tmp . length ( ) ; i + + ) {
Ref < InputEventKey > k ;
k . instance ( ) ;
2021-03-07 16:16:42 +01:00
if ( physical_keycode = = 0 & & keycode = = 0 & & tmp [ i ] = = 0 ) {
2017-06-27 11:26:43 +02:00
continue ;
}
2021-03-07 16:16:42 +01:00
if ( keycode = = 0 ) {
keycode = physical_keycode ;
}
2017-06-27 11:26:43 +02:00
get_key_modifier_state ( xkeyevent - > state , k ) ;
k - > set_unicode ( tmp [ i ] ) ;
k - > set_pressed ( keypress ) ;
k - > set_scancode ( keycode ) ;
2021-03-07 16:16:42 +01:00
k - > set_physical_scancode ( physical_keycode ) ;
2017-06-27 11:26:43 +02:00
k - > set_echo ( false ) ;
if ( k - > get_scancode ( ) = = KEY_BACKTAB ) {
//make it consistent across platforms.
k - > set_scancode ( KEY_TAB ) ;
2021-03-07 16:16:42 +01:00
k - > set_physical_scancode ( KEY_TAB ) ;
2017-06-27 11:26:43 +02:00
k - > set_shift ( true ) ;
}
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( k ) ;
2017-06-27 11:26:43 +02:00
}
2019-11-12 07:51:51 +01:00
memfree ( utf8string ) ;
2017-06-27 11:26:43 +02:00
return ;
}
memfree ( utf8string ) ;
# else
2017-06-24 15:09:39 +02:00
do {
2017-03-05 16:44:50 +01:00
int mnbytes = XmbLookupString ( xic , xkeyevent , xmbstring , xmblen - 1 , & keysym_unicode , & status ) ;
2014-02-10 02:10:30 +01:00
xmbstring [ mnbytes ] = ' \0 ' ;
if ( status = = XBufferOverflow ) {
xmblen = mnbytes + 1 ;
2017-03-05 16:44:50 +01:00
xmbstring = ( char * ) memrealloc ( xmbstring , xmblen ) ;
2016-03-09 00:00:52 +01:00
}
2014-02-10 02:10:30 +01:00
} while ( status = = XBufferOverflow ) ;
2017-06-27 11:26:43 +02:00
# endif
2016-03-09 00:00:52 +01:00
}
2014-02-10 02:10:30 +01:00
/* Phase 2, obtain a pigui keycode from the keysym */
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// KeyMappingX11 just translated the X11 keysym to a PIGUI
// keysym, so it works in all platforms the same.
unsigned int keycode = KeyMappingX11 : : get_keycode ( keysym_keycode ) ;
2021-03-07 16:16:42 +01:00
unsigned int physical_keycode = KeyMappingX11 : : get_scancode ( xkeyevent - > keycode ) ;
2016-03-09 00:00:52 +01:00
2017-09-02 16:19:06 +02:00
/* Phase 3, obtain a unicode character from the keysym */
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// KeyMappingX11 also translates keysym to unicode.
// It does a binary search on a table to translate
2016-03-09 00:00:52 +01:00
// most properly.
2017-03-05 16:44:50 +01:00
unsigned int unicode = keysym_unicode > 0 ? KeyMappingX11 : : get_unicode_from_keysym ( keysym_unicode ) : 0 ;
2014-02-10 02:10:30 +01:00
/* Phase 4, determine if event must be filtered */
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// This seems to be a side-effect of using XIM.
2020-09-25 18:16:39 +02:00
// XFilterEvent looks like a core X11 function,
2014-02-10 02:10:30 +01:00
// but it's actually just used to see if we must
// ignore a deadkey, or events XIM determines
// must not reach the actual gui.
// Guess it was a design problem of the extension
bool keypress = xkeyevent - > type = = KeyPress ;
2016-03-09 00:00:52 +01:00
2021-03-07 16:16:42 +01:00
if ( physical_keycode = = 0 & & keycode = = 0 & & unicode = = 0 ) {
2014-02-10 02:10:30 +01:00
return ;
2021-05-05 12:44:11 +02:00
}
2014-02-10 02:10:30 +01:00
2021-03-07 16:16:42 +01:00
if ( keycode = = 0 ) {
keycode = physical_keycode ;
}
2014-02-10 02:10:30 +01:00
/* Phase 5, determine modifier mask */
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// No problems here, except I had no way to
// know Mod1 was ALT and Mod4 was META (applekey/winkey)
// just tried Mods until i found them.
2018-08-24 09:35:07 +02:00
//print_verbose("mod1: "+itos(xkeyevent->state&Mod1Mask)+" mod 5: "+itos(xkeyevent->state&Mod5Mask));
2016-03-09 00:00:52 +01:00
2017-05-20 17:38:03 +02:00
Ref < InputEventKey > k ;
k . instance ( ) ;
get_key_modifier_state ( xkeyevent - > state , k ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
/* Phase 6, determine echo character */
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// Echo characters in X11 are a keyrelease and a keypress
// one after the other with the (almot) same timestamp.
2020-09-25 18:16:39 +02:00
// To detect them, i compare to the next event in list and
// check that their difference in time is below a threshold.
2016-03-09 00:00:52 +01:00
2014-05-24 06:35:47 +02:00
if ( xkeyevent - > type ! = KeyPress ) {
2017-06-27 11:26:43 +02:00
p_echo = false ;
2014-02-10 02:10:30 +01:00
// make sure there are events pending,
// so this call won't block.
2020-09-25 18:16:39 +02:00
if ( p_event_index + 1 < p_events . size ( ) ) {
XEvent & peek_event = p_events [ p_event_index + 1 ] ;
2016-03-09 00:00:52 +01:00
2017-07-08 17:12:18 +02:00
// I'm using a threshold of 5 msecs,
2014-02-10 02:10:30 +01:00
// since sometimes there seems to be a little
// jitter. I'm still not convinced that all this approach
// is correct, but the xorg developers are
// not very helpful today.
2016-03-09 00:00:52 +01:00
2019-02-20 21:59:03 +01:00
: : Time tresh = ABSDIFF ( peek_event . xkey . time , xkeyevent - > time ) ;
2017-03-05 16:44:50 +01:00
if ( peek_event . type = = KeyPress & & tresh < 5 ) {
2014-05-24 06:35:47 +02:00
KeySym rk ;
2021-05-04 16:00:45 +02:00
XLookupString ( ( XKeyEvent * ) & peek_event , str , 256 , & rk , nullptr ) ;
2017-03-05 16:44:50 +01:00
if ( rk = = keysym_keycode ) {
2020-09-25 18:16:39 +02:00
// Consume to next event.
+ + p_event_index ;
_handle_key_event ( ( XKeyEvent * ) & peek_event , p_events , p_event_index , true ) ;
2014-05-24 06:35:47 +02:00
return ; //ignore current, echo next
}
}
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
// use the time from peek_event so it always works
}
2016-03-09 00:00:52 +01:00
// save the time to check for echo when keypress happens
2014-02-10 02:10:30 +01:00
}
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
/* Phase 7, send event to Window */
2016-03-09 00:00:52 +01:00
2017-05-20 17:38:03 +02:00
k - > set_pressed ( keypress ) ;
2014-02-10 02:10:30 +01:00
2021-05-05 12:44:11 +02:00
if ( keycode > = ' a ' & & keycode < = ' z ' ) {
2017-03-05 16:44:50 +01:00
keycode - = ' a ' - ' A ' ;
2021-05-05 12:44:11 +02:00
}
2014-02-10 02:10:30 +01:00
2017-05-20 17:38:03 +02:00
k - > set_scancode ( keycode ) ;
2021-03-07 16:16:42 +01:00
k - > set_physical_scancode ( physical_keycode ) ;
2017-05-20 17:38:03 +02:00
k - > set_unicode ( unicode ) ;
k - > set_echo ( p_echo ) ;
2014-02-10 02:10:30 +01:00
2017-05-20 17:38:03 +02:00
if ( k - > get_scancode ( ) = = KEY_BACKTAB ) {
2017-03-24 21:45:31 +01:00
//make it consistent across platforms.
2017-05-20 17:38:03 +02:00
k - > set_scancode ( KEY_TAB ) ;
2021-03-07 16:16:42 +01:00
k - > set_physical_scancode ( KEY_TAB ) ;
2017-05-20 17:38:03 +02:00
k - > set_shift ( true ) ;
2014-02-10 02:10:30 +01:00
}
2016-09-22 12:24:44 +02:00
//don't set mod state if modifier keys are released by themselves
//else event.is_action() will not work correctly here
2017-05-20 17:38:03 +02:00
if ( ! k - > is_pressed ( ) ) {
2021-05-05 12:44:11 +02:00
if ( k - > get_scancode ( ) = = KEY_SHIFT ) {
2017-05-20 17:38:03 +02:00
k - > set_shift ( false ) ;
2021-05-05 12:44:11 +02:00
} else if ( k - > get_scancode ( ) = = KEY_CONTROL ) {
2017-05-20 17:38:03 +02:00
k - > set_control ( false ) ;
2021-05-05 12:44:11 +02:00
} else if ( k - > get_scancode ( ) = = KEY_ALT ) {
2017-05-20 17:38:03 +02:00
k - > set_alt ( false ) ;
2021-05-05 12:44:11 +02:00
} else if ( k - > get_scancode ( ) = = KEY_META ) {
2017-05-20 17:38:03 +02:00
k - > set_metakey ( false ) ;
2021-05-05 12:44:11 +02:00
}
2016-09-22 12:24:44 +02:00
}
2017-06-27 11:26:43 +02:00
bool last_is_pressed = Input : : get_singleton ( ) - > is_key_pressed ( k - > get_scancode ( ) ) ;
if ( k - > is_pressed ( ) ) {
if ( last_is_pressed ) {
k - > set_echo ( true ) ;
}
}
2017-05-20 17:38:03 +02:00
//printf("key: %x\n",k->get_scancode());
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( k ) ;
2014-02-10 02:10:30 +01:00
}
2021-10-20 16:19:17 +02:00
Atom OS_X11 : : _process_selection_request_target ( Atom p_target , Window p_requestor , Atom p_property , Atom p_selection ) const {
2020-10-09 21:19:51 +02:00
if ( p_target = = XInternAtom ( x11_display , " TARGETS " , 0 ) ) {
// Request to list all supported targets.
Atom data [ 9 ] ;
2020-09-25 18:16:39 +02:00
data [ 0 ] = XInternAtom ( x11_display , " TARGETS " , 0 ) ;
2020-10-09 21:19:51 +02:00
data [ 1 ] = XInternAtom ( x11_display , " SAVE_TARGETS " , 0 ) ;
data [ 2 ] = XInternAtom ( x11_display , " MULTIPLE " , 0 ) ;
data [ 3 ] = XInternAtom ( x11_display , " UTF8_STRING " , 0 ) ;
data [ 4 ] = XInternAtom ( x11_display , " COMPOUND_TEXT " , 0 ) ;
data [ 5 ] = XInternAtom ( x11_display , " TEXT " , 0 ) ;
data [ 6 ] = XA_STRING ;
data [ 7 ] = XInternAtom ( x11_display , " text/plain;charset=utf-8 " , 0 ) ;
data [ 8 ] = XInternAtom ( x11_display , " text/plain " , 0 ) ;
2020-09-25 18:16:39 +02:00
XChangeProperty ( x11_display ,
2020-10-09 21:19:51 +02:00
p_requestor ,
p_property ,
2020-09-25 18:16:39 +02:00
XA_ATOM ,
32 ,
PropModeReplace ,
( unsigned char * ) & data ,
sizeof ( data ) / sizeof ( data [ 0 ] ) ) ;
2020-10-09 21:19:51 +02:00
return p_property ;
} else if ( p_target = = XInternAtom ( x11_display , " SAVE_TARGETS " , 0 ) ) {
// Request to check if SAVE_TARGETS is supported, nothing special to do.
XChangeProperty ( x11_display ,
p_requestor ,
p_property ,
XInternAtom ( x11_display , " NULL " , False ) ,
32 ,
PropModeReplace ,
2021-05-04 16:00:45 +02:00
nullptr ,
2020-10-09 21:19:51 +02:00
0 ) ;
return p_property ;
} else if ( p_target = = XInternAtom ( x11_display , " UTF8_STRING " , 0 ) | |
2021-10-28 13:23:24 +02:00
p_target = = XInternAtom ( x11_display , " COMPOUND_TEXT " , 0 ) | |
p_target = = XInternAtom ( x11_display , " TEXT " , 0 ) | |
p_target = = XA_STRING | |
p_target = = XInternAtom ( x11_display , " text/plain;charset=utf-8 " , 0 ) | |
p_target = = XInternAtom ( x11_display , " text/plain " , 0 ) ) {
2020-10-09 21:19:51 +02:00
// Directly using internal clipboard because we know our window
// is the owner during a selection request.
2021-10-20 16:19:17 +02:00
CharString clip ;
static const char * target_type = " PRIMARY " ;
2022-04-01 15:55:03 +02:00
if ( p_selection ! = None & & get_atom_name ( x11_display , p_selection ) = = target_type ) {
2021-10-20 16:19:17 +02:00
clip = OS : : get_clipboard_primary ( ) . utf8 ( ) ;
} else {
clip = OS : : get_clipboard ( ) . utf8 ( ) ;
}
2020-10-09 21:19:51 +02:00
XChangeProperty ( x11_display ,
p_requestor ,
p_property ,
p_target ,
8 ,
PropModeReplace ,
( unsigned char * ) clip . get_data ( ) ,
clip . length ( ) ) ;
return p_property ;
2020-09-25 18:16:39 +02:00
} else {
2020-10-09 21:19:51 +02:00
char * target_name = XGetAtomName ( x11_display , p_target ) ;
printf ( " Target '%s' not supported. \n " , target_name ) ;
if ( target_name ) {
XFree ( target_name ) ;
2020-09-25 18:16:39 +02:00
}
2020-10-09 21:19:51 +02:00
return None ;
}
}
void OS_X11 : : _handle_selection_request_event ( XSelectionRequestEvent * p_event ) const {
XEvent respond ;
if ( p_event - > target = = XInternAtom ( x11_display , " MULTIPLE " , 0 ) ) {
// Request for multiple target conversions at once.
Atom atom_pair = XInternAtom ( x11_display , " ATOM_PAIR " , False ) ;
2020-09-25 18:16:39 +02:00
respond . xselection . property = None ;
2020-10-09 21:19:51 +02:00
Atom type ;
int format ;
unsigned long len ;
unsigned long remaining ;
2021-05-04 16:00:45 +02:00
unsigned char * data = nullptr ;
2020-10-09 21:19:51 +02:00
if ( XGetWindowProperty ( x11_display , p_event - > requestor , p_event - > property , 0 , LONG_MAX , False , atom_pair , & type , & format , & len , & remaining , & data ) = = Success ) {
if ( ( len > = 2 ) & & data ) {
Atom * targets = ( Atom * ) data ;
for ( uint64_t i = 0 ; i < len ; i + = 2 ) {
Atom target = targets [ i ] ;
Atom & property = targets [ i + 1 ] ;
2021-10-20 16:19:17 +02:00
property = _process_selection_request_target ( target , p_event - > requestor , property , p_event - > selection ) ;
2020-10-09 21:19:51 +02:00
}
XChangeProperty ( x11_display ,
p_event - > requestor ,
p_event - > property ,
atom_pair ,
32 ,
PropModeReplace ,
( unsigned char * ) targets ,
len ) ;
respond . xselection . property = p_event - > property ;
}
XFree ( data ) ;
}
} else {
// Request for target conversion.
2021-10-20 16:19:17 +02:00
respond . xselection . property = _process_selection_request_target ( p_event - > target , p_event - > requestor , p_event - > property , p_event - > selection ) ;
2020-09-25 18:16:39 +02:00
}
respond . xselection . type = SelectionNotify ;
respond . xselection . display = p_event - > display ;
respond . xselection . requestor = p_event - > requestor ;
respond . xselection . selection = p_event - > selection ;
respond . xselection . target = p_event - > target ;
respond . xselection . time = p_event - > time ;
XSendEvent ( x11_display , p_event - > requestor , True , NoEventMask , & respond ) ;
XFlush ( x11_display ) ;
}
2017-03-05 16:44:50 +01:00
struct Property {
2016-05-29 17:40:08 +02:00
unsigned char * data ;
int format , nitems ;
Atom type ;
} ;
2017-03-05 16:44:50 +01:00
static Property read_property ( Display * p_display , Window p_window , Atom p_property ) {
2021-02-06 11:43:02 +01:00
Atom actual_type = None ;
int actual_format = 0 ;
unsigned long nitems = 0 ;
unsigned long bytes_after = 0 ;
2021-05-04 16:00:45 +02:00
unsigned char * ret = nullptr ;
2016-05-29 17:40:08 +02:00
int read_bytes = 1024 ;
//Keep trying to read the property until there are no
//bytes unread.
2021-02-03 16:08:37 +01:00
if ( p_property ! = None ) {
do {
2021-05-05 12:44:11 +02:00
if ( ret ! = nullptr ) {
2021-02-03 16:08:37 +01:00
XFree ( ret ) ;
2021-05-05 12:44:11 +02:00
}
2016-05-29 17:40:08 +02:00
2021-02-03 16:08:37 +01:00
XGetWindowProperty ( p_display , p_window , p_property , 0 , read_bytes , False , AnyPropertyType ,
& actual_type , & actual_format , & nitems , & bytes_after ,
& ret ) ;
2016-05-29 17:40:08 +02:00
2021-02-03 16:08:37 +01:00
read_bytes * = 2 ;
2016-05-29 17:40:08 +02:00
2021-02-03 16:08:37 +01:00
} while ( bytes_after ! = 0 ) ;
}
2016-05-29 17:40:08 +02:00
2017-03-05 16:44:50 +01:00
Property p = { ret , actual_format , ( int ) nitems , actual_type } ;
2016-05-29 17:40:08 +02:00
return p ;
}
2017-03-05 16:44:50 +01:00
static Atom pick_target_from_list ( Display * p_display , Atom * p_list , int p_count ) {
static const char * target_type = " text/uri-list " ;
2016-05-29 17:40:08 +02:00
for ( int i = 0 ; i < p_count ; i + + ) {
Atom atom = p_list [ i ] ;
2022-03-04 10:50:28 +01:00
if ( atom ! = None & & get_atom_name ( p_display , atom ) = = target_type ) {
2017-03-05 16:44:50 +01:00
return atom ;
2021-05-05 12:44:11 +02:00
}
2016-05-29 17:40:08 +02:00
}
return None ;
}
2017-03-05 16:44:50 +01:00
static Atom pick_target_from_atoms ( Display * p_disp , Atom p_t1 , Atom p_t2 , Atom p_t3 ) {
static const char * target_type = " text/uri-list " ;
2022-03-04 10:50:28 +01:00
if ( p_t1 ! = None & & get_atom_name ( p_disp , p_t1 ) = = target_type ) {
2016-05-28 21:35:42 +02:00
return p_t1 ;
2021-05-05 12:44:11 +02:00
}
2016-05-28 21:35:42 +02:00
2022-03-04 10:50:28 +01:00
if ( p_t2 ! = None & & get_atom_name ( p_disp , p_t2 ) = = target_type ) {
2016-05-28 21:35:42 +02:00
return p_t2 ;
2021-05-05 12:44:11 +02:00
}
2016-05-28 21:35:42 +02:00
2022-03-04 10:50:28 +01:00
if ( p_t3 ! = None & & get_atom_name ( p_disp , p_t3 ) = = target_type ) {
2016-05-28 21:35:42 +02:00
return p_t3 ;
2021-05-05 12:44:11 +02:00
}
2016-05-28 21:35:42 +02:00
return None ;
}
2017-10-24 21:35:28 +02:00
void OS_X11 : : _window_changed ( XEvent * event ) {
if ( xic ) {
// Not portable.
set_ime_position ( Point2 ( 0 , 1 ) ) ;
}
if ( ( event - > xconfigure . width = = current_videomode . width ) & &
2021-05-05 12:44:11 +02:00
( event - > xconfigure . height = = current_videomode . height ) ) {
2017-10-24 21:35:28 +02:00
return ;
2021-05-05 12:44:11 +02:00
}
2017-10-24 21:35:28 +02:00
current_videomode . width = event - > xconfigure . width ;
current_videomode . height = event - > xconfigure . height ;
}
2020-09-25 18:16:39 +02:00
void OS_X11 : : _poll_events_thread ( void * ud ) {
OS_X11 * os = ( OS_X11 * ) ud ;
os - > _poll_events ( ) ;
}
Bool OS_X11 : : _predicate_all_events ( Display * display , XEvent * event , XPointer arg ) {
// Just accept all events.
return True ;
}
2020-10-09 21:19:51 +02:00
bool OS_X11 : : _wait_for_events ( ) const {
2020-09-25 18:16:39 +02:00
int x11_fd = ConnectionNumber ( x11_display ) ;
fd_set in_fds ;
2020-10-09 21:19:51 +02:00
XFlush ( x11_display ) ;
FD_ZERO ( & in_fds ) ;
FD_SET ( x11_fd , & in_fds ) ;
2020-09-25 18:16:39 +02:00
2020-10-09 21:19:51 +02:00
struct timeval tv ;
tv . tv_usec = 0 ;
tv . tv_sec = 1 ;
2020-09-25 18:16:39 +02:00
2020-10-09 21:19:51 +02:00
// Wait for next event or timeout.
2021-05-04 16:00:45 +02:00
int num_ready_fds = select ( x11_fd + 1 , & in_fds , nullptr , nullptr , & tv ) ;
2020-09-25 18:16:39 +02:00
2020-10-09 21:19:51 +02:00
if ( num_ready_fds > 0 ) {
// Event received.
return true ;
} else {
// Error or timeout.
2020-09-25 18:16:39 +02:00
if ( num_ready_fds < 0 ) {
2020-10-09 21:19:51 +02:00
ERR_PRINT ( " _wait_for_events: select error: " + itos ( errno ) ) ;
2020-09-25 18:16:39 +02:00
}
2020-10-09 21:19:51 +02:00
return false ;
}
}
void OS_X11 : : _poll_events ( ) {
while ( ! events_thread_done ) {
_wait_for_events ( ) ;
2020-09-25 18:16:39 +02:00
// Process events from the queue.
{
MutexLock mutex_lock ( events_mutex ) ;
2021-10-27 00:44:00 +02:00
_check_pending_events ( polled_events ) ;
}
}
}
2020-09-25 18:16:39 +02:00
2021-10-27 00:44:00 +02:00
void OS_X11 : : _check_pending_events ( LocalVector < XEvent > & r_events ) {
// Flush to make sure to gather all pending events.
XFlush ( x11_display ) ;
2020-09-25 18:16:39 +02:00
2021-10-27 00:44:00 +02:00
// Non-blocking wait for next event and remove it from the queue.
XEvent ev ;
while ( XCheckIfEvent ( x11_display , & ev , _predicate_all_events , nullptr ) ) {
// Check if the input manager wants to process the event.
if ( XFilterEvent ( & ev , None ) ) {
// Event has been filtered by the Input Manager,
// it has to be ignored and a new one will be received.
continue ;
2020-09-25 18:16:39 +02:00
}
2021-10-27 00:44:00 +02:00
// Handle selection request events directly in the event thread, because
// communication through the x server takes several events sent back and forth
// and we don't want to block other programs while processing only one each frame.
if ( ev . type = = SelectionRequest ) {
_handle_selection_request_event ( & ( ev . xselectionrequest ) ) ;
continue ;
}
r_events . push_back ( ev ) ;
2020-09-25 18:16:39 +02:00
}
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : process_xevents ( ) {
//printf("checking events %i\n", XPending(x11_display));
2021-09-09 02:36:51 +02:00
# ifdef DISPLAY_SERVER_X11_DEBUG_LOGS_ENABLED
static int frame = 0 ;
+ + frame ;
# endif
2017-03-05 16:44:50 +01:00
do_mouse_warp = false ;
2017-01-25 19:21:41 +01:00
// Is the current mouse mode one where it needs to be grabbed.
2022-07-29 19:41:29 +02:00
bool mouse_mode_grab = mouse_mode = = MOUSE_MODE_CAPTURED | | mouse_mode = = MOUSE_MODE_CONFINED | | mouse_mode = = MOUSE_MODE_CONFINED_HIDDEN ;
2017-01-25 19:21:41 +01:00
2020-04-10 12:41:41 +02:00
xi . pressure = 0 ;
xi . tilt = Vector2 ( ) ;
2020-05-03 14:38:58 +02:00
xi . pressure_supported = false ;
2020-04-10 12:41:41 +02:00
2020-09-25 18:16:39 +02:00
LocalVector < XEvent > events ;
{
// Block events polling while flushing events.
MutexLock mutex_lock ( events_mutex ) ;
events = polled_events ;
polled_events . clear ( ) ;
2021-10-27 00:44:00 +02:00
// Check for more pending events to avoid an extra frame delay.
_check_pending_events ( events ) ;
2020-09-25 18:16:39 +02:00
}
2014-02-10 02:10:30 +01:00
2020-09-25 18:16:39 +02:00
for ( uint32_t event_index = 0 ; event_index < events . size ( ) ; + + event_index ) {
XEvent & event = events [ event_index ] ;
2017-06-27 11:26:43 +02:00
2017-11-29 21:01:26 +01:00
if ( XGetEventData ( x11_display , & event . xcookie ) ) {
2018-08-18 00:59:26 +02:00
if ( event . xcookie . type = = GenericEvent & & event . xcookie . extension = = xi . opcode ) {
2017-11-29 21:01:26 +01:00
XIDeviceEvent * event_data = ( XIDeviceEvent * ) event . xcookie . data ;
int index = event_data - > detail ;
Vector2 pos = Vector2 ( event_data - > event_x , event_data - > event_y ) ;
switch ( event_data - > evtype ) {
2018-08-18 00:59:26 +02:00
case XI_HierarchyChanged :
case XI_DeviceChanged : {
refresh_device_info ( ) ;
} break ;
case XI_RawMotion : {
XIRawEvent * raw_event = ( XIRawEvent * ) event_data ;
2022-06-18 13:27:02 +02:00
int device_id = raw_event - > sourceid ;
2018-08-18 00:59:26 +02:00
// Determine the axis used (called valuators in XInput for some forsaken reason)
// Mask is a bitmask indicating which axes are involved.
// We are interested in the values of axes 0 and 1.
2018-12-19 18:19:05 +01:00
if ( raw_event - > valuators . mask_len < = 0 ) {
2018-08-18 00:59:26 +02:00
break ;
}
2018-12-19 18:19:05 +01:00
const double * values = raw_event - > raw_values ;
double rel_x = 0.0 ;
double rel_y = 0.0 ;
2018-12-13 21:32:11 +01:00
if ( XIMaskIsSet ( raw_event - > valuators . mask , VALUATOR_ABSX ) ) {
2018-12-19 18:19:05 +01:00
rel_x = * values ;
values + + ;
}
2018-12-13 21:32:11 +01:00
if ( XIMaskIsSet ( raw_event - > valuators . mask , VALUATOR_ABSY ) ) {
2018-12-19 18:19:05 +01:00
rel_y = * values ;
2018-12-13 21:32:11 +01:00
values + + ;
}
if ( XIMaskIsSet ( raw_event - > valuators . mask , VALUATOR_PRESSURE ) ) {
2020-04-10 12:41:41 +02:00
Map < int , Vector2 > : : Element * pen_pressure = xi . pen_pressure_range . find ( device_id ) ;
if ( pen_pressure ) {
Vector2 pen_pressure_range = pen_pressure - > value ( ) ;
2020-05-03 14:38:58 +02:00
if ( pen_pressure_range ! = Vector2 ( ) ) {
xi . pressure_supported = true ;
2020-04-10 12:41:41 +02:00
xi . pressure = ( * values - pen_pressure_range [ 0 ] ) /
2021-10-28 13:23:24 +02:00
( pen_pressure_range [ 1 ] - pen_pressure_range [ 0 ] ) ;
2020-05-03 14:38:58 +02:00
}
2020-04-10 12:41:41 +02:00
}
2018-12-13 21:32:11 +01:00
values + + ;
}
if ( XIMaskIsSet ( raw_event - > valuators . mask , VALUATOR_TILTX ) ) {
2020-04-10 12:41:41 +02:00
Map < int , Vector2 > : : Element * pen_tilt_x = xi . pen_tilt_x_range . find ( device_id ) ;
if ( pen_tilt_x ) {
Vector2 pen_tilt_x_range = pen_tilt_x - > value ( ) ;
2022-01-02 12:45:10 +01:00
if ( pen_tilt_x_range [ 0 ] ! = 0 & & * values < 0 ) {
xi . tilt . x = * values / - pen_tilt_x_range [ 0 ] ;
} else if ( pen_tilt_x_range [ 1 ] ! = 0 ) {
xi . tilt . x = * values / pen_tilt_x_range [ 1 ] ;
2020-04-10 12:41:41 +02:00
}
}
2018-12-13 21:32:11 +01:00
values + + ;
}
if ( XIMaskIsSet ( raw_event - > valuators . mask , VALUATOR_TILTY ) ) {
2020-04-10 12:41:41 +02:00
Map < int , Vector2 > : : Element * pen_tilt_y = xi . pen_tilt_y_range . find ( device_id ) ;
if ( pen_tilt_y ) {
Vector2 pen_tilt_y_range = pen_tilt_y - > value ( ) ;
2022-01-02 12:45:10 +01:00
if ( pen_tilt_y_range [ 0 ] ! = 0 & & * values < 0 ) {
xi . tilt . y = * values / - pen_tilt_y_range [ 0 ] ;
} else if ( pen_tilt_y_range [ 1 ] ! = 0 ) {
xi . tilt . y = * values / pen_tilt_y_range [ 1 ] ;
2020-04-10 12:41:41 +02:00
}
}
2018-12-13 21:32:11 +01:00
2020-04-10 12:41:41 +02:00
values + + ;
2018-12-19 18:19:05 +01:00
}
2018-08-18 00:59:26 +02:00
2022-06-18 13:27:02 +02:00
Map < int , bool > : : Element * pen_inverted = xi . pen_inverted_devices . find ( device_id ) ;
if ( pen_inverted ) {
xi . pen_inverted = pen_inverted - > value ( ) ;
}
2018-08-18 00:59:26 +02:00
// https://bugs.freedesktop.org/show_bug.cgi?id=71609
// http://lists.libsdl.org/pipermail/commits-libsdl.org/2015-June/000282.html
if ( raw_event - > time = = xi . last_relative_time & & rel_x = = xi . relative_motion . x & & rel_y = = xi . relative_motion . y ) {
break ; // Flush duplicate to avoid overly fast motion
}
xi . old_raw_pos . x = xi . raw_pos . x ;
xi . old_raw_pos . y = xi . raw_pos . y ;
xi . raw_pos . x = rel_x ;
xi . raw_pos . y = rel_y ;
Map < int , Vector2 > : : Element * abs_info = xi . absolute_devices . find ( device_id ) ;
if ( abs_info ) {
// Absolute mode device
Vector2 mult = abs_info - > value ( ) ;
xi . relative_motion . x + = ( xi . raw_pos . x - xi . old_raw_pos . x ) * mult . x ;
xi . relative_motion . y + = ( xi . raw_pos . y - xi . old_raw_pos . y ) * mult . y ;
} else {
// Relative mode device
xi . relative_motion . x = xi . raw_pos . x ;
xi . relative_motion . y = xi . raw_pos . y ;
}
2017-11-29 21:01:26 +01:00
2018-08-18 00:59:26 +02:00
xi . last_relative_time = raw_event - > time ;
} break ;
# ifdef TOUCH_ENABLED
2021-10-28 14:15:02 +02:00
case XI_TouchBegin :
2017-11-29 21:01:26 +01:00
case XI_TouchEnd : {
bool is_begin = event_data - > evtype = = XI_TouchBegin ;
Ref < InputEventScreenTouch > st ;
st . instance ( ) ;
st - > set_index ( index ) ;
st - > set_position ( pos ) ;
st - > set_pressed ( is_begin ) ;
if ( is_begin ) {
2021-05-05 12:44:11 +02:00
if ( xi . state . has ( index ) ) { // Defensive
2017-11-29 21:01:26 +01:00
break ;
2021-05-05 12:44:11 +02:00
}
2018-08-18 00:59:26 +02:00
xi . state [ index ] = pos ;
if ( xi . state . size ( ) = = 1 ) {
2018-02-24 03:04:30 +01:00
// X11 may send a motion event when a touch gesture begins, that would result
// in a spurious mouse motion event being sent to Godot; remember it to be able to filter it out
2018-08-18 00:59:26 +02:00
xi . mouse_pos_to_filter = pos ;
2018-02-24 03:04:30 +01:00
}
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( st ) ;
2017-11-29 21:01:26 +01:00
} else {
2021-05-05 12:44:11 +02:00
if ( ! xi . state . has ( index ) ) { // Defensive
2017-11-29 21:01:26 +01:00
break ;
2021-05-05 12:44:11 +02:00
}
2018-08-18 00:59:26 +02:00
xi . state . erase ( index ) ;
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( st ) ;
2017-11-29 21:01:26 +01:00
}
} break ;
case XI_TouchUpdate : {
2018-08-18 00:59:26 +02:00
Map < int , Vector2 > : : Element * curr_pos_elem = xi . state . find ( index ) ;
2017-11-29 21:01:26 +01:00
if ( ! curr_pos_elem ) { // Defensive
break ;
}
if ( curr_pos_elem - > value ( ) ! = pos ) {
Ref < InputEventScreenDrag > sd ;
sd . instance ( ) ;
sd - > set_index ( index ) ;
sd - > set_position ( pos ) ;
sd - > set_relative ( pos - curr_pos_elem - > value ( ) ) ;
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( sd ) ;
2017-11-29 21:01:26 +01:00
curr_pos_elem - > value ( ) = pos ;
}
} break ;
2018-08-18 00:59:26 +02:00
# endif
2017-11-29 21:01:26 +01:00
}
}
}
2017-12-10 07:05:17 +01:00
XFreeEventData ( x11_display , & event . xcookie ) ;
2017-11-29 21:01:26 +01:00
2014-02-10 02:10:30 +01:00
switch ( event . type ) {
2021-09-09 02:36:51 +02:00
case Expose : {
DEBUG_LOG_X11 ( " [%u] Expose window=%lu, count='%u' \n " , frame , event . xexpose . window , event . xexpose . count ) ;
2022-06-30 03:55:40 +02:00
current_videomode . fullscreen = window_fullscreen_check ( ) ;
2021-09-09 02:36:51 +02:00
2017-03-05 16:44:50 +01:00
Main : : force_redraw ( ) ;
2021-09-09 02:36:51 +02:00
} break ;
case NoExpose : {
DEBUG_LOG_X11 ( " [%u] NoExpose drawable=%lu \n " , frame , event . xnoexpose . drawable ) ;
2015-09-24 23:06:15 +02:00
2017-03-05 16:44:50 +01:00
minimized = true ;
2021-09-09 02:36:51 +02:00
} break ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
case VisibilityNotify : {
2021-09-09 02:36:51 +02:00
DEBUG_LOG_X11 ( " [%u] VisibilityNotify window=%lu, state=%u \n " , frame , event . xvisibility . window , event . xvisibility . state ) ;
2017-03-05 16:44:50 +01:00
XVisibilityEvent * visibility = ( XVisibilityEvent * ) & event ;
minimized = ( visibility - > state = = VisibilityFullyObscured ) ;
} break ;
2021-09-09 02:36:51 +02:00
2017-03-05 16:44:50 +01:00
case LeaveNotify : {
2021-09-09 02:36:51 +02:00
DEBUG_LOG_X11 ( " [%u] LeaveNotify window=%lu, mode='%u' \n " , frame , event . xcrossing . window , event . xcrossing . mode ) ;
2021-05-05 12:44:11 +02:00
if ( main_loop & & ! mouse_mode_grab ) {
2017-03-05 16:44:50 +01:00
main_loop - > notification ( MainLoop : : NOTIFICATION_WM_MOUSE_EXIT ) ;
2021-05-05 12:44:11 +02:00
}
2017-03-05 16:44:50 +01:00
} break ;
2021-09-09 02:36:51 +02:00
2017-03-05 16:44:50 +01:00
case EnterNotify : {
2021-09-09 02:36:51 +02:00
DEBUG_LOG_X11 ( " [%u] EnterNotify window=%lu, mode='%u' \n " , frame , event . xcrossing . window , event . xcrossing . mode ) ;
2021-05-05 12:44:11 +02:00
if ( main_loop & & ! mouse_mode_grab ) {
2017-03-05 16:44:50 +01:00
main_loop - > notification ( MainLoop : : NOTIFICATION_WM_MOUSE_ENTER ) ;
2021-05-05 12:44:11 +02:00
}
2017-03-05 16:44:50 +01:00
} break ;
2021-09-09 02:36:51 +02:00
case FocusIn : {
DEBUG_LOG_X11 ( " [%u] FocusIn window=%lu, mode='%u' \n " , frame , event . xfocus . window , event . xfocus . mode ) ;
2017-03-05 16:44:50 +01:00
minimized = false ;
window_has_focus = true ;
main_loop - > notification ( MainLoop : : NOTIFICATION_WM_FOCUS_IN ) ;
2019-11-28 13:41:07 +01:00
window_focused = true ;
2017-03-05 16:44:50 +01:00
if ( mouse_mode_grab ) {
// Show and update the cursor if confined and the window regained focus.
2021-05-05 12:44:11 +02:00
if ( mouse_mode = = MOUSE_MODE_CONFINED ) {
2017-03-05 16:44:50 +01:00
XUndefineCursor ( x11_display , x11_window ) ;
2022-07-29 19:41:29 +02:00
} else if ( mouse_mode = = MOUSE_MODE_CAPTURED | | mouse_mode = = MOUSE_MODE_CONFINED_HIDDEN ) { // or re-hide it in captured mode
2017-03-05 16:44:50 +01:00
XDefineCursor ( x11_display , x11_window , null_cursor ) ;
2021-05-05 12:44:11 +02:00
}
2017-03-05 16:44:50 +01:00
XGrabPointer (
x11_display , x11_window , True ,
ButtonPressMask | ButtonReleaseMask | PointerMotionMask ,
GrabModeAsync , GrabModeAsync , x11_window , None , CurrentTime ) ;
2017-01-25 19:21:41 +01:00
}
2017-11-29 21:01:26 +01:00
# ifdef TOUCH_ENABLED
2018-07-25 03:11:03 +02:00
// Grab touch devices to avoid OS gesture interference
2018-08-18 00:59:26 +02:00
/*for (int i = 0; i < xi.touch_devices.size(); ++i) {
XIGrabDevice ( x11_display , xi . touch_devices [ i ] , x11_window , CurrentTime , None , XIGrabModeAsync , XIGrabModeAsync , False , & xi . touch_event_mask ) ;
2017-12-10 07:05:17 +01:00
} */
2017-11-29 21:01:26 +01:00
# endif
2017-06-27 11:26:43 +02:00
if ( xic ) {
2020-09-25 18:16:39 +02:00
// Block events polling while changing input focus
// because it triggers some event polling internally.
MutexLock mutex_lock ( events_mutex ) ;
2017-06-27 11:26:43 +02:00
XSetICFocus ( xic ) ;
}
2021-09-09 02:36:51 +02:00
} break ;
case FocusOut : {
DEBUG_LOG_X11 ( " [%u] FocusOut window=%lu, mode='%u' \n " , frame , event . xfocus . window , event . xfocus . mode ) ;
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
window_has_focus = false ;
2019-04-15 19:41:44 +02:00
input - > release_pressed_events ( ) ;
2017-03-05 16:44:50 +01:00
main_loop - > notification ( MainLoop : : NOTIFICATION_WM_FOCUS_OUT ) ;
2019-11-28 13:41:07 +01:00
window_focused = false ;
2019-04-15 19:41:44 +02:00
2017-03-05 16:44:50 +01:00
if ( mouse_mode_grab ) {
2022-02-10 12:00:11 +01:00
//dear X11, I try, I really try, but you never work, you do whatever you want.
2017-03-05 16:44:50 +01:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
// Show the cursor if we're in captured mode so it doesn't look weird.
XUndefineCursor ( x11_display , x11_window ) ;
}
XUngrabPointer ( x11_display , CurrentTime ) ;
}
2017-11-29 21:01:26 +01:00
# ifdef TOUCH_ENABLED
// Ungrab touch devices so input works as usual while we are unfocused
2018-08-18 00:59:26 +02:00
/*for (int i = 0; i < xi.touch_devices.size(); ++i) {
XIUngrabDevice ( x11_display , xi . touch_devices [ i ] , CurrentTime ) ;
2017-12-10 07:05:17 +01:00
} */
2017-11-29 21:01:26 +01:00
// Release every pointer to avoid sticky points
2018-08-18 00:59:26 +02:00
for ( Map < int , Vector2 > : : Element * E = xi . state . front ( ) ; E ; E = E - > next ( ) ) {
2017-11-29 21:01:26 +01:00
Ref < InputEventScreenTouch > st ;
st . instance ( ) ;
st - > set_index ( E - > key ( ) ) ;
st - > set_position ( E - > get ( ) ) ;
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( st ) ;
2017-11-29 21:01:26 +01:00
}
2018-08-18 00:59:26 +02:00
xi . state . clear ( ) ;
2017-11-29 21:01:26 +01:00
# endif
2017-06-27 11:26:43 +02:00
if ( xic ) {
2020-09-25 18:16:39 +02:00
// Block events polling while changing input focus
// because it triggers some event polling internally.
MutexLock mutex_lock ( events_mutex ) ;
2017-06-27 11:26:43 +02:00
XUnsetICFocus ( xic ) ;
}
2021-09-09 02:36:51 +02:00
} break ;
case ConfigureNotify : {
DEBUG_LOG_X11 ( " [%u] ConfigureNotify window=%lu, event=%lu, above=%lu, override_redirect=%u \n " , frame , event . xconfigure . window , event . xconfigure . event , event . xconfigure . above , event . xconfigure . override_redirect ) ;
2016-03-09 00:00:52 +01:00
2017-10-24 21:35:28 +02:00
_window_changed ( & event ) ;
2021-09-09 02:36:51 +02:00
} break ;
2017-03-05 16:44:50 +01:00
case ButtonPress :
case ButtonRelease : {
/* exit in case of a mouse button press */
last_timestamp = event . xbutton . time ;
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
event . xbutton . x = last_mouse_pos . x ;
event . xbutton . y = last_mouse_pos . y ;
}
2016-03-09 00:00:52 +01:00
2017-05-20 17:38:03 +02:00
Ref < InputEventMouseButton > mb ;
mb . instance ( ) ;
get_key_modifier_state ( event . xbutton . state , mb ) ;
2018-12-15 14:10:06 +01:00
mb - > set_button_index ( event . xbutton . button ) ;
2021-05-05 12:44:11 +02:00
if ( mb - > get_button_index ( ) = = 2 ) {
2017-05-20 17:38:03 +02:00
mb - > set_button_index ( 3 ) ;
2021-05-05 12:44:11 +02:00
} else if ( mb - > get_button_index ( ) = = 3 ) {
2017-05-20 17:38:03 +02:00
mb - > set_button_index ( 2 ) ;
2021-05-05 12:44:11 +02:00
}
2018-12-15 14:10:06 +01:00
mb - > set_button_mask ( get_mouse_button_state ( mb - > get_button_index ( ) , event . xbutton . type ) ) ;
2018-07-08 15:12:13 +02:00
mb - > set_position ( Vector2 ( event . xbutton . x , event . xbutton . y ) ) ;
mb - > set_global_position ( mb - > get_position ( ) ) ;
2017-05-20 17:38:03 +02:00
mb - > set_pressed ( ( event . type = = ButtonPress ) ) ;
2016-03-09 00:00:52 +01:00
2018-07-20 18:16:09 +02:00
if ( event . type = = ButtonPress ) {
2021-09-09 02:36:51 +02:00
DEBUG_LOG_X11 ( " [%u] ButtonPress window=%lu, button_index=%u \n " , frame , event . xbutton . window , mb - > get_button_index ( ) ) ;
2017-03-05 16:44:50 +01:00
uint64_t diff = get_ticks_usec ( ) / 1000 - last_click_ms ;
2014-02-10 02:10:30 +01:00
2018-07-20 18:16:09 +02:00
if ( mb - > get_button_index ( ) = = last_click_button_index ) {
if ( diff < 400 & & Point2 ( last_click_pos ) . distance_to ( Point2 ( event . xbutton . x , event . xbutton . y ) ) < 5 ) {
last_click_ms = 0 ;
last_click_pos = Point2 ( - 100 , - 100 ) ;
last_click_button_index = - 1 ;
mb - > set_doubleclick ( true ) ;
}
} else if ( mb - > get_button_index ( ) < 4 | | mb - > get_button_index ( ) > 7 ) {
last_click_button_index = mb - > get_button_index ( ) ;
}
if ( ! mb - > is_doubleclick ( ) ) {
2017-03-05 16:44:50 +01:00
last_click_ms + = diff ;
last_click_pos = Point2 ( event . xbutton . x , event . xbutton . y ) ;
}
2021-09-09 02:36:51 +02:00
} else {
DEBUG_LOG_X11 ( " [%u] ButtonRelease window=%lu, button_index=%u \n " , frame , event . xbutton . window , mb - > get_button_index ( ) ) ;
2015-08-29 06:43:21 +02:00
}
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( mb ) ;
2017-03-05 16:44:50 +01:00
} break ;
case MotionNotify : {
2018-10-02 00:30:11 +02:00
// The X11 API requires filtering one-by-one through the motion
// notify events, in order to figure out which event is the one
// generated by warping the mouse pointer.
2017-03-05 16:44:50 +01:00
while ( true ) {
if ( mouse_mode = = MOUSE_MODE_CAPTURED & & event . xmotion . x = = current_videomode . width / 2 & & event . xmotion . y = = current_videomode . height / 2 ) {
//this is likely the warp event since it was warped here
center = Vector2 ( event . xmotion . x , event . xmotion . y ) ;
break ;
}
2020-09-25 18:16:39 +02:00
if ( event_index + 1 < events . size ( ) ) {
const XEvent & next_event = events [ event_index + 1 ] ;
if ( next_event . type = = MotionNotify ) {
+ + event_index ;
event = next_event ;
2017-03-05 16:44:50 +01:00
} else {
break ;
}
2015-08-29 06:43:21 +02:00
} else {
break ;
}
}
2017-03-05 16:44:50 +01:00
last_timestamp = event . xmotion . time ;
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
// Motion is also simple.
// A little hack is in order
// to be able to send relative motion events.
2018-08-18 00:59:26 +02:00
Point2 pos ( event . xmotion . x , event . xmotion . y ) ;
2014-02-10 02:10:30 +01:00
2018-02-24 03:04:30 +01:00
// Avoidance of spurious mouse motion (see handling of touch)
bool filter = false ;
// Adding some tolerance to match better Point2i to Vector2
2018-08-18 00:59:26 +02:00
if ( xi . state . size ( ) & & Vector2 ( pos ) . distance_squared_to ( xi . mouse_pos_to_filter ) < 2 ) {
2018-02-24 03:04:30 +01:00
filter = true ;
}
// Invalidate to avoid filtering a possible legitimate similar event coming later
2018-08-18 00:59:26 +02:00
xi . mouse_pos_to_filter = Vector2 ( 1e10 , 1e10 ) ;
2018-02-24 03:04:30 +01:00
if ( filter ) {
break ;
}
2017-03-05 16:44:50 +01:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
2018-08-18 00:59:26 +02:00
if ( xi . relative_motion . x = = 0 & & xi . relative_motion . y = = 0 ) {
2017-03-05 16:44:50 +01:00
break ;
}
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
Point2i new_center = pos ;
2018-08-18 00:59:26 +02:00
pos = last_mouse_pos + xi . relative_motion ;
2017-03-05 16:44:50 +01:00
center = new_center ;
do_mouse_warp = window_has_focus ; // warp the cursor if we're focused in
}
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
if ( ! last_mouse_pos_valid ) {
last_mouse_pos = pos ;
last_mouse_pos_valid = true ;
}
2016-03-09 00:00:52 +01:00
2018-08-18 00:59:26 +02:00
// Hackish but relative mouse motion is already handled in the RawMotion event.
// RawMotion does not provide the absolute mouse position (whereas MotionNotify does).
// Therefore, RawMotion cannot be the authority on absolute mouse position.
// RawMotion provides more precision than MotionNotify, which doesn't sense subpixel motion.
// Therefore, MotionNotify cannot be the authority on relative mouse motion.
// This means we need to take a combined approach...
Point2 rel ;
// Only use raw input if in capture mode. Otherwise use the classic behavior.
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
rel = xi . relative_motion ;
} else {
rel = pos - last_mouse_pos ;
}
// Reset to prevent lingering motion
xi . relative_motion . x = 0 ;
xi . relative_motion . y = 0 ;
2017-03-05 16:44:50 +01:00
2018-09-04 15:11:37 +02:00
if ( mouse_mode = = MOUSE_MODE_CAPTURED ) {
pos = Point2i ( current_videomode . width / 2 , current_videomode . height / 2 ) ;
}
2017-05-20 17:38:03 +02:00
Ref < InputEventMouseMotion > mm ;
mm . instance ( ) ;
2017-03-05 16:44:50 +01:00
2020-05-03 14:38:58 +02:00
if ( xi . pressure_supported ) {
mm - > set_pressure ( xi . pressure ) ;
} else {
mm - > set_pressure ( ( get_mouse_button_state ( ) & ( 1 < < ( BUTTON_LEFT - 1 ) ) ) ? 1.0f : 0.0f ) ;
}
2022-06-18 13:27:02 +02:00
mm - > set_pen_inverted ( xi . pen_inverted ) ;
2018-12-13 21:32:11 +01:00
mm - > set_tilt ( xi . tilt ) ;
2018-08-18 00:59:26 +02:00
// Make the absolute position integral so it doesn't look _too_ weird :)
Point2i posi ( pos ) ;
2017-05-20 17:38:03 +02:00
get_key_modifier_state ( event . xmotion . state , mm ) ;
2018-07-08 15:12:13 +02:00
mm - > set_button_mask ( get_mouse_button_state ( ) ) ;
2018-08-18 00:59:26 +02:00
mm - > set_position ( posi ) ;
mm - > set_global_position ( posi ) ;
2017-05-20 17:38:03 +02:00
mm - > set_speed ( input - > get_last_mouse_speed ( ) ) ;
2018-08-18 00:59:26 +02:00
2017-05-20 17:38:03 +02:00
mm - > set_relative ( rel ) ;
2017-03-05 16:44:50 +01:00
last_mouse_pos = pos ;
// printf("rel: %d,%d\n", rel.x, rel.y );
// Don't propagate the motion event unless we have focus
// this is so that the relative motion doesn't get messed up
// after we regain focus.
2021-05-05 12:44:11 +02:00
if ( window_has_focus | | ! mouse_mode_grab ) {
2020-09-20 21:30:34 +02:00
input - > parse_input_event ( mm ) ;
2021-05-05 12:44:11 +02:00
}
2017-03-05 16:44:50 +01:00
} break ;
2021-09-09 02:36:51 +02:00
2017-03-05 16:44:50 +01:00
case KeyPress :
case KeyRelease : {
2021-09-09 02:36:51 +02:00
# ifdef DISPLAY_SERVER_X11_DEBUG_LOGS_ENABLED
if ( event . type = = KeyPress ) {
DEBUG_LOG_X11 ( " [%u] KeyPress window=%lu, keycode=%u, time=%lu \n " , frame , event . xkey . window , event . xkey . keycode , event . xkey . time ) ;
} else {
DEBUG_LOG_X11 ( " [%u] KeyRelease window=%lu, keycode=%u, time=%lu \n " , frame , event . xkey . window , event . xkey . keycode , event . xkey . time ) ;
}
# endif
2017-03-05 16:44:50 +01:00
last_timestamp = event . xkey . time ;
// key event is a little complex, so
2018-10-25 02:19:21 +02:00
// it will be handled in its own function.
2021-09-09 02:36:51 +02:00
_handle_key_event ( & event . xkey , events , event_index ) ;
2017-03-05 16:44:50 +01:00
} break ;
2016-03-09 00:00:52 +01:00
2017-03-05 16:44:50 +01:00
case SelectionNotify :
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
if ( event . xselection . target = = requested ) {
Property p = read_property ( x11_display , x11_window , XInternAtom ( x11_display , " PRIMARY " , 0 ) ) ;
2016-05-28 21:35:42 +02:00
2017-03-05 16:44:50 +01:00
Vector < String > files = String ( ( char * ) p . data ) . split ( " \n " , false ) ;
2022-03-04 10:50:28 +01:00
XFree ( p . data ) ;
2017-03-05 16:44:50 +01:00
for ( int i = 0 ; i < files . size ( ) ; i + + ) {
2019-05-31 15:27:53 +02:00
files . write [ i ] = files [ i ] . replace ( " file:// " , " " ) . http_unescape ( ) . strip_edges ( ) ;
2017-03-05 16:44:50 +01:00
}
main_loop - > drop_files ( files ) ;
2016-05-28 21:35:42 +02:00
2017-03-05 16:44:50 +01:00
//Reply that all is well.
XClientMessageEvent m ;
memset ( & m , 0 , sizeof ( m ) ) ;
m . type = ClientMessage ;
m . display = x11_display ;
m . window = xdnd_source_window ;
m . message_type = xdnd_finished ;
m . format = 32 ;
m . data . l [ 0 ] = x11_window ;
m . data . l [ 1 ] = 1 ;
m . data . l [ 2 ] = xdnd_action_copy ; //We only ever copy.
2016-05-28 21:35:42 +02:00
2017-03-05 16:44:50 +01:00
XSendEvent ( x11_display , xdnd_source_window , False , NoEventMask , ( XEvent * ) & m ) ;
2016-05-28 21:35:42 +02:00
}
2017-03-05 16:44:50 +01:00
break ;
2014-02-10 02:10:30 +01:00
2017-03-05 16:44:50 +01:00
case ClientMessage :
2016-03-09 00:00:52 +01:00
2021-05-05 12:44:11 +02:00
if ( ( unsigned int ) event . xclient . data . l [ 0 ] = = ( unsigned int ) wm_delete ) {
2017-03-05 16:44:50 +01:00
main_loop - > notification ( MainLoop : : NOTIFICATION_WM_QUIT_REQUEST ) ;
2016-05-28 21:35:42 +02:00
2021-05-05 12:44:11 +02:00
} else if ( ( unsigned int ) event . xclient . message_type = = ( unsigned int ) xdnd_enter ) {
2017-03-05 16:44:50 +01:00
//File(s) have been dragged over the window, check for supported target (text/uri-list)
xdnd_version = ( event . xclient . data . l [ 1 ] > > 24 ) ;
Window source = event . xclient . data . l [ 0 ] ;
bool more_than_3 = event . xclient . data . l [ 1 ] & 1 ;
if ( more_than_3 ) {
Property p = read_property ( x11_display , source , XInternAtom ( x11_display , " XdndTypeList " , False ) ) ;
requested = pick_target_from_list ( x11_display , ( Atom * ) p . data , p . nitems ) ;
2022-03-04 10:50:28 +01:00
XFree ( p . data ) ;
2021-05-05 12:44:11 +02:00
} else {
2017-03-05 16:44:50 +01:00
requested = pick_target_from_atoms ( x11_display , event . xclient . data . l [ 2 ] , event . xclient . data . l [ 3 ] , event . xclient . data . l [ 4 ] ) ;
2021-05-05 12:44:11 +02:00
}
2017-03-05 16:44:50 +01:00
} else if ( ( unsigned int ) event . xclient . message_type = = ( unsigned int ) xdnd_position ) {
//xdnd position event, reply with an XDND status message
//just depending on type of data for now
2016-05-28 21:35:42 +02:00
XClientMessageEvent m ;
2016-06-19 02:06:25 +02:00
memset ( & m , 0 , sizeof ( m ) ) ;
2016-05-28 21:35:42 +02:00
m . type = ClientMessage ;
m . display = event . xclient . display ;
m . window = event . xclient . data . l [ 0 ] ;
2017-03-05 16:44:50 +01:00
m . message_type = xdnd_status ;
m . format = 32 ;
2016-05-28 21:35:42 +02:00
m . data . l [ 0 ] = x11_window ;
2017-03-05 16:44:50 +01:00
m . data . l [ 1 ] = ( requested ! = None ) ;
m . data . l [ 2 ] = 0 ; //empty rectangle
m . data . l [ 3 ] = 0 ;
m . data . l [ 4 ] = xdnd_action_copy ;
XSendEvent ( x11_display , event . xclient . data . l [ 0 ] , False , NoEventMask , ( XEvent * ) & m ) ;
XFlush ( x11_display ) ;
} else if ( ( unsigned int ) event . xclient . message_type = = ( unsigned int ) xdnd_drop ) {
if ( requested ! = None ) {
xdnd_source_window = event . xclient . data . l [ 0 ] ;
2021-05-05 12:44:11 +02:00
if ( xdnd_version > = 1 ) {
2017-03-05 16:44:50 +01:00
XConvertSelection ( x11_display , xdnd_selection , requested , XInternAtom ( x11_display , " PRIMARY " , 0 ) , x11_window , event . xclient . data . l [ 2 ] ) ;
2021-05-05 12:44:11 +02:00
} else {
2017-03-05 16:44:50 +01:00
XConvertSelection ( x11_display , xdnd_selection , requested , XInternAtom ( x11_display , " PRIMARY " , 0 ) , x11_window , CurrentTime ) ;
2021-05-05 12:44:11 +02:00
}
2017-03-05 16:44:50 +01:00
} else {
//Reply that we're not interested.
XClientMessageEvent m ;
memset ( & m , 0 , sizeof ( m ) ) ;
m . type = ClientMessage ;
m . display = event . xclient . display ;
m . window = event . xclient . data . l [ 0 ] ;
m . message_type = xdnd_finished ;
m . format = 32 ;
m . data . l [ 0 ] = x11_window ;
m . data . l [ 1 ] = 0 ;
m . data . l [ 2 ] = None ; //Failed.
XSendEvent ( x11_display , event . xclient . data . l [ 0 ] , False , NoEventMask , ( XEvent * ) & m ) ;
}
2016-05-28 21:35:42 +02:00
}
2017-03-05 16:44:50 +01:00
break ;
default :
break ;
2014-02-10 02:10:30 +01:00
}
}
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
XFlush ( x11_display ) ;
if ( do_mouse_warp ) {
XWarpPointer ( x11_display , None , x11_window ,
2017-03-05 16:44:50 +01:00
0 , 0 , 0 , 0 , ( int ) current_videomode . width / 2 , ( int ) current_videomode . height / 2 ) ;
2015-02-12 15:58:00 +01:00
2016-03-09 00:00:52 +01:00
/*
2015-02-12 15:58:00 +01:00
Window root , child ;
int root_x , root_y ;
int win_x , win_y ;
unsigned int mask ;
XQueryPointer ( x11_display , x11_window , & root , & child , & root_x , & root_y , & win_x , & win_y , & mask ) ;
printf ( " Root: %d,%d \n " , root_x , root_y ) ;
printf ( " Win: %d,%d \n " , win_x , win_y ) ;
*/
2014-02-10 02:10:30 +01:00
}
2019-03-03 23:52:18 +01:00
2021-08-03 18:59:20 +02:00
input - > flush_buffered_events ( ) ;
2014-02-10 02:10:30 +01:00
}
MainLoop * OS_X11 : : get_main_loop ( ) const {
return main_loop ;
}
2022-04-28 09:24:29 +02:00
uint64_t OS_X11 : : get_embedded_pck_offset ( ) const {
FileAccessRef f = FileAccess : : open ( get_executable_path ( ) , FileAccess : : READ ) ;
if ( ! f ) {
return 0 ;
}
// Read and check ELF magic number.
{
uint32_t magic = f - > get_32 ( ) ;
if ( magic ! = 0x464c457f ) { // 0x7F + "ELF"
return 0 ;
}
}
// Read program architecture bits from class field.
int bits = f - > get_8 ( ) * 32 ;
// Get info about the section header table.
int64_t section_table_pos ;
int64_t section_header_size ;
if ( bits = = 32 ) {
section_header_size = 40 ;
f - > seek ( 0x20 ) ;
section_table_pos = f - > get_32 ( ) ;
f - > seek ( 0x30 ) ;
} else { // 64
section_header_size = 64 ;
f - > seek ( 0x28 ) ;
section_table_pos = f - > get_64 ( ) ;
f - > seek ( 0x3c ) ;
}
int num_sections = f - > get_16 ( ) ;
int string_section_idx = f - > get_16 ( ) ;
// Load the strings table.
uint8_t * strings ;
{
// Jump to the strings section header.
f - > seek ( section_table_pos + string_section_idx * section_header_size ) ;
// Read strings data size and offset.
int64_t string_data_pos ;
int64_t string_data_size ;
if ( bits = = 32 ) {
f - > seek ( f - > get_position ( ) + 0x10 ) ;
string_data_pos = f - > get_32 ( ) ;
string_data_size = f - > get_32 ( ) ;
} else { // 64
f - > seek ( f - > get_position ( ) + 0x18 ) ;
string_data_pos = f - > get_64 ( ) ;
string_data_size = f - > get_64 ( ) ;
}
// Read strings data.
f - > seek ( string_data_pos ) ;
strings = ( uint8_t * ) memalloc ( string_data_size ) ;
if ( ! strings ) {
return 0 ;
}
f - > get_buffer ( strings , string_data_size ) ;
}
// Search for the "pck" section.
int64_t off = 0 ;
for ( int i = 0 ; i < num_sections ; + + i ) {
int64_t section_header_pos = section_table_pos + i * section_header_size ;
f - > seek ( section_header_pos ) ;
uint32_t name_offset = f - > get_32 ( ) ;
if ( strcmp ( ( char * ) strings + name_offset , " pck " ) = = 0 ) {
if ( bits = = 32 ) {
f - > seek ( section_header_pos + 0x10 ) ;
off = f - > get_32 ( ) ;
} else { // 64
f - > seek ( section_header_pos + 0x18 ) ;
off = f - > get_64 ( ) ;
}
break ;
}
}
memfree ( strings ) ;
return off ;
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : delete_main_loop ( ) {
2020-10-09 21:19:51 +02:00
// Send owned clipboard data to clipboard manager before exit.
// This has to be done here because the clipboard data is cleared before finalize().
_clipboard_transfer_ownership ( XA_PRIMARY , x11_window ) ;
_clipboard_transfer_ownership ( XInternAtom ( x11_display , " CLIPBOARD " , 0 ) , x11_window ) ;
2014-02-10 02:10:30 +01:00
2021-05-05 12:44:11 +02:00
if ( main_loop ) {
2014-02-10 02:10:30 +01:00
memdelete ( main_loop ) ;
2021-05-05 12:44:11 +02:00
}
2021-05-04 16:00:45 +02:00
main_loop = nullptr ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
void OS_X11 : : set_main_loop ( MainLoop * p_main_loop ) {
main_loop = p_main_loop ;
2014-02-10 02:10:30 +01:00
input - > set_main_loop ( p_main_loop ) ;
}
bool OS_X11 : : can_draw ( ) const {
return ! minimized ;
} ;
2017-03-05 16:44:50 +01:00
void OS_X11 : : set_clipboard ( const String & p_text ) {
2020-09-25 18:16:39 +02:00
{
// The clipboard content can be accessed while polling for events.
MutexLock mutex_lock ( events_mutex ) ;
OS : : set_clipboard ( p_text ) ;
}
2014-02-10 02:10:30 +01:00
XSetSelectionOwner ( x11_display , XA_PRIMARY , x11_window , CurrentTime ) ;
XSetSelectionOwner ( x11_display , XInternAtom ( x11_display , " CLIPBOARD " , 0 ) , x11_window , CurrentTime ) ;
} ;
2020-09-25 18:16:39 +02:00
Bool OS_X11 : : _predicate_clipboard_selection ( Display * display , XEvent * event , XPointer arg ) {
if ( event - > type = = SelectionNotify & & event - > xselection . requestor = = * ( Window * ) arg ) {
return True ;
} else {
return False ;
}
}
2020-10-09 21:19:51 +02:00
Bool OS_X11 : : _predicate_clipboard_incr ( Display * display , XEvent * event , XPointer arg ) {
if ( event - > type = = PropertyNotify & & event - > xproperty . state = = PropertyNewValue ) {
return True ;
} else {
return False ;
}
}
2014-02-10 02:10:30 +01:00
2020-10-09 21:19:51 +02:00
String OS_X11 : : _get_clipboard_impl ( Atom p_source , Window x11_window , Atom target ) const {
2014-02-10 02:10:30 +01:00
String ret ;
2020-09-25 18:16:39 +02:00
Window selection_owner = XGetSelectionOwner ( x11_display , p_source ) ;
if ( selection_owner = = x11_window ) {
2021-10-20 16:19:17 +02:00
static const char * target_type = " PRIMARY " ;
2022-04-24 03:44:47 +02:00
if ( p_source ! = None & & get_atom_name ( x11_display , p_source ) = = target_type ) {
2021-10-20 16:19:17 +02:00
return OS : : get_clipboard_primary ( ) ;
} else {
return OS : : get_clipboard ( ) ;
}
2020-09-25 18:16:39 +02:00
}
2014-02-10 02:10:30 +01:00
2020-09-25 18:16:39 +02:00
if ( selection_owner ! = None ) {
2020-10-09 21:19:51 +02:00
// Block events polling while processing selection events.
MutexLock mutex_lock ( events_mutex ) ;
2020-09-25 18:16:39 +02:00
2020-10-09 21:19:51 +02:00
Atom selection = XA_PRIMARY ;
XConvertSelection ( x11_display , p_source , target , selection ,
x11_window , CurrentTime ) ;
2020-09-25 18:16:39 +02:00
2020-10-09 21:19:51 +02:00
XFlush ( x11_display ) ;
2014-02-10 02:10:30 +01:00
2020-10-09 21:19:51 +02:00
// Blocking wait for predicate to be True and remove the event from the queue.
XEvent event ;
XIfEvent ( x11_display , & event , _predicate_clipboard_selection , ( XPointer ) & x11_window ) ;
// Do not get any data, see how much data is there.
Atom type ;
int format , result ;
unsigned long len , bytes_left , dummy ;
unsigned char * data ;
2017-03-05 16:44:50 +01:00
XGetWindowProperty ( x11_display , x11_window ,
selection , // Tricky..
0 , 0 , // offset - len
0 , // Delete 0==FALSE
2020-10-09 21:19:51 +02:00
AnyPropertyType , // flag
2017-03-05 16:44:50 +01:00
& type , // return type
& format , // return format
2020-10-09 21:19:51 +02:00
& len , & bytes_left , // data length
2017-03-05 16:44:50 +01:00
& data ) ;
2020-10-09 21:19:51 +02:00
if ( data ) {
XFree ( data ) ;
}
if ( type = = XInternAtom ( x11_display , " INCR " , 0 ) ) {
// Data is going to be received incrementally.
2021-09-09 02:36:51 +02:00
DEBUG_LOG_X11 ( " INCR selection started. \n " ) ;
2020-10-09 21:19:51 +02:00
LocalVector < uint8_t > incr_data ;
uint32_t data_size = 0 ;
bool success = false ;
// Delete INCR property to notify the owner.
XDeleteProperty ( x11_display , x11_window , type ) ;
// Process events from the queue.
bool done = false ;
while ( ! done ) {
if ( ! _wait_for_events ( ) ) {
// Error or timeout, abort.
break ;
}
// Non-blocking wait for next event and remove it from the queue.
XEvent ev ;
2021-05-04 16:00:45 +02:00
while ( XCheckIfEvent ( x11_display , & ev , _predicate_clipboard_incr , nullptr ) ) {
2020-10-09 21:19:51 +02:00
result = XGetWindowProperty ( x11_display , x11_window ,
selection , // selection type
0 , LONG_MAX , // offset - len
True , // delete property to notify the owner
AnyPropertyType , // flag
& type , // return type
& format , // return format
& len , & bytes_left , // data length
& data ) ;
2021-09-09 02:36:51 +02:00
DEBUG_LOG_X11 ( " PropertyNotify: len=%lu, format=%i \n " , len , format ) ;
2020-10-09 21:19:51 +02:00
if ( result = = Success ) {
if ( data & & ( len > 0 ) ) {
uint32_t prev_size = incr_data . size ( ) ;
if ( prev_size = = 0 ) {
// First property contains initial data size.
unsigned long initial_size = * ( unsigned long * ) data ;
incr_data . resize ( initial_size ) ;
} else {
// New chunk, resize to be safe and append data.
incr_data . resize ( MAX ( data_size + len , prev_size ) ) ;
memcpy ( incr_data . ptr ( ) + data_size , data , len ) ;
data_size + = len ;
}
} else {
// Last chunk, process finished.
done = true ;
success = true ;
}
} else {
printf ( " Failed to get selection data chunk. \n " ) ;
done = true ;
}
if ( data ) {
XFree ( data ) ;
}
if ( done ) {
break ;
}
}
}
if ( success & & ( data_size > 0 ) ) {
ret . parse_utf8 ( ( const char * ) incr_data . ptr ( ) , data_size ) ;
}
} else if ( bytes_left > 0 ) {
// Data is ready and can be processed all at once.
2017-03-05 16:44:50 +01:00
result = XGetWindowProperty ( x11_display , x11_window ,
selection , 0 , bytes_left , 0 ,
AnyPropertyType , & type , & format ,
& len , & dummy , & data ) ;
2020-10-09 21:19:51 +02:00
2014-02-10 02:10:30 +01:00
if ( result = = Success ) {
2017-03-05 16:44:50 +01:00
ret . parse_utf8 ( ( const char * ) data ) ;
2020-10-09 21:19:51 +02:00
} else {
printf ( " Failed to get selection data. \n " ) ;
}
if ( data ) {
XFree ( data ) ;
}
2014-02-10 02:10:30 +01:00
}
}
return ret ;
2016-07-21 21:11:34 +02:00
}
2014-02-10 02:10:30 +01:00
2020-09-25 18:16:39 +02:00
String OS_X11 : : _get_clipboard ( Atom p_source , Window x11_window ) const {
2017-07-25 00:36:19 +02:00
String ret ;
Atom utf8_atom = XInternAtom ( x11_display , " UTF8_STRING " , True ) ;
if ( utf8_atom ! = None ) {
2020-09-25 18:16:39 +02:00
ret = _get_clipboard_impl ( p_source , x11_window , utf8_atom ) ;
2017-07-25 00:36:19 +02:00
}
2020-09-25 18:16:39 +02:00
if ( ret . empty ( ) ) {
ret = _get_clipboard_impl ( p_source , x11_window , XA_STRING ) ;
2017-07-25 00:36:19 +02:00
}
return ret ;
}
2014-02-10 02:10:30 +01:00
String OS_X11 : : get_clipboard ( ) const {
String ret ;
2020-09-25 18:16:39 +02:00
ret = _get_clipboard ( XInternAtom ( x11_display , " CLIPBOARD " , 0 ) , x11_window ) ;
2014-02-10 02:10:30 +01:00
2020-09-25 18:16:39 +02:00
if ( ret . empty ( ) ) {
ret = _get_clipboard ( XA_PRIMARY , x11_window ) ;
2014-02-10 02:10:30 +01:00
} ;
return ret ;
2016-07-21 21:11:34 +02:00
}
2014-02-10 02:10:30 +01:00
2020-10-09 21:19:51 +02:00
Bool OS_X11 : : _predicate_clipboard_save_targets ( Display * display , XEvent * event , XPointer arg ) {
if ( event - > xany . window = = * ( Window * ) arg ) {
return ( event - > type = = SelectionRequest ) | |
2021-10-28 13:23:24 +02:00
( event - > type = = SelectionNotify ) ;
2020-10-09 21:19:51 +02:00
} else {
return False ;
}
}
void OS_X11 : : _clipboard_transfer_ownership ( Atom p_source , Window x11_window ) const {
Window selection_owner = XGetSelectionOwner ( x11_display , p_source ) ;
if ( selection_owner ! = x11_window ) {
return ;
}
// Block events polling while processing selection events.
MutexLock mutex_lock ( events_mutex ) ;
Atom clipboard_manager = XInternAtom ( x11_display , " CLIPBOARD_MANAGER " , False ) ;
Atom save_targets = XInternAtom ( x11_display , " SAVE_TARGETS " , False ) ;
XConvertSelection ( x11_display , clipboard_manager , save_targets , None ,
x11_window , CurrentTime ) ;
// Process events from the queue.
while ( true ) {
if ( ! _wait_for_events ( ) ) {
// Error or timeout, abort.
break ;
}
// Non-blocking wait for next event and remove it from the queue.
XEvent ev ;
while ( XCheckIfEvent ( x11_display , & ev , _predicate_clipboard_save_targets , ( XPointer ) & x11_window ) ) {
switch ( ev . type ) {
case SelectionRequest :
_handle_selection_request_event ( & ( ev . xselectionrequest ) ) ;
break ;
case SelectionNotify : {
if ( ev . xselection . target = = save_targets ) {
// Once SelectionNotify is received, we're done whether it succeeded or not.
return ;
}
break ;
}
}
}
}
}
2021-10-20 16:19:17 +02:00
void OS_X11 : : set_clipboard_primary ( const String & p_text ) {
if ( ! p_text . empty ( ) ) {
{
// The clipboard content can be accessed while polling for events.
MutexLock mutex_lock ( events_mutex ) ;
OS : : set_clipboard_primary ( p_text ) ;
}
XSetSelectionOwner ( x11_display , XA_PRIMARY , x11_window , CurrentTime ) ;
XSetSelectionOwner ( x11_display , XInternAtom ( x11_display , " PRIMARY " , 0 ) , x11_window , CurrentTime ) ;
}
}
String OS_X11 : : get_clipboard_primary ( ) const {
String ret ;
ret = _get_clipboard ( XInternAtom ( x11_display , " PRIMARY " , 0 ) , x11_window ) ;
if ( ret . empty ( ) ) {
ret = _get_clipboard ( XA_PRIMARY , x11_window ) ;
}
return ret ;
}
2019-05-20 19:36:24 +02:00
String OS_X11 : : get_name ( ) const {
2014-02-10 02:10:30 +01:00
return " X11 " ;
}
2014-04-18 16:43:54 +02:00
Error OS_X11 : : shell_open ( String p_uri ) {
2014-12-02 18:02:41 +01:00
Error ok ;
2020-10-24 17:54:24 +02:00
int err_code ;
2014-12-02 18:02:41 +01:00
List < String > args ;
args . push_back ( p_uri ) ;
2020-10-24 17:54:24 +02:00
// Agnostic
2021-05-04 16:00:45 +02:00
ok = execute ( " xdg-open " , args , true , nullptr , nullptr , & err_code ) ;
2020-10-24 17:54:24 +02:00
if ( ok = = OK & & ! err_code ) {
return OK ;
} else if ( err_code = = 2 ) {
return ERR_FILE_NOT_FOUND ;
}
// GNOME
args . push_front ( " open " ) ; // The command is `gio open`, so we need to add it to args
2021-05-04 16:00:45 +02:00
ok = execute ( " gio " , args , true , nullptr , nullptr , & err_code ) ;
2020-10-24 17:54:24 +02:00
if ( ok = = OK & & ! err_code ) {
2014-12-02 18:02:41 +01:00
return OK ;
2020-10-24 17:54:24 +02:00
} else if ( err_code = = 2 ) {
return ERR_FILE_NOT_FOUND ;
}
args . pop_front ( ) ;
2021-05-04 16:00:45 +02:00
ok = execute ( " gvfs-open " , args , true , nullptr , nullptr , & err_code ) ;
2020-10-24 17:54:24 +02:00
if ( ok = = OK & & ! err_code ) {
return OK ;
} else if ( err_code = = 2 ) {
return ERR_FILE_NOT_FOUND ;
}
// KDE
2021-05-04 16:00:45 +02:00
ok = execute ( " kde-open5 " , args , true , nullptr , nullptr , & err_code ) ;
2020-10-24 17:54:24 +02:00
if ( ok = = OK & & ! err_code ) {
2014-12-02 18:02:41 +01:00
return OK ;
2020-10-24 17:54:24 +02:00
}
2021-05-04 16:00:45 +02:00
ok = execute ( " kde-open " , args , true , nullptr , nullptr , & err_code ) ;
2020-10-24 17:54:24 +02:00
return ! err_code ? ok : FAILED ;
2014-12-02 18:02:41 +01:00
}
2017-07-19 22:00:46 +02:00
bool OS_X11 : : _check_internal_feature_support ( const String & p_feature ) {
2021-10-20 16:19:17 +02:00
if ( p_feature = = " pc " ) {
return true ;
}
if ( p_feature = = " primary_clipboard " ) {
return true ;
}
return false ;
2017-07-19 22:00:46 +02:00
}
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
String OS_X11 : : get_config_path ( ) const {
if ( has_environment ( " XDG_CONFIG_HOME " ) ) {
2021-05-07 19:02:35 +02:00
if ( get_environment ( " XDG_CONFIG_HOME " ) . is_abs_path ( ) ) {
return get_environment ( " XDG_CONFIG_HOME " ) ;
} else {
WARN_PRINT_ONCE ( " `XDG_CONFIG_HOME` is a relative path. Ignoring its value and falling back to `$HOME/.config` or `.` per the XDG Base Directory specification. " ) ;
}
}
if ( has_environment ( " HOME " ) ) {
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
return get_environment ( " HOME " ) . plus_file ( " .config " ) ;
}
2021-05-07 19:02:35 +02:00
return " . " ;
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
}
String OS_X11 : : get_data_path ( ) const {
if ( has_environment ( " XDG_DATA_HOME " ) ) {
2021-05-07 19:02:35 +02:00
if ( get_environment ( " XDG_DATA_HOME " ) . is_abs_path ( ) ) {
return get_environment ( " XDG_DATA_HOME " ) ;
} else {
WARN_PRINT_ONCE ( " `XDG_DATA_HOME` is a relative path. Ignoring its value and falling back to `$HOME/.local/share` or `get_config_path()` per the XDG Base Directory specification. " ) ;
}
}
if ( has_environment ( " HOME " ) ) {
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
return get_environment ( " HOME " ) . plus_file ( " .local/share " ) ;
}
2021-05-07 19:02:35 +02:00
return get_config_path ( ) ;
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
}
String OS_X11 : : get_cache_path ( ) const {
if ( has_environment ( " XDG_CACHE_HOME " ) ) {
2021-05-07 19:02:35 +02:00
if ( get_environment ( " XDG_CACHE_HOME " ) . is_abs_path ( ) ) {
return get_environment ( " XDG_CACHE_HOME " ) ;
} else {
WARN_PRINT_ONCE ( " `XDG_CACHE_HOME` is a relative path. Ignoring its value and falling back to `$HOME/.cache` or `get_config_path()` per the XDG Base Directory specification. " ) ;
}
}
if ( has_environment ( " HOME " ) ) {
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
return get_environment ( " HOME " ) . plus_file ( " .cache " ) ;
}
2021-05-07 19:02:35 +02:00
return get_config_path ( ) ;
Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
2017-11-17 17:11:41 +01:00
}
2021-07-11 03:39:31 +02:00
String OS_X11 : : get_system_dir ( SystemDir p_dir , bool p_shared_storage ) const {
2014-12-02 18:02:41 +01:00
String xdgparam ;
2017-03-05 16:44:50 +01:00
switch ( p_dir ) {
2014-12-02 18:02:41 +01:00
case SYSTEM_DIR_DESKTOP : {
2017-03-05 16:44:50 +01:00
xdgparam = " DESKTOP " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_DCIM : {
2017-03-05 16:44:50 +01:00
xdgparam = " PICTURES " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_DOCUMENTS : {
2017-03-05 16:44:50 +01:00
xdgparam = " DOCUMENTS " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_DOWNLOADS : {
2017-03-05 16:44:50 +01:00
xdgparam = " DOWNLOAD " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_MOVIES : {
2017-03-05 16:44:50 +01:00
xdgparam = " VIDEOS " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_MUSIC : {
2017-03-05 16:44:50 +01:00
xdgparam = " MUSIC " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_PICTURES : {
2017-03-05 16:44:50 +01:00
xdgparam = " PICTURES " ;
2014-12-02 18:02:41 +01:00
} break ;
case SYSTEM_DIR_RINGTONES : {
2017-03-05 16:44:50 +01:00
xdgparam = " MUSIC " ;
2014-12-02 18:02:41 +01:00
} break ;
}
String pipe ;
List < String > arg ;
arg . push_back ( xdgparam ) ;
2021-05-04 16:00:45 +02:00
Error err = const_cast < OS_X11 * > ( this ) - > execute ( " xdg-user-dir " , arg , true , nullptr , & pipe ) ;
2021-05-05 12:44:11 +02:00
if ( err ! = OK ) {
2014-12-02 18:02:41 +01:00
return " . " ;
2021-05-05 12:44:11 +02:00
}
2014-12-02 18:02:41 +01:00
return pipe . strip_edges ( ) ;
2014-04-18 16:43:54 +02:00
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : move_window_to_foreground ( ) {
2018-08-16 21:36:37 +02:00
XEvent xev ;
Atom net_active_window = XInternAtom ( x11_display , " _NET_ACTIVE_WINDOW " , False ) ;
memset ( & xev , 0 , sizeof ( xev ) ) ;
xev . type = ClientMessage ;
xev . xclient . window = x11_window ;
xev . xclient . message_type = net_active_window ;
xev . xclient . format = 32 ;
xev . xclient . data . l [ 0 ] = 1 ;
xev . xclient . data . l [ 1 ] = CurrentTime ;
XSendEvent ( x11_display , DefaultRootWindow ( x11_display ) , False , SubstructureRedirectMask | SubstructureNotifyMask , & xev ) ;
XFlush ( x11_display ) ;
2014-02-10 02:10:30 +01:00
}
void OS_X11 : : set_cursor_shape ( CursorShape p_shape ) {
2017-03-05 16:44:50 +01:00
ERR_FAIL_INDEX ( p_shape , CURSOR_MAX ) ;
2014-02-10 02:10:30 +01:00
2018-09-15 20:54:22 +02:00
if ( p_shape = = current_cursor ) {
2014-02-10 02:10:30 +01:00
return ;
2018-09-15 20:54:22 +02:00
}
if ( mouse_mode = = MOUSE_MODE_VISIBLE | | mouse_mode = = MOUSE_MODE_CONFINED ) {
if ( cursors [ p_shape ] ! = None ) {
2017-03-05 16:44:50 +01:00
XDefineCursor ( x11_display , x11_window , cursors [ p_shape ] ) ;
2018-09-15 20:54:22 +02:00
} else if ( cursors [ CURSOR_ARROW ] ! = None ) {
2017-03-05 16:44:50 +01:00
XDefineCursor ( x11_display , x11_window , cursors [ CURSOR_ARROW ] ) ;
2018-09-15 20:54:22 +02:00
}
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
current_cursor = p_shape ;
2014-02-10 02:10:30 +01:00
}
2019-04-15 17:30:20 +02:00
OS : : CursorShape OS_X11 : : get_cursor_shape ( ) const {
return current_cursor ;
}
2017-11-10 11:50:11 +01:00
void OS_X11 : : set_custom_mouse_cursor ( const RES & p_cursor , CursorShape p_shape , const Vector2 & p_hotspot ) {
if ( p_cursor . is_valid ( ) ) {
2021-05-04 14:20:36 +02:00
Map < CursorShape , Vector < Variant > > : : Element * cursor_c = cursors_cache . find ( p_shape ) ;
2019-07-08 22:37:18 +02:00
if ( cursor_c ) {
if ( cursor_c - > get ( ) [ 0 ] = = p_cursor & & cursor_c - > get ( ) [ 1 ] = = p_hotspot ) {
set_cursor_shape ( p_shape ) ;
return ;
}
cursors_cache . erase ( p_shape ) ;
}
2017-11-10 11:50:11 +01:00
Ref < Texture > texture = p_cursor ;
2018-05-08 16:07:43 +02:00
Ref < AtlasTexture > atlas_texture = p_cursor ;
Ref < Image > image ;
Size2 texture_size ;
Rect2 atlas_rect ;
2017-11-10 11:50:11 +01:00
2018-05-08 16:07:43 +02:00
if ( texture . is_valid ( ) ) {
image = texture - > get_data ( ) ;
}
if ( ! image . is_valid ( ) & & atlas_texture . is_valid ( ) ) {
texture = atlas_texture - > get_atlas ( ) ;
atlas_rect . size . width = texture - > get_width ( ) ;
atlas_rect . size . height = texture - > get_height ( ) ;
atlas_rect . position . x = atlas_texture - > get_region ( ) . position . x ;
atlas_rect . position . y = atlas_texture - > get_region ( ) . position . y ;
texture_size . width = atlas_texture - > get_region ( ) . size . x ;
texture_size . height = atlas_texture - > get_region ( ) . size . y ;
} else if ( image . is_valid ( ) ) {
texture_size . width = texture - > get_width ( ) ;
texture_size . height = texture - > get_height ( ) ;
}
ERR_FAIL_COND ( ! texture . is_valid ( ) ) ;
2018-09-04 04:42:23 +02:00
ERR_FAIL_COND ( p_hotspot . x < 0 | | p_hotspot . y < 0 ) ;
2018-05-08 16:07:43 +02:00
ERR_FAIL_COND ( texture_size . width > 256 | | texture_size . height > 256 ) ;
2018-09-03 14:21:13 +02:00
ERR_FAIL_COND ( p_hotspot . x > texture_size . width | | p_hotspot . y > texture_size . height ) ;
2018-05-08 16:07:43 +02:00
image = texture - > get_data ( ) ;
2017-11-10 11:50:11 +01:00
2018-05-28 14:36:30 +02:00
ERR_FAIL_COND ( ! image . is_valid ( ) ) ;
2017-11-10 11:50:11 +01:00
// Create the cursor structure
2018-05-08 16:07:43 +02:00
XcursorImage * cursor_image = XcursorImageCreate ( texture_size . width , texture_size . height ) ;
XcursorUInt image_size = texture_size . width * texture_size . height ;
2017-11-10 11:50:11 +01:00
XcursorDim size = sizeof ( XcursorPixel ) * image_size ;
cursor_image - > version = 1 ;
cursor_image - > size = size ;
cursor_image - > xhot = p_hotspot . x ;
cursor_image - > yhot = p_hotspot . y ;
// allocate memory to contain the whole file
2018-05-26 20:58:12 +02:00
cursor_image - > pixels = ( XcursorPixel * ) memalloc ( size ) ;
2017-11-10 11:50:11 +01:00
image - > lock ( ) ;
for ( XcursorPixel index = 0 ; index < image_size ; index + + ) {
2018-05-08 16:07:43 +02:00
int row_index = floor ( index / texture_size . width ) + atlas_rect . position . y ;
int column_index = ( index % int ( texture_size . width ) ) + atlas_rect . position . x ;
if ( atlas_texture . is_valid ( ) ) {
column_index = MIN ( column_index , atlas_rect . size . width - 1 ) ;
row_index = MIN ( row_index , atlas_rect . size . height - 1 ) ;
}
2017-11-10 11:50:11 +01:00
2018-04-05 18:07:44 +02:00
* ( cursor_image - > pixels + index ) = image - > get_pixel ( column_index , row_index ) . to_argb32 ( ) ;
2017-11-10 11:50:11 +01:00
}
image - > unlock ( ) ;
2021-05-04 16:00:45 +02:00
ERR_FAIL_COND ( cursor_image - > pixels = = nullptr ) ;
2017-11-10 11:50:11 +01:00
// Save it for a further usage
cursors [ p_shape ] = XcursorImageLoadCursor ( x11_display , cursor_image ) ;
2019-07-08 22:37:18 +02:00
Vector < Variant > params ;
params . push_back ( p_cursor ) ;
params . push_back ( p_hotspot ) ;
cursors_cache . insert ( p_shape , params ) ;
2018-09-13 19:53:20 +02:00
if ( p_shape = = current_cursor ) {
2018-09-17 16:37:54 +02:00
if ( mouse_mode = = MOUSE_MODE_VISIBLE | | mouse_mode = = MOUSE_MODE_CONFINED ) {
XDefineCursor ( x11_display , x11_window , cursors [ p_shape ] ) ;
}
2017-11-10 11:50:11 +01:00
}
2018-05-26 20:58:12 +02:00
memfree ( cursor_image - > pixels ) ;
XcursorImageDestroy ( cursor_image ) ;
2018-05-11 00:17:00 +02:00
} else {
// Reset to default system cursor
if ( img [ p_shape ] ) {
cursors [ p_shape ] = XcursorImageLoadCursor ( x11_display , img [ p_shape ] ) ;
}
2018-09-13 19:53:20 +02:00
CursorShape c = current_cursor ;
2018-05-11 00:17:00 +02:00
current_cursor = CURSOR_MAX ;
2018-09-13 19:53:20 +02:00
set_cursor_shape ( c ) ;
2019-10-03 13:02:11 +02:00
cursors_cache . erase ( p_shape ) ;
2017-11-10 11:50:11 +01:00
}
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : release_rendering_thread ( ) {
2018-06-22 16:42:28 +02:00
# if defined(OPENGL_ENABLED)
2014-02-10 02:10:30 +01:00
context_gl - > release_current ( ) ;
2018-06-22 16:42:28 +02:00
# endif
2014-02-10 02:10:30 +01:00
}
void OS_X11 : : make_rendering_thread ( ) {
2018-06-22 16:42:28 +02:00
# if defined(OPENGL_ENABLED)
2014-02-10 02:10:30 +01:00
context_gl - > make_current ( ) ;
2018-06-22 16:42:28 +02:00
# endif
2014-02-10 02:10:30 +01:00
}
void OS_X11 : : swap_buffers ( ) {
2018-06-22 16:42:28 +02:00
# if defined(OPENGL_ENABLED)
2014-02-10 02:10:30 +01:00
context_gl - > swap_buffers ( ) ;
2018-06-22 16:42:28 +02:00
# endif
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
void OS_X11 : : alert ( const String & p_alert , const String & p_title ) {
2020-09-23 13:43:51 +02:00
if ( is_no_window_mode_enabled ( ) ) {
print_line ( " ALERT: " + p_title + " : " + p_alert ) ;
return ;
}
2018-08-24 22:41:29 +02:00
const char * message_programs [ ] = { " zenity " , " kdialog " , " Xdialog " , " xmessage " } ;
String path = get_environment ( " PATH " ) ;
Vector < String > path_elems = path . split ( " : " , false ) ;
String program ;
for ( int i = 0 ; i < path_elems . size ( ) ; i + + ) {
2019-09-22 18:45:08 +02:00
for ( uint64_t k = 0 ; k < sizeof ( message_programs ) / sizeof ( char * ) ; k + + ) {
2019-06-16 14:31:57 +02:00
String tested_path = path_elems [ i ] . plus_file ( message_programs [ k ] ) ;
2018-08-24 22:41:29 +02:00
if ( FileAccess : : exists ( tested_path ) ) {
program = tested_path ;
break ;
}
}
2021-05-05 12:44:11 +02:00
if ( program . length ( ) ) {
2018-08-24 22:41:29 +02:00
break ;
2021-05-05 12:44:11 +02:00
}
2018-08-24 22:41:29 +02:00
}
2015-09-21 14:39:46 +02:00
List < String > args ;
2018-08-24 22:41:29 +02:00
if ( program . ends_with ( " zenity " ) ) {
args . push_back ( " --error " ) ;
args . push_back ( " --width " ) ;
args . push_back ( " 500 " ) ;
args . push_back ( " --title " ) ;
args . push_back ( p_title ) ;
args . push_back ( " --text " ) ;
args . push_back ( p_alert ) ;
}
if ( program . ends_with ( " kdialog " ) ) {
args . push_back ( " --error " ) ;
args . push_back ( p_alert ) ;
args . push_back ( " --title " ) ;
args . push_back ( p_title ) ;
}
if ( program . ends_with ( " Xdialog " ) ) {
args . push_back ( " --title " ) ;
args . push_back ( p_title ) ;
args . push_back ( " --msgbox " ) ;
args . push_back ( p_alert ) ;
args . push_back ( " 0 " ) ;
args . push_back ( " 0 " ) ;
}
if ( program . ends_with ( " xmessage " ) ) {
args . push_back ( " -center " ) ;
args . push_back ( " -title " ) ;
args . push_back ( p_title ) ;
args . push_back ( p_alert ) ;
}
if ( program . length ( ) ) {
execute ( program , args , true ) ;
} else {
print_line ( p_alert ) ;
}
2015-09-21 14:39:46 +02:00
}
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
bool g_set_icon_error = false ;
int set_icon_errorhandler ( Display * dpy , XErrorEvent * ev ) {
g_set_icon_error = true ;
return 0 ;
}
2017-05-17 12:36:47 +02:00
void OS_X11 : : set_icon ( const Ref < Image > & p_icon ) {
2018-08-26 23:07:15 +02:00
int ( * oldHandler ) ( Display * , XErrorEvent * ) = XSetErrorHandler ( & set_icon_errorhandler ) ;
2015-10-25 18:36:27 +01:00
Atom net_wm_icon = XInternAtom ( x11_display , " _NET_WM_ICON " , False ) ;
2015-10-25 15:15:56 +01:00
2017-05-17 12:36:47 +02:00
if ( p_icon . is_valid ( ) ) {
Ref < Image > img = p_icon - > duplicate ( ) ;
img - > convert ( Image : : FORMAT_RGBA8 ) ;
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
while ( true ) {
int w = img - > get_width ( ) ;
int h = img - > get_height ( ) ;
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
if ( g_set_icon_error ) {
g_set_icon_error = false ;
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
WARN_PRINT ( " Icon too large, attempting to resize icon. " ) ;
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
int new_width , new_height ;
if ( w > h ) {
new_width = w / 2 ;
new_height = h * new_width / w ;
} else {
new_height = h / 2 ;
new_width = w * new_height / h ;
}
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
w = new_width ;
h = new_height ;
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
if ( ! w | | ! h ) {
WARN_PRINT ( " Unable to set icon. " ) ;
break ;
}
img - > resize ( w , h , Image : : INTERPOLATE_CUBIC ) ;
}
2014-02-10 02:10:30 +01:00
2018-08-26 23:07:15 +02:00
// We're using long to have wordsize (32Bit build -> 32 Bits, 64 Bit build -> 64 Bits
Vector < long > pd ;
pd . resize ( 2 + w * h ) ;
pd . write [ 0 ] = w ;
pd . write [ 1 ] = h ;
PoolVector < uint8_t > : : Read r = img - > get_data ( ) . read ( ) ;
long * wr = & pd . write [ 2 ] ;
uint8_t const * pr = r . ptr ( ) ;
for ( int i = 0 ; i < w * h ; i + + ) {
long v = 0 ;
// A R G B
v | = pr [ 3 ] < < 24 | pr [ 0 ] < < 16 | pr [ 1 ] < < 8 | pr [ 2 ] ;
* wr + + = v ;
pr + = 4 ;
}
2021-02-03 16:08:37 +01:00
if ( net_wm_icon ! = None ) {
XChangeProperty ( x11_display , x11_window , net_wm_icon , XA_CARDINAL , 32 , PropModeReplace , ( unsigned char * ) pd . ptr ( ) , pd . size ( ) ) ;
}
2018-08-26 23:07:15 +02:00
2021-05-05 12:44:11 +02:00
if ( ! g_set_icon_error ) {
2018-08-26 23:07:15 +02:00
break ;
2021-05-05 12:44:11 +02:00
}
2014-02-10 02:10:30 +01:00
}
} else {
2017-03-05 16:44:50 +01:00
XDeleteProperty ( x11_display , x11_window , net_wm_icon ) ;
2014-02-10 02:10:30 +01:00
}
2018-08-26 23:07:15 +02:00
2014-02-10 02:10:30 +01:00
XFlush ( x11_display ) ;
2018-08-26 23:07:15 +02:00
XSetErrorHandler ( oldHandler ) ;
2014-02-10 02:10:30 +01:00
}
2017-12-14 12:59:46 +01:00
void OS_X11 : : force_process_input ( ) {
process_xevents ( ) ; // get rid of pending events
# ifdef JOYDEV_ENABLED
joypad - > process_joypads ( ) ;
# endif
}
2014-02-10 02:10:30 +01:00
void OS_X11 : : run ( ) {
force_quit = false ;
2016-03-09 00:00:52 +01:00
2021-05-05 12:44:11 +02:00
if ( ! main_loop ) {
2014-02-10 02:10:30 +01:00
return ;
2021-05-05 12:44:11 +02:00
}
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
main_loop - > init ( ) ;
2016-03-09 00:00:52 +01:00
2017-01-14 12:26:56 +01:00
//uint64_t last_ticks=get_ticks_usec();
2016-03-09 00:00:52 +01:00
2017-01-14 12:26:56 +01:00
//int frames=0;
//uint64_t frame=0;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
while ( ! force_quit ) {
process_xevents ( ) ; // get rid of pending events
2015-12-21 22:39:03 +01:00
# ifdef JOYDEV_ENABLED
2017-03-26 15:59:13 +02:00
joypad - > process_joypads ( ) ;
2015-12-18 06:12:53 +01:00
# endif
2021-05-05 12:44:11 +02:00
if ( Main : : iteration ( ) ) {
2014-02-10 02:10:30 +01:00
break ;
2021-05-05 12:44:11 +02:00
}
2014-02-10 02:10:30 +01:00
} ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
main_loop - > finish ( ) ;
}
2016-01-08 00:40:41 +01:00
bool OS_X11 : : is_joy_known ( int p_device ) {
return input - > is_joy_mapped ( p_device ) ;
}
String OS_X11 : : get_joy_guid ( int p_device ) const {
return input - > get_joy_guid_remapped ( p_device ) ;
}
2017-12-16 21:09:25 +01:00
void OS_X11 : : _set_use_vsync ( bool p_enable ) {
2018-06-22 16:42:28 +02:00
# if defined(OPENGL_ENABLED)
2021-05-05 12:44:11 +02:00
if ( context_gl ) {
2018-06-22 16:42:28 +02:00
context_gl - > set_use_vsync ( p_enable ) ;
2021-05-05 12:44:11 +02:00
}
2018-06-22 16:42:28 +02:00
# endif
2016-06-06 00:14:33 +02:00
}
2017-12-16 21:09:25 +01:00
/*
2016-11-08 15:06:57 +01:00
bool OS_X11 : : is_vsync_enabled ( ) const {
2016-06-06 00:14:33 +02:00
if ( context_gl )
return context_gl - > is_using_vsync ( ) ;
return true ;
}
2017-12-16 21:09:25 +01:00
*/
2016-01-27 21:53:37 +01:00
void OS_X11 : : set_context ( int p_context ) {
2017-08-21 21:15:36 +02:00
XClassHint * classHint = XAllocClassHint ( ) ;
2019-01-30 02:12:41 +01:00
2016-01-27 21:53:37 +01:00
if ( classHint ) {
2019-03-12 13:57:22 +01:00
CharString name_str ;
switch ( p_context ) {
case CONTEXT_EDITOR :
name_str = " Godot_Editor " ;
break ;
case CONTEXT_PROJECTMAN :
name_str = " Godot_ProjectList " ;
break ;
case CONTEXT_ENGINE :
name_str = " Godot_Engine " ;
break ;
}
2018-10-05 22:18:10 +02:00
2019-03-12 13:57:22 +01:00
CharString class_str ;
2018-10-05 22:18:10 +02:00
if ( p_context = = CONTEXT_ENGINE ) {
2019-03-12 13:57:22 +01:00
String config_name = GLOBAL_GET ( " application/config/name " ) ;
if ( config_name . length ( ) = = 0 ) {
class_str = " Godot_Engine " ;
2019-03-12 14:41:02 +01:00
} else {
2019-03-12 13:57:22 +01:00
class_str = config_name . utf8 ( ) ;
2019-03-12 14:41:02 +01:00
}
2019-03-12 13:57:22 +01:00
} else {
class_str = " Godot " ;
2018-10-05 22:18:10 +02:00
}
2019-03-12 13:57:22 +01:00
classHint - > res_class = class_str . ptrw ( ) ;
classHint - > res_name = name_str . ptrw ( ) ;
2018-10-05 22:18:10 +02:00
2016-01-27 21:53:37 +01:00
XSetClassHint ( x11_display , x11_window , classHint ) ;
XFree ( classHint ) ;
}
}
2017-09-12 21:09:06 +02:00
OS : : PowerState OS_X11 : : get_power_state ( ) {
2016-07-23 13:15:55 +02:00
return power_manager - > get_power_state ( ) ;
}
int OS_X11 : : get_power_seconds_left ( ) {
return power_manager - > get_power_seconds_left ( ) ;
}
int OS_X11 : : get_power_percent_left ( ) {
return power_manager - > get_power_percent_left ( ) ;
}
2017-09-08 03:01:49 +02:00
void OS_X11 : : disable_crash_handler ( ) {
crash_handler . disable ( ) ;
}
bool OS_X11 : : is_disable_crash_handler ( ) const {
return crash_handler . is_disabled ( ) ;
}
2017-09-25 15:15:11 +02:00
static String get_mountpoint ( const String & p_path ) {
struct stat s ;
if ( stat ( p_path . utf8 ( ) . get_data ( ) , & s ) ) {
return " " ;
}
2017-10-17 18:50:41 +02:00
# ifdef HAVE_MNTENT
2017-09-25 15:15:11 +02:00
dev_t dev = s . st_dev ;
FILE * fd = setmntent ( " /proc/mounts " , " r " ) ;
if ( ! fd ) {
return " " ;
}
struct mntent mnt ;
char buf [ 1024 ] ;
size_t buflen = 1024 ;
while ( getmntent_r ( fd , & mnt , buf , buflen ) ) {
if ( ! stat ( mnt . mnt_dir , & s ) & & s . st_dev = = dev ) {
endmntent ( fd ) ;
return String ( mnt . mnt_dir ) ;
}
}
endmntent ( fd ) ;
2017-10-17 18:50:41 +02:00
# endif
2017-09-25 15:15:11 +02:00
return " " ;
}
Error OS_X11 : : move_to_trash ( const String & p_path ) {
2022-02-20 01:58:38 +01:00
String path = p_path . rstrip ( " / " ) ; // Strip trailing slash when path points to a directory
2020-11-30 21:19:52 +01:00
int err_code ;
List < String > args ;
2022-02-20 01:58:38 +01:00
args . push_back ( path ) ;
2020-11-30 21:19:52 +01:00
args . push_front ( " trash " ) ; // The command is `gio trash <file_name>` so we need to add it to args.
Error result = execute ( " gio " , args , true , nullptr , nullptr , & err_code ) ; // For GNOME based machines.
if ( result = = OK & & ! err_code ) {
return OK ;
} else if ( err_code = = 2 ) {
return ERR_FILE_NOT_FOUND ;
}
args . pop_front ( ) ;
args . push_front ( " move " ) ;
args . push_back ( " trash:/ " ) ; // The command is `kioclient5 move <file_name> trash:/`.
result = execute ( " kioclient5 " , args , true , nullptr , nullptr , & err_code ) ; // For KDE based machines.
if ( result = = OK & & ! err_code ) {
return OK ;
} else if ( err_code = = 2 ) {
return ERR_FILE_NOT_FOUND ;
}
args . pop_front ( ) ;
args . pop_back ( ) ;
result = execute ( " gvfs-trash " , args , true , nullptr , nullptr , & err_code ) ; // For older Linux machines.
if ( result = = OK & & ! err_code ) {
return OK ;
} else if ( err_code = = 2 ) {
return ERR_FILE_NOT_FOUND ;
}
// If the commands `kioclient5`, `gio` or `gvfs-trash` don't exist on the system we do it manually.
String trash_path = " " ;
2022-02-20 01:58:38 +01:00
String mnt = get_mountpoint ( path ) ;
2017-09-25 15:15:11 +02:00
2020-11-30 21:19:52 +01:00
// If there is a directory "[Mountpoint]/.Trash-[UID], use it as the trash can.
2017-09-25 15:15:11 +02:00
if ( mnt ! = " " ) {
2022-02-20 01:58:38 +01:00
String mountpoint_trash_path ( mnt + " /.Trash- " + itos ( getuid ( ) ) ) ;
2017-09-25 15:15:11 +02:00
struct stat s ;
2022-02-20 01:58:38 +01:00
if ( ! stat ( mountpoint_trash_path . utf8 ( ) . get_data ( ) , & s ) ) {
trash_path = mountpoint_trash_path ;
2017-09-25 15:15:11 +02:00
}
}
2020-11-30 21:19:52 +01:00
// Otherwise, if ${XDG_DATA_HOME} is defined, use "${XDG_DATA_HOME}/Trash" as the trash can.
if ( trash_path = = " " ) {
2017-09-25 15:15:11 +02:00
char * dhome = getenv ( " XDG_DATA_HOME " ) ;
if ( dhome ) {
2022-01-06 10:34:10 +01:00
trash_path = String : : utf8 ( dhome ) + " /Trash " ;
2017-09-25 15:15:11 +02:00
}
}
2020-11-30 21:19:52 +01:00
// Otherwise, if ${HOME} is defined, use "${HOME}/.local/share/Trash" as the trash can.
if ( trash_path = = " " ) {
2017-09-25 15:15:11 +02:00
char * home = getenv ( " HOME " ) ;
if ( home ) {
2022-01-06 10:34:10 +01:00
trash_path = String : : utf8 ( home ) + " /.local/share/Trash " ;
2017-09-25 15:15:11 +02:00
}
}
2018-02-14 00:04:11 +01:00
// Issue an error if none of the previous locations is appropriate for the trash can.
2020-11-30 21:19:52 +01:00
ERR_FAIL_COND_V_MSG ( trash_path = = " " , FAILED , " Could not determine the trash can location " ) ;
2017-09-25 15:15:11 +02:00
2018-02-14 00:04:11 +01:00
// Create needed directories for decided trash can location.
2020-11-30 21:19:52 +01:00
{
2022-01-25 11:38:13 +01:00
DirAccessRef dir_access = DirAccess : : create ( DirAccess : : ACCESS_FILESYSTEM ) ;
2020-11-30 21:19:52 +01:00
Error err = dir_access - > make_dir_recursive ( trash_path ) ;
2022-02-10 12:00:11 +01:00
// Issue an error if trash can is not created properly.
2020-11-30 21:19:52 +01:00
ERR_FAIL_COND_V_MSG ( err ! = OK , err , " Could not create the trash path \" " + trash_path + " \" " ) ;
err = dir_access - > make_dir_recursive ( trash_path + " /files " ) ;
2022-02-20 01:58:38 +01:00
ERR_FAIL_COND_V_MSG ( err ! = OK , err , " Could not create the trash path \" " + trash_path + " /files \" " ) ;
2020-11-30 21:19:52 +01:00
err = dir_access - > make_dir_recursive ( trash_path + " /info " ) ;
2022-02-20 01:58:38 +01:00
ERR_FAIL_COND_V_MSG ( err ! = OK , err , " Could not create the trash path \" " + trash_path + " /info \" " ) ;
2020-11-30 21:19:52 +01:00
}
// The trash can is successfully created, now we check that we don't exceed our file name length limit.
// If the file name is too long trim it so we can add the identifying number and ".trashinfo".
// Assumes that the file name length limit is 255 characters.
2022-02-20 01:58:38 +01:00
String file_name = path . get_file ( ) ;
2020-11-30 21:19:52 +01:00
if ( file_name . length ( ) > 240 ) {
file_name = file_name . substr ( 0 , file_name . length ( ) - 15 ) ;
}
String dest_path = trash_path + " /files/ " + file_name ;
struct stat buff ;
int id_number = 0 ;
String fn = file_name ;
// Checks if a resource with the same name already exist in the trash can,
// if there is, add an identifying number to our resource's name.
while ( stat ( dest_path . utf8 ( ) . get_data ( ) , & buff ) = = 0 ) {
id_number + + ;
// Added a limit to check for identically named files already on the trash can
// if there are too many it could make the editor unresponsive.
ERR_FAIL_COND_V_MSG ( id_number > 99 , FAILED , " Too many identically named resources already in the trash can. " ) ;
fn = file_name + " . " + itos ( id_number ) ;
dest_path = trash_path + " /files/ " + fn ;
}
file_name = fn ;
2022-02-20 01:58:38 +01:00
String renamed_path = path . get_base_dir ( ) + " / " + file_name ;
2020-11-30 21:19:52 +01:00
// Generates the .trashinfo file
OS : : Date date = OS : : get_singleton ( ) - > get_date ( false ) ;
OS : : Time time = OS : : get_singleton ( ) - > get_time ( false ) ;
String timestamp = vformat ( " %04d-%02d-%02dT%02d:%02d: " , date . year , ( int ) date . month , date . day , time . hour , time . min ) ;
timestamp = vformat ( " %s%02d " , timestamp , time . sec ) ; // vformat only supports up to 6 arguments.
2022-02-20 01:58:38 +01:00
String trash_info = " [Trash Info] \n Path= " + path . http_escape ( ) + " \n DeletionDate= " + timestamp + " \n " ;
2020-11-30 21:19:52 +01:00
{
Error err ;
2022-01-25 11:38:13 +01:00
FileAccessRef file = FileAccess : : open ( trash_path + " /info/ " + file_name + " .trashinfo " , FileAccess : : WRITE , & err ) ;
2022-02-20 01:58:38 +01:00
ERR_FAIL_COND_V_MSG ( err ! = OK , err , " Can't create trashinfo file: \" " + trash_path + " /info/ " + file_name + " .trashinfo \" " ) ;
2020-11-30 21:19:52 +01:00
file - > store_string ( trash_info ) ;
file - > close ( ) ;
2018-02-14 00:04:11 +01:00
2020-11-30 21:19:52 +01:00
// Rename our resource before moving it to the trash can.
2022-01-25 11:38:13 +01:00
DirAccessRef dir_access = DirAccess : : create ( DirAccess : : ACCESS_FILESYSTEM ) ;
2022-02-20 01:58:38 +01:00
err = dir_access - > rename ( path , renamed_path ) ;
ERR_FAIL_COND_V_MSG ( err ! = OK , err , " Can't rename file \" " + path + " \" to \" " + renamed_path + " \" " ) ;
2017-09-25 15:15:11 +02:00
}
2020-11-30 21:19:52 +01:00
// Move the given resource to the trash can.
2018-02-14 00:04:11 +01:00
// Do not use DirAccess:rename() because it can't move files across multiple mountpoints.
List < String > mv_args ;
2022-02-20 01:58:38 +01:00
mv_args . push_back ( renamed_path ) ;
2020-11-30 21:19:52 +01:00
mv_args . push_back ( trash_path + " /files " ) ;
{
int retval ;
Error err = execute ( " mv " , mv_args , true , nullptr , nullptr , & retval ) ;
2018-02-14 00:04:11 +01:00
2020-11-30 21:19:52 +01:00
// Issue an error if "mv" failed to move the given resource to the trash can.
if ( err ! = OK | | retval ! = 0 ) {
2022-02-20 01:58:38 +01:00
ERR_PRINT ( " move_to_trash: Could not move the resource \" " + path + " \" to the trash can \" " + trash_path + " /files \" " ) ;
2020-11-30 21:19:52 +01:00
DirAccess * dir_access = DirAccess : : create ( DirAccess : : ACCESS_FILESYSTEM ) ;
2022-02-20 01:58:38 +01:00
err = dir_access - > rename ( renamed_path , path ) ;
2020-11-30 21:19:52 +01:00
memdelete ( dir_access ) ;
2022-02-20 01:58:38 +01:00
ERR_FAIL_COND_V_MSG ( err ! = OK , err , " Could not rename \" " + renamed_path + " \" back to its original name: \" " + path + " \" " ) ;
2020-11-30 21:19:52 +01:00
return FAILED ;
}
2018-02-14 00:04:11 +01:00
}
return OK ;
2017-09-25 15:15:11 +02:00
}
2017-10-30 15:40:42 +01:00
OS : : LatinKeyboardVariant OS_X11 : : get_latin_keyboard_variant ( ) const {
XkbDescRec * xkbdesc = XkbAllocKeyboard ( ) ;
ERR_FAIL_COND_V ( ! xkbdesc , LATIN_KEYBOARD_QWERTY ) ;
2022-04-24 03:44:47 +02:00
if ( XkbGetNames ( x11_display , XkbSymbolsNameMask , xkbdesc ) ! = Success ) {
XkbFreeKeyboard ( xkbdesc , 0 , true ) ;
ERR_FAIL_V ( LATIN_KEYBOARD_QWERTY ) ;
}
2017-10-30 15:40:42 +01:00
2022-04-24 03:44:47 +02:00
Vector < String > info = get_atom_name ( x11_display , xkbdesc - > names - > symbols ) . split ( " + " ) ;
XkbFreeKeyboard ( xkbdesc , 0 , true ) ;
2017-10-30 15:40:42 +01:00
ERR_FAIL_INDEX_V ( 1 , info . size ( ) , LATIN_KEYBOARD_QWERTY ) ;
2017-10-24 19:32:40 +02:00
if ( info [ 1 ] . find ( " colemak " ) ! = - 1 ) {
2017-10-30 15:40:42 +01:00
return LATIN_KEYBOARD_COLEMAK ;
2017-10-24 19:32:40 +02:00
} else if ( info [ 1 ] . find ( " qwertz " ) ! = - 1 ) {
2017-10-30 15:40:42 +01:00
return LATIN_KEYBOARD_QWERTZ ;
} else if ( info [ 1 ] . find ( " azerty " ) ! = - 1 ) {
return LATIN_KEYBOARD_AZERTY ;
} else if ( info [ 1 ] . find ( " qzerty " ) ! = - 1 ) {
return LATIN_KEYBOARD_QZERTY ;
} else if ( info [ 1 ] . find ( " dvorak " ) ! = - 1 ) {
return LATIN_KEYBOARD_DVORAK ;
} else if ( info [ 1 ] . find ( " neo " ) ! = - 1 ) {
return LATIN_KEYBOARD_NEO ;
}
return LATIN_KEYBOARD_QWERTY ;
}
2020-06-12 14:51:51 +02:00
int OS_X11 : : keyboard_get_layout_count ( ) const {
int _group_count = 0 ;
XkbDescRec * kbd = XkbAllocKeyboard ( ) ;
if ( kbd ) {
kbd - > dpy = x11_display ;
XkbGetControls ( x11_display , XkbAllControlsMask , kbd ) ;
XkbGetNames ( x11_display , XkbSymbolsNameMask , kbd ) ;
const Atom * groups = kbd - > names - > groups ;
2021-05-04 16:00:45 +02:00
if ( kbd - > ctrls ! = nullptr ) {
2020-06-12 14:51:51 +02:00
_group_count = kbd - > ctrls - > num_groups ;
} else {
while ( _group_count < XkbNumKbdGroups & & groups [ _group_count ] ! = None ) {
_group_count + + ;
}
}
XkbFreeKeyboard ( kbd , 0 , true ) ;
}
return _group_count ;
}
int OS_X11 : : keyboard_get_current_layout ( ) const {
XkbStateRec state ;
XkbGetState ( x11_display , XkbUseCoreKbd , & state ) ;
return state . group ;
}
void OS_X11 : : keyboard_set_current_layout ( int p_index ) {
ERR_FAIL_INDEX ( p_index , keyboard_get_layout_count ( ) ) ;
XkbLockGroup ( x11_display , XkbUseCoreKbd , p_index ) ;
}
String OS_X11 : : keyboard_get_layout_language ( int p_index ) const {
String ret ;
XkbDescRec * kbd = XkbAllocKeyboard ( ) ;
if ( kbd ) {
kbd - > dpy = x11_display ;
XkbGetControls ( x11_display , XkbAllControlsMask , kbd ) ;
XkbGetNames ( x11_display , XkbSymbolsNameMask , kbd ) ;
XkbGetNames ( x11_display , XkbGroupNamesMask , kbd ) ;
int _group_count = 0 ;
const Atom * groups = kbd - > names - > groups ;
2021-05-04 16:00:45 +02:00
if ( kbd - > ctrls ! = nullptr ) {
2020-06-12 14:51:51 +02:00
_group_count = kbd - > ctrls - > num_groups ;
} else {
while ( _group_count < XkbNumKbdGroups & & groups [ _group_count ] ! = None ) {
_group_count + + ;
}
}
Atom names = kbd - > names - > symbols ;
if ( names ! = None ) {
2022-03-04 10:50:28 +01:00
Vector < String > info = get_atom_name ( x11_display , names ) . split ( " + " ) ;
2020-06-12 14:51:51 +02:00
if ( p_index > = 0 & & p_index < _group_count ) {
if ( p_index + 1 < info . size ( ) ) {
ret = info [ p_index + 1 ] ; // Skip "pc" at the start and "inet"/"group" at the end of symbols.
} else {
ret = " en " ; // No symbol for layout fallback to "en".
}
} else {
ERR_PRINT ( " Index " + itos ( p_index ) + " is out of bounds ( " + itos ( _group_count ) + " ). " ) ;
}
}
XkbFreeKeyboard ( kbd , 0 , true ) ;
}
return ret . substr ( 0 , 2 ) ;
}
String OS_X11 : : keyboard_get_layout_name ( int p_index ) const {
String ret ;
XkbDescRec * kbd = XkbAllocKeyboard ( ) ;
if ( kbd ) {
kbd - > dpy = x11_display ;
XkbGetControls ( x11_display , XkbAllControlsMask , kbd ) ;
XkbGetNames ( x11_display , XkbSymbolsNameMask , kbd ) ;
XkbGetNames ( x11_display , XkbGroupNamesMask , kbd ) ;
int _group_count = 0 ;
const Atom * groups = kbd - > names - > groups ;
2021-05-04 16:00:45 +02:00
if ( kbd - > ctrls ! = nullptr ) {
2020-06-12 14:51:51 +02:00
_group_count = kbd - > ctrls - > num_groups ;
} else {
while ( _group_count < XkbNumKbdGroups & & groups [ _group_count ] ! = None ) {
_group_count + + ;
}
}
if ( p_index > = 0 & & p_index < _group_count ) {
2022-03-04 10:50:28 +01:00
ret = get_atom_name ( x11_display , groups [ p_index ] ) ;
2020-06-12 14:51:51 +02:00
} else {
ERR_PRINT ( " Index " + itos ( p_index ) + " is out of bounds ( " + itos ( _group_count ) + " ). " ) ;
}
XkbFreeKeyboard ( kbd , 0 , true ) ;
}
return ret ;
}
2021-12-17 11:39:40 +01:00
uint32_t OS_X11 : : keyboard_get_scancode_from_physical ( uint32_t p_scancode ) const {
unsigned int modifiers = p_scancode & KEY_MODIFIER_MASK ;
unsigned int scancode_no_mod = p_scancode & KEY_CODE_MASK ;
unsigned int xkeycode = KeyMappingX11 : : get_xlibcode ( ( uint32_t ) scancode_no_mod ) ;
2023-06-13 08:29:08 +02:00
KeySym xkeysym = XkbKeycodeToKeysym ( x11_display , xkeycode , keyboard_get_current_layout ( ) , 0 ) ;
2021-12-17 11:39:40 +01:00
if ( xkeysym > = ' a ' & & xkeysym < = ' z ' ) {
xkeysym - = ( ' a ' - ' A ' ) ;
}
uint32_t key = KeyMappingX11 : : get_keycode ( xkeysym ) ;
// If not found, fallback to QWERTY.
// This should match the behavior of the event pump
if ( key = = 0 ) {
return p_scancode ;
}
return ( uint32_t ) ( key | modifiers ) ;
}
2018-09-09 22:13:50 +02:00
void OS_X11 : : update_real_mouse_position ( ) {
Window root_return , child_return ;
int root_x , root_y , win_x , win_y ;
unsigned int mask_return ;
Bool xquerypointer_result = XQueryPointer ( x11_display , x11_window , & root_return , & child_return , & root_x , & root_y ,
& win_x , & win_y , & mask_return ) ;
if ( xquerypointer_result ) {
if ( win_x > 0 & & win_y > 0 & & win_x < = current_videomode . width & & win_y < = current_videomode . height ) {
last_mouse_pos . x = win_x ;
last_mouse_pos . y = win_y ;
last_mouse_pos_valid = true ;
input - > set_mouse_position ( last_mouse_pos ) ;
}
}
}
2014-02-10 02:10:30 +01:00
OS_X11 : : OS_X11 ( ) {
2014-12-19 13:44:34 +01:00
# ifdef PULSEAUDIO_ENABLED
2017-01-15 20:06:14 +01:00
AudioDriverManager : : add_driver ( & driver_pulseaudio ) ;
2014-12-19 13:44:34 +01:00
# endif
2014-12-21 15:42:44 +01:00
# ifdef ALSA_ENABLED
2017-01-15 20:06:14 +01:00
AudioDriverManager : : add_driver ( & driver_alsa ) ;
2014-12-21 15:42:44 +01:00
# endif
2019-04-08 16:06:57 +02:00
xi . opcode = 0 ;
xi . last_relative_time = 0 ;
2017-12-10 19:38:26 +01:00
layered_window = false ;
2014-02-10 02:10:30 +01:00
minimized = false ;
2019-11-28 13:41:07 +01:00
window_focused = true ;
2017-03-05 16:44:50 +01:00
xim_style = 0L ;
mouse_mode = MOUSE_MODE_VISIBLE ;
2020-02-03 16:14:41 +01:00
last_position_before_fs = Vector2 ( ) ;
2016-07-21 21:11:34 +02:00
}