2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_windows.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef OS_WINDOWS_H
|
|
|
|
#define OS_WINDOWS_H
|
2019-02-12 13:23:35 +00:00
|
|
|
|
2020-04-28 13:19:37 +00:00
|
|
|
#include "core/input/input.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/os.h"
|
2017-10-21 11:02:06 +00:00
|
|
|
#include "core/project_settings.h"
|
2019-02-12 14:43:54 +00:00
|
|
|
#include "crash_handler_windows.h"
|
2019-02-12 13:23:35 +00:00
|
|
|
#include "drivers/unix/ip_unix.h"
|
2017-08-27 17:01:34 +00:00
|
|
|
#include "drivers/wasapi/audio_driver_wasapi.h"
|
2019-02-12 13:23:35 +00:00
|
|
|
#include "drivers/winmidi/midi_driver_winmidi.h"
|
2019-02-12 14:43:54 +00:00
|
|
|
#include "key_mapping_windows.h"
|
2017-01-16 18:19:45 +00:00
|
|
|
#include "servers/audio_server.h"
|
2020-03-27 18:21:27 +00:00
|
|
|
#include "servers/rendering/rasterizer.h"
|
|
|
|
#include "servers/rendering_server.h"
|
2016-10-17 15:40:45 +00:00
|
|
|
#ifdef XAUDIO2_ENABLED
|
|
|
|
#include "drivers/xaudio2/audio_driver_xaudio2.h"
|
|
|
|
#endif
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2019-06-22 16:34:26 +00:00
|
|
|
#if defined(OPENGL_ENABLED)
|
|
|
|
#include "context_gl_windows.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(VULKAN_ENABLED)
|
|
|
|
#include "drivers/vulkan/rendering_device_vulkan.h"
|
|
|
|
#include "platform/windows/vulkan_context_win.h"
|
|
|
|
#endif
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include <fcntl.h>
|
2017-03-05 15:44:50 +00:00
|
|
|
#include <io.h>
|
2014-02-10 01:10:30 +00:00
|
|
|
#include <stdio.h>
|
2017-03-05 15:44:50 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
2017-01-16 18:19:45 +00:00
|
|
|
|
2017-01-08 22:52:38 +00:00
|
|
|
class JoypadWindows;
|
2014-02-10 01:10:30 +00:00
|
|
|
class OS_Windows : public OS {
|
2019-10-24 14:34:18 +00:00
|
|
|
#ifdef STDOUT_FILE
|
2014-02-10 01:10:30 +00:00
|
|
|
FILE *stdo;
|
2019-10-24 14:34:18 +00:00
|
|
|
#endif
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
uint64_t ticks_start;
|
|
|
|
uint64_t ticks_per_second;
|
|
|
|
|
2020-03-09 15:56:48 +00:00
|
|
|
HINSTANCE hInstance;
|
2014-02-10 01:10:30 +00:00
|
|
|
MainLoop *main_loop;
|
|
|
|
|
2020-05-19 20:34:26 +00:00
|
|
|
String tablet_driver;
|
|
|
|
Vector<String> tablet_drivers;
|
|
|
|
|
2017-08-27 17:01:34 +00:00
|
|
|
#ifdef WASAPI_ENABLED
|
|
|
|
AudioDriverWASAPI driver_wasapi;
|
|
|
|
#endif
|
2016-10-17 15:40:45 +00:00
|
|
|
#ifdef XAUDIO2_ENABLED
|
|
|
|
AudioDriverXAudio2 driver_xaudio2;
|
|
|
|
#endif
|
2018-07-14 12:11:28 +00:00
|
|
|
#ifdef WINMIDI_ENABLED
|
|
|
|
MIDIDriverWinMidi driver_midi;
|
|
|
|
#endif
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-08 01:01:49 +00:00
|
|
|
CrashHandler crash_handler;
|
|
|
|
|
2020-03-09 15:56:48 +00:00
|
|
|
bool force_quit;
|
|
|
|
HWND main_window;
|
2018-11-09 19:30:08 +00:00
|
|
|
|
2018-09-13 01:38:39 +00:00
|
|
|
// functions used by main to initialize/deinitialize the OS
|
2016-03-08 23:00:52 +00:00
|
|
|
protected:
|
2020-03-09 15:56:48 +00:00
|
|
|
virtual void initialize();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
virtual void set_main_loop(MainLoop *p_main_loop);
|
2014-02-10 01:10:30 +00:00
|
|
|
virtual void delete_main_loop();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
virtual void finalize();
|
|
|
|
virtual void finalize_core();
|
2020-03-09 15:56:48 +00:00
|
|
|
virtual String get_stdin_string(bool p_block);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-19 13:34:15 +00:00
|
|
|
String _quote_command_line_argument(const String &p_text) const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct ProcessInfo {
|
|
|
|
STARTUPINFO si;
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
};
|
2017-03-05 15:44:50 +00:00
|
|
|
Map<ProcessID, ProcessInfo> *process_map;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
public:
|
2017-12-01 20:06:42 +00:00
|
|
|
virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false);
|
2017-04-03 14:11:38 +00:00
|
|
|
virtual Error close_dynamic_library(void *p_library_handle);
|
2017-07-27 07:23:21 +00:00
|
|
|
virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false);
|
2017-03-08 01:50:13 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
virtual MainLoop *get_main_loop() const;
|
|
|
|
|
2019-05-20 17:36:24 +00:00
|
|
|
virtual String get_name() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-19 20:34:26 +00:00
|
|
|
virtual int get_tablet_driver_count() const;
|
|
|
|
virtual String get_tablet_driver_name(int p_driver) const;
|
|
|
|
virtual String get_current_tablet_driver() const;
|
|
|
|
virtual void set_current_tablet_driver(const String &p_driver);
|
|
|
|
|
2020-03-09 15:56:48 +00:00
|
|
|
virtual void initialize_joypads() {}
|
|
|
|
|
2015-06-06 01:40:56 +00:00
|
|
|
virtual Date get_date(bool utc) const;
|
|
|
|
virtual Time get_time(bool utc) const;
|
2015-06-07 13:06:13 +00:00
|
|
|
virtual TimeZoneInfo get_time_zone_info() const;
|
2020-05-31 12:19:31 +00:00
|
|
|
virtual double get_unix_time() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
virtual Error set_cwd(const String &p_cwd);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
virtual void delay_usec(uint32_t p_usec) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
virtual uint64_t get_ticks_usec() const;
|
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
virtual Error execute(const String &p_path, const List<String> &p_arguments, bool p_blocking = true, ProcessID *r_child_id = nullptr, String *r_pipe = nullptr, int *r_exitcode = nullptr, bool read_stderr = false, Mutex *p_pipe_mutex = nullptr);
|
2018-08-27 15:32:43 +00:00
|
|
|
virtual Error kill(const ProcessID &p_pid);
|
2017-08-07 10:17:31 +00:00
|
|
|
virtual int get_process_id() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
virtual bool has_environment(const String &p_var) const;
|
|
|
|
virtual String get_environment(const String &p_var) const;
|
2019-01-29 21:59:38 +00:00
|
|
|
virtual bool set_environment(const String &p_var, const String &p_value) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2014-02-15 05:01:39 +00:00
|
|
|
virtual String get_executable_path() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
virtual String get_locale() const;
|
2018-01-29 15:46:30 +00:00
|
|
|
|
|
|
|
virtual int get_processor_count() const;
|
|
|
|
|
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 16:11:41 +00:00
|
|
|
virtual String get_config_path() const;
|
|
|
|
virtual String get_data_path() const;
|
|
|
|
virtual String get_cache_path() const;
|
|
|
|
virtual String get_godot_dir_name() const;
|
|
|
|
|
2014-12-02 17:02:41 +00:00
|
|
|
virtual String get_system_dir(SystemDir p_dir) const;
|
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 16:11:41 +00:00
|
|
|
virtual String get_user_data_dir() const;
|
2014-12-02 17:02:41 +00:00
|
|
|
|
2018-01-20 13:40:52 +00:00
|
|
|
virtual String get_unique_id() const;
|
|
|
|
|
2014-04-18 14:43:54 +00:00
|
|
|
virtual Error shell_open(String p_uri);
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void run();
|
|
|
|
|
2017-07-19 20:00:46 +00:00
|
|
|
virtual bool _check_internal_feature_support(const String &p_feature);
|
2017-02-08 23:07:35 +00:00
|
|
|
|
2017-09-08 01:01:49 +00:00
|
|
|
void disable_crash_handler();
|
|
|
|
bool is_disable_crash_handler() const;
|
2018-02-11 11:08:37 +00:00
|
|
|
virtual void initialize_debugging();
|
2017-09-08 01:01:49 +00:00
|
|
|
|
2017-09-25 13:15:11 +00:00
|
|
|
virtual Error move_to_trash(const String &p_path);
|
|
|
|
|
2020-03-09 15:56:48 +00:00
|
|
|
void set_main_window(HWND p_main_window) { main_window = p_main_window; }
|
2019-03-03 20:12:19 +00:00
|
|
|
|
2020-03-09 15:56:48 +00:00
|
|
|
HINSTANCE get_hinstance() { return hInstance; }
|
2016-03-08 23:00:52 +00:00
|
|
|
OS_Windows(HINSTANCE _hInstance);
|
2014-02-10 01:10:30 +00:00
|
|
|
~OS_Windows();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|