Expose OS::get_current_video_driver to scripting languages
This commit is contained in:
parent
fd60724c3d
commit
7a79eee523
|
@ -225,8 +225,12 @@ int _OS::get_video_driver_count() const {
|
||||||
return OS::get_singleton()->get_video_driver_count();
|
return OS::get_singleton()->get_video_driver_count();
|
||||||
}
|
}
|
||||||
|
|
||||||
String _OS::get_video_driver_name(int p_driver) const {
|
String _OS::get_video_driver_name(VideoDriver p_driver) const {
|
||||||
return OS::get_singleton()->get_video_driver_name(p_driver);
|
return OS::get_singleton()->get_video_driver_name((int)p_driver);
|
||||||
|
}
|
||||||
|
|
||||||
|
_OS::VideoDriver _OS::get_current_video_driver() const {
|
||||||
|
return (VideoDriver)OS::get_singleton()->get_current_video_driver();
|
||||||
}
|
}
|
||||||
|
|
||||||
int _OS::get_audio_driver_count() const {
|
int _OS::get_audio_driver_count() const {
|
||||||
|
@ -1108,6 +1112,8 @@ void _OS::_bind_methods() {
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("get_video_driver_count"), &_OS::get_video_driver_count);
|
ClassDB::bind_method(D_METHOD("get_video_driver_count"), &_OS::get_video_driver_count);
|
||||||
ClassDB::bind_method(D_METHOD("get_video_driver_name", "driver"), &_OS::get_video_driver_name);
|
ClassDB::bind_method(D_METHOD("get_video_driver_name", "driver"), &_OS::get_video_driver_name);
|
||||||
|
ClassDB::bind_method(D_METHOD("get_current_video_driver"), &_OS::get_current_video_driver);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("get_audio_driver_count"), &_OS::get_audio_driver_count);
|
ClassDB::bind_method(D_METHOD("get_audio_driver_count"), &_OS::get_audio_driver_count);
|
||||||
ClassDB::bind_method(D_METHOD("get_audio_driver_name", "driver"), &_OS::get_audio_driver_name);
|
ClassDB::bind_method(D_METHOD("get_audio_driver_name", "driver"), &_OS::get_audio_driver_name);
|
||||||
ClassDB::bind_method(D_METHOD("get_connected_midi_inputs"), &_OS::get_connected_midi_inputs);
|
ClassDB::bind_method(D_METHOD("get_connected_midi_inputs"), &_OS::get_connected_midi_inputs);
|
||||||
|
@ -1276,6 +1282,9 @@ void _OS::_bind_methods() {
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "window_position"), "set_window_position", "get_window_position");
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "window_position"), "set_window_position", "get_window_position");
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "window_size"), "set_window_size", "get_window_size");
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "window_size"), "set_window_size", "get_window_size");
|
||||||
|
|
||||||
|
BIND_ENUM_CONSTANT(VIDEO_DRIVER_GLES2);
|
||||||
|
BIND_ENUM_CONSTANT(VIDEO_DRIVER_GLES3);
|
||||||
|
|
||||||
BIND_ENUM_CONSTANT(DAY_SUNDAY);
|
BIND_ENUM_CONSTANT(DAY_SUNDAY);
|
||||||
BIND_ENUM_CONSTANT(DAY_MONDAY);
|
BIND_ENUM_CONSTANT(DAY_MONDAY);
|
||||||
BIND_ENUM_CONSTANT(DAY_TUESDAY);
|
BIND_ENUM_CONSTANT(DAY_TUESDAY);
|
||||||
|
|
|
@ -103,6 +103,11 @@ protected:
|
||||||
static _OS *singleton;
|
static _OS *singleton;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
enum VideoDriver {
|
||||||
|
VIDEO_DRIVER_GLES3,
|
||||||
|
VIDEO_DRIVER_GLES2,
|
||||||
|
};
|
||||||
|
|
||||||
enum PowerState {
|
enum PowerState {
|
||||||
POWERSTATE_UNKNOWN, /**< cannot determine power status */
|
POWERSTATE_UNKNOWN, /**< cannot determine power status */
|
||||||
POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */
|
POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */
|
||||||
|
@ -152,7 +157,8 @@ public:
|
||||||
Array get_fullscreen_mode_list(int p_screen = 0) const;
|
Array get_fullscreen_mode_list(int p_screen = 0) const;
|
||||||
|
|
||||||
virtual int get_video_driver_count() const;
|
virtual int get_video_driver_count() const;
|
||||||
virtual String get_video_driver_name(int p_driver) const;
|
virtual String get_video_driver_name(VideoDriver p_driver) const;
|
||||||
|
virtual VideoDriver get_current_video_driver() const;
|
||||||
|
|
||||||
virtual int get_audio_driver_count() const;
|
virtual int get_audio_driver_count() const;
|
||||||
virtual String get_audio_driver_name(int p_driver) const;
|
virtual String get_audio_driver_name(int p_driver) const;
|
||||||
|
@ -355,6 +361,7 @@ public:
|
||||||
_OS();
|
_OS();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
VARIANT_ENUM_CAST(_OS::VideoDriver);
|
||||||
VARIANT_ENUM_CAST(_OS::PowerState);
|
VARIANT_ENUM_CAST(_OS::PowerState);
|
||||||
VARIANT_ENUM_CAST(_OS::Weekday);
|
VARIANT_ENUM_CAST(_OS::Weekday);
|
||||||
VARIANT_ENUM_CAST(_OS::Month);
|
VARIANT_ENUM_CAST(_OS::Month);
|
||||||
|
|
|
@ -648,6 +648,12 @@
|
||||||
The animation step value.
|
The animation step value.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
|
<signals>
|
||||||
|
<signal name="tracks_changed">
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</signal>
|
||||||
|
</signals>
|
||||||
<constants>
|
<constants>
|
||||||
<constant name="TYPE_VALUE" value="0" enum="TrackType">
|
<constant name="TYPE_VALUE" value="0" enum="TrackType">
|
||||||
Value tracks set values in node properties, but only those which can be Interpolated.
|
Value tracks set values in node properties, but only those which can be Interpolated.
|
||||||
|
|
|
@ -48,6 +48,14 @@
|
||||||
Return the transform of a specific instance.
|
Return the transform of a specific instance.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="get_instance_transform_2d" qualifiers="const">
|
||||||
|
<return type="Transform2D">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="instance" type="int">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="set_instance_color">
|
<method name="set_instance_color">
|
||||||
<return type="void">
|
<return type="void">
|
||||||
</return>
|
</return>
|
||||||
|
@ -81,6 +89,16 @@
|
||||||
Set the transform for a specific instance.
|
Set the transform for a specific instance.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="set_instance_transform_2d">
|
||||||
|
<return type="void">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="instance" type="int">
|
||||||
|
</argument>
|
||||||
|
<argument index="1" name="transform" type="Transform2D">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="color_format" type="int" setter="set_color_format" getter="get_color_format" enum="MultiMesh.ColorFormat">
|
<member name="color_format" type="int" setter="set_color_format" getter="get_color_format" enum="MultiMesh.ColorFormat">
|
||||||
|
|
|
@ -159,6 +159,13 @@
|
||||||
<description>
|
<description>
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="get_current_video_driver" qualifiers="const">
|
||||||
|
<return type="int" enum="OS.VideoDriver">
|
||||||
|
</return>
|
||||||
|
<description>
|
||||||
|
Returns the currently used video driver, using one of the values from [enum OS.VideoDriver].
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="get_date" qualifiers="const">
|
<method name="get_date" qualifiers="const">
|
||||||
<return type="Dictionary">
|
<return type="Dictionary">
|
||||||
</return>
|
</return>
|
||||||
|
@ -459,14 +466,16 @@
|
||||||
<return type="int">
|
<return type="int">
|
||||||
</return>
|
</return>
|
||||||
<description>
|
<description>
|
||||||
|
Returns the number of video drivers supported on the current platform.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_video_driver_name" qualifiers="const">
|
<method name="get_video_driver_name" qualifiers="const">
|
||||||
<return type="String">
|
<return type="String">
|
||||||
</return>
|
</return>
|
||||||
<argument index="0" name="driver" type="int">
|
<argument index="0" name="driver" type="int" enum="OS.VideoDriver">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
|
Returns the name of the video driver matching the given [code]driver[/code] index. This index is a value from [enum OS.VideoDriver], and you can use [method get_current_video_driver] to get the current backend's index.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_virtual_keyboard_height">
|
<method name="get_virtual_keyboard_height">
|
||||||
|
@ -806,6 +815,12 @@
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
<constant name="VIDEO_DRIVER_GLES2" value="1" enum="VideoDriver">
|
||||||
|
The GLES2 rendering backend. It uses OpenGL ES 2.0 on mobile devices, OpenGL 2.1 on desktop platforms and WebGL 1.0 on the web.
|
||||||
|
</constant>
|
||||||
|
<constant name="VIDEO_DRIVER_GLES3" value="0" enum="VideoDriver">
|
||||||
|
The GLES3 rendering backend. It uses OpenGL ES 3.0 on mobile devices, OpenGL 3.3 on desktop platforms and WebGL 2.0 on the web.
|
||||||
|
</constant>
|
||||||
<constant name="DAY_SUNDAY" value="0" enum="Weekday">
|
<constant name="DAY_SUNDAY" value="0" enum="Weekday">
|
||||||
Sunday.
|
Sunday.
|
||||||
</constant>
|
</constant>
|
||||||
|
|
|
@ -74,15 +74,15 @@
|
||||||
Return the ID of the item at index [code]idx[/code].
|
Return the ID of the item at index [code]idx[/code].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_item_index" qualifiers="const">
|
<method name="get_item_index" qualifiers="const">
|
||||||
<return type="int">
|
<return type="int">
|
||||||
</return>
|
</return>
|
||||||
<argument index="0" name="id" type="int">
|
<argument index="0" name="id" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Return the index of the item with the given [code]id[/code].
|
Return the index of the item with the given [code]id[/code].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_item_metadata" qualifiers="const">
|
<method name="get_item_metadata" qualifiers="const">
|
||||||
<return type="Variant">
|
<return type="Variant">
|
||||||
</return>
|
</return>
|
||||||
|
|
|
@ -216,6 +216,8 @@
|
||||||
</theme_item>
|
</theme_item>
|
||||||
<theme_item name="tab_bg" type="StyleBox">
|
<theme_item name="tab_bg" type="StyleBox">
|
||||||
</theme_item>
|
</theme_item>
|
||||||
|
<theme_item name="tab_disabled" type="StyleBox">
|
||||||
|
</theme_item>
|
||||||
<theme_item name="tab_fg" type="StyleBox">
|
<theme_item name="tab_fg" type="StyleBox">
|
||||||
</theme_item>
|
</theme_item>
|
||||||
<theme_item name="top_margin" type="int">
|
<theme_item name="top_margin" type="int">
|
||||||
|
|
|
@ -279,6 +279,8 @@
|
||||||
</theme_item>
|
</theme_item>
|
||||||
<theme_item name="tab_bg" type="StyleBox">
|
<theme_item name="tab_bg" type="StyleBox">
|
||||||
</theme_item>
|
</theme_item>
|
||||||
|
<theme_item name="tab_disabled" type="StyleBox">
|
||||||
|
</theme_item>
|
||||||
<theme_item name="tab_fg" type="StyleBox">
|
<theme_item name="tab_fg" type="StyleBox">
|
||||||
</theme_item>
|
</theme_item>
|
||||||
<theme_item name="top_margin" type="int">
|
<theme_item name="top_margin" type="int">
|
||||||
|
|
Loading…
Reference in New Issue