Ignore OS specific values (constants, project settings, properties)
Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
This commit is contained in:
parent
5e92619a64
commit
b02c61ddb1
12 changed files with 101 additions and 17 deletions
|
@ -1451,6 +1451,7 @@ void _OS::_bind_methods() {
|
||||||
// to avoid using values from the documentation writer's own OS instance.
|
// to avoid using values from the documentation writer's own OS instance.
|
||||||
ADD_PROPERTY_DEFAULT("clipboard", "");
|
ADD_PROPERTY_DEFAULT("clipboard", "");
|
||||||
ADD_PROPERTY_DEFAULT("current_screen", 0);
|
ADD_PROPERTY_DEFAULT("current_screen", 0);
|
||||||
|
ADD_PROPERTY_DEFAULT("tablet_driver", "");
|
||||||
ADD_PROPERTY_DEFAULT("exit_code", 0);
|
ADD_PROPERTY_DEFAULT("exit_code", 0);
|
||||||
ADD_PROPERTY_DEFAULT("vsync_enabled", true);
|
ADD_PROPERTY_DEFAULT("vsync_enabled", true);
|
||||||
ADD_PROPERTY_DEFAULT("vsync_via_compositor", false);
|
ADD_PROPERTY_DEFAULT("vsync_via_compositor", false);
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
struct _GlobalConstant {
|
struct _GlobalConstant {
|
||||||
#ifdef DEBUG_METHODS_ENABLED
|
#ifdef DEBUG_METHODS_ENABLED
|
||||||
StringName enum_name;
|
StringName enum_name;
|
||||||
|
bool ignore_value_in_docs;
|
||||||
#endif
|
#endif
|
||||||
const char *name;
|
const char *name;
|
||||||
int value;
|
int value;
|
||||||
|
@ -45,8 +46,9 @@ struct _GlobalConstant {
|
||||||
_GlobalConstant() {}
|
_GlobalConstant() {}
|
||||||
|
|
||||||
#ifdef DEBUG_METHODS_ENABLED
|
#ifdef DEBUG_METHODS_ENABLED
|
||||||
_GlobalConstant(const StringName &p_enum_name, const char *p_name, int p_value) :
|
_GlobalConstant(const StringName &p_enum_name, const char *p_name, int p_value, bool p_ignore_value_in_docs = false) :
|
||||||
enum_name(p_enum_name),
|
enum_name(p_enum_name),
|
||||||
|
ignore_value_in_docs(p_ignore_value_in_docs),
|
||||||
name(p_name),
|
name(p_name),
|
||||||
value(p_value) {
|
value(p_value) {
|
||||||
}
|
}
|
||||||
|
@ -71,6 +73,15 @@ static Vector<_GlobalConstant> _global_constants;
|
||||||
#define BIND_GLOBAL_ENUM_CONSTANT_CUSTOM(m_custom_name, m_constant) \
|
#define BIND_GLOBAL_ENUM_CONSTANT_CUSTOM(m_custom_name, m_constant) \
|
||||||
_global_constants.push_back(_GlobalConstant(__constant_get_enum_name(m_constant, #m_constant), m_custom_name, m_constant));
|
_global_constants.push_back(_GlobalConstant(__constant_get_enum_name(m_constant, #m_constant), m_custom_name, m_constant));
|
||||||
|
|
||||||
|
#define BIND_GLOBAL_CONSTANT_NO_VAL(m_constant) \
|
||||||
|
_global_constants.push_back(_GlobalConstant(StringName(), #m_constant, m_constant, true));
|
||||||
|
|
||||||
|
#define BIND_GLOBAL_ENUM_CONSTANT_NO_VAL(m_constant) \
|
||||||
|
_global_constants.push_back(_GlobalConstant(__constant_get_enum_name(m_constant, #m_constant), #m_constant, m_constant, true));
|
||||||
|
|
||||||
|
#define BIND_GLOBAL_ENUM_CONSTANT_CUSTOM_NO_VAL(m_custom_name, m_constant) \
|
||||||
|
_global_constants.push_back(_GlobalConstant(__constant_get_enum_name(m_constant, #m_constant), m_custom_name, m_constant, true));
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define BIND_GLOBAL_CONSTANT(m_constant) \
|
#define BIND_GLOBAL_CONSTANT(m_constant) \
|
||||||
|
@ -82,6 +93,15 @@ static Vector<_GlobalConstant> _global_constants;
|
||||||
#define BIND_GLOBAL_ENUM_CONSTANT_CUSTOM(m_custom_name, m_constant) \
|
#define BIND_GLOBAL_ENUM_CONSTANT_CUSTOM(m_custom_name, m_constant) \
|
||||||
_global_constants.push_back(_GlobalConstant(m_custom_name, m_constant));
|
_global_constants.push_back(_GlobalConstant(m_custom_name, m_constant));
|
||||||
|
|
||||||
|
#define BIND_GLOBAL_CONSTANT_NO_VAL(m_constant) \
|
||||||
|
_global_constants.push_back(_GlobalConstant(#m_constant, m_constant));
|
||||||
|
|
||||||
|
#define BIND_GLOBAL_ENUM_CONSTANT_NO_VAL(m_constant) \
|
||||||
|
_global_constants.push_back(_GlobalConstant(#m_constant, m_constant));
|
||||||
|
|
||||||
|
#define BIND_GLOBAL_ENUM_CONSTANT_CUSTOM_NO_VAL(m_custom_name, m_constant) \
|
||||||
|
_global_constants.push_back(_GlobalConstant(m_custom_name, m_constant));
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
VARIANT_ENUM_CAST(KeyList);
|
VARIANT_ENUM_CAST(KeyList);
|
||||||
|
@ -369,7 +389,7 @@ void register_global_constants() {
|
||||||
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_ALT);
|
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_ALT);
|
||||||
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_META);
|
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_META);
|
||||||
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_CTRL);
|
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_CTRL);
|
||||||
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_CMD);
|
BIND_GLOBAL_ENUM_CONSTANT_NO_VAL(KEY_MASK_CMD);
|
||||||
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_KPAD);
|
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_KPAD);
|
||||||
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_GROUP_SWITCH);
|
BIND_GLOBAL_ENUM_CONSTANT(KEY_MASK_GROUP_SWITCH);
|
||||||
|
|
||||||
|
@ -678,10 +698,18 @@ int GlobalConstants::get_global_constant_count() {
|
||||||
StringName GlobalConstants::get_global_constant_enum(int p_idx) {
|
StringName GlobalConstants::get_global_constant_enum(int p_idx) {
|
||||||
return _global_constants[p_idx].enum_name;
|
return _global_constants[p_idx].enum_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool GlobalConstants::get_ignore_value_in_docs(int p_idx) {
|
||||||
|
return _global_constants[p_idx].ignore_value_in_docs;
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
StringName GlobalConstants::get_global_constant_enum(int p_idx) {
|
StringName GlobalConstants::get_global_constant_enum(int p_idx) {
|
||||||
return StringName();
|
return StringName();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool GlobalConstants::get_ignore_value_in_docs(int p_idx) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const char *GlobalConstants::get_global_constant_name(int p_idx) {
|
const char *GlobalConstants::get_global_constant_name(int p_idx) {
|
||||||
|
|
|
@ -37,6 +37,7 @@ class GlobalConstants {
|
||||||
public:
|
public:
|
||||||
static int get_global_constant_count();
|
static int get_global_constant_count();
|
||||||
static StringName get_global_constant_enum(int p_idx);
|
static StringName get_global_constant_enum(int p_idx);
|
||||||
|
static bool get_ignore_value_in_docs(int p_idx);
|
||||||
static const char *get_global_constant_name(int p_idx);
|
static const char *get_global_constant_name(int p_idx);
|
||||||
static int get_global_constant_value(int p_idx);
|
static int get_global_constant_value(int p_idx);
|
||||||
};
|
};
|
||||||
|
|
|
@ -126,6 +126,22 @@ void ProjectSettings::set_restart_if_changed(const String &p_name, bool p_restar
|
||||||
props[p_name].restart_if_changed = p_restart;
|
props[p_name].restart_if_changed = p_restart;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ProjectSettings::set_ignore_value_in_docs(const String &p_name, bool p_ignore) {
|
||||||
|
ERR_FAIL_COND_MSG(!props.has(p_name), "Request for nonexistent project setting: " + p_name + ".");
|
||||||
|
#ifdef DEBUG_METHODS_ENABLED
|
||||||
|
props[p_name].ignore_value_in_docs = p_ignore;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ProjectSettings::get_ignore_value_in_docs(const String &p_name) const {
|
||||||
|
ERR_FAIL_COND_V_MSG(!props.has(p_name), false, "Request for nonexistent project setting: " + p_name + ".");
|
||||||
|
#ifdef DEBUG_METHODS_ENABLED
|
||||||
|
return props[p_name].ignore_value_in_docs;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
String ProjectSettings::globalize_path(const String &p_path) const {
|
String ProjectSettings::globalize_path(const String &p_path) const {
|
||||||
if (p_path.begins_with("res://")) {
|
if (p_path.begins_with("res://")) {
|
||||||
if (resource_path != "") {
|
if (resource_path != "") {
|
||||||
|
@ -881,7 +897,7 @@ Variant _GLOBAL_DEF_ALIAS(const String &p_var, const String &p_old_name, const V
|
||||||
return _GLOBAL_DEF(p_var, p_default, p_restart_if_changed);
|
return _GLOBAL_DEF(p_var, p_default, p_restart_if_changed);
|
||||||
}
|
}
|
||||||
|
|
||||||
Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restart_if_changed) {
|
Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restart_if_changed, bool p_ignore_value_in_docs) {
|
||||||
Variant ret;
|
Variant ret;
|
||||||
if (!ProjectSettings::get_singleton()->has_setting(p_var)) {
|
if (!ProjectSettings::get_singleton()->has_setting(p_var)) {
|
||||||
ProjectSettings::get_singleton()->set(p_var, p_default);
|
ProjectSettings::get_singleton()->set(p_var, p_default);
|
||||||
|
@ -891,6 +907,7 @@ Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restar
|
||||||
ProjectSettings::get_singleton()->set_initial_value(p_var, p_default);
|
ProjectSettings::get_singleton()->set_initial_value(p_var, p_default);
|
||||||
ProjectSettings::get_singleton()->set_builtin_order(p_var);
|
ProjectSettings::get_singleton()->set_builtin_order(p_var);
|
||||||
ProjectSettings::get_singleton()->set_restart_if_changed(p_var, p_restart_if_changed);
|
ProjectSettings::get_singleton()->set_restart_if_changed(p_var, p_restart_if_changed);
|
||||||
|
ProjectSettings::get_singleton()->set_ignore_value_in_docs(p_var, p_ignore_value_in_docs);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,10 @@ protected:
|
||||||
bool hide_from_editor;
|
bool hide_from_editor;
|
||||||
bool overridden;
|
bool overridden;
|
||||||
bool restart_if_changed;
|
bool restart_if_changed;
|
||||||
|
#ifdef DEBUG_METHODS_ENABLED
|
||||||
|
bool ignore_value_in_docs = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
VariantContainer() :
|
VariantContainer() :
|
||||||
order(0),
|
order(0),
|
||||||
persist(false),
|
persist(false),
|
||||||
|
@ -124,6 +128,9 @@ public:
|
||||||
|
|
||||||
void set_initial_value(const String &p_name, const Variant &p_value);
|
void set_initial_value(const String &p_name, const Variant &p_value);
|
||||||
void set_restart_if_changed(const String &p_name, bool p_restart);
|
void set_restart_if_changed(const String &p_name, bool p_restart);
|
||||||
|
void set_ignore_value_in_docs(const String &p_name, bool p_ignore);
|
||||||
|
bool get_ignore_value_in_docs(const String &p_name) const;
|
||||||
|
|
||||||
bool property_can_revert(const String &p_name);
|
bool property_can_revert(const String &p_name);
|
||||||
Variant property_get_revert(const String &p_name);
|
Variant property_get_revert(const String &p_name);
|
||||||
|
|
||||||
|
@ -163,10 +170,12 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
//not a macro any longer
|
//not a macro any longer
|
||||||
Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restart_if_changed = false);
|
Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restart_if_changed = false, bool p_ignore_value_in_docs = false);
|
||||||
Variant _GLOBAL_DEF_ALIAS(const String &p_var, const String &p_old_name, const Variant &p_default, bool p_restart_if_changed = false);
|
Variant _GLOBAL_DEF_ALIAS(const String &p_var, const String &p_old_name, const Variant &p_default, bool p_restart_if_changed = false);
|
||||||
#define GLOBAL_DEF(m_var, m_value) _GLOBAL_DEF(m_var, m_value)
|
#define GLOBAL_DEF(m_var, m_value) _GLOBAL_DEF(m_var, m_value)
|
||||||
#define GLOBAL_DEF_RST(m_var, m_value) _GLOBAL_DEF(m_var, m_value, true)
|
#define GLOBAL_DEF_RST(m_var, m_value) _GLOBAL_DEF(m_var, m_value, true)
|
||||||
|
#define GLOBAL_DEF_NOVAL(m_var, m_value) _GLOBAL_DEF(m_var, m_value, false, true)
|
||||||
|
#define GLOBAL_DEF_RST_NOVAL(m_var, m_value) _GLOBAL_DEF(m_var, m_value, true, true)
|
||||||
#define GLOBAL_DEF_ALIAS(m_var, m_old_name, m_value) _GLOBAL_DEF_ALIAS(m_var, m_old_name, m_value)
|
#define GLOBAL_DEF_ALIAS(m_var, m_old_name, m_value) _GLOBAL_DEF_ALIAS(m_var, m_old_name, m_value)
|
||||||
#define GLOBAL_DEF_ALIAS_RST(m_var, m_old_name, m_value) _GLOBAL_DEF(m_var, m_old_name, m_value, true)
|
#define GLOBAL_DEF_ALIAS_RST(m_var, m_old_name, m_value) _GLOBAL_DEF(m_var, m_old_name, m_value, true)
|
||||||
#define GLOBAL_GET(m_var) ProjectSettings::get_singleton()->get(m_var)
|
#define GLOBAL_GET(m_var) ProjectSettings::get_singleton()->get(m_var)
|
||||||
|
|
|
@ -1100,6 +1100,10 @@ String String::chr(CharType p_char) {
|
||||||
return String(c);
|
return String(c);
|
||||||
}
|
}
|
||||||
String String::num(double p_num, int p_decimals) {
|
String String::num(double p_num, int p_decimals) {
|
||||||
|
if (Math::is_nan(p_num)) {
|
||||||
|
return "nan";
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef NO_USE_STDLIB
|
#ifndef NO_USE_STDLIB
|
||||||
|
|
||||||
if (p_decimals > 16) {
|
if (p_decimals > 16) {
|
||||||
|
@ -1388,6 +1392,10 @@ String String::num_real(double p_num) {
|
||||||
}
|
}
|
||||||
|
|
||||||
String String::num_scientific(double p_num) {
|
String String::num_scientific(double p_num) {
|
||||||
|
if (Math::is_nan(p_num)) {
|
||||||
|
return "nan";
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef NO_USE_STDLIB
|
#ifndef NO_USE_STDLIB
|
||||||
|
|
||||||
char buf[256];
|
char buf[256];
|
||||||
|
|
|
@ -883,7 +883,7 @@
|
||||||
<constant name="KEY_MASK_CTRL" value="268435456" enum="KeyModifierMask">
|
<constant name="KEY_MASK_CTRL" value="268435456" enum="KeyModifierMask">
|
||||||
Ctrl key mask.
|
Ctrl key mask.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="KEY_MASK_CMD" value="268435456" enum="KeyModifierMask">
|
<constant name="KEY_MASK_CMD" value="platform-dependent" enum="KeyModifierMask">
|
||||||
Command key mask. On macOS, this is equivalent to [constant KEY_MASK_META]. On other platforms, this is equivalent to [constant KEY_MASK_CTRL]. This mask should be preferred to [constant KEY_MASK_META] or [constant KEY_MASK_CTRL] for system shortcuts as it handles all platforms correctly.
|
Command key mask. On macOS, this is equivalent to [constant KEY_MASK_META]. On other platforms, this is equivalent to [constant KEY_MASK_CTRL]. This mask should be preferred to [constant KEY_MASK_META] or [constant KEY_MASK_CTRL] for system shortcuts as it handles all platforms correctly.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="KEY_MASK_KPAD" value="536870912" enum="KeyModifierMask">
|
<constant name="KEY_MASK_KPAD" value="536870912" enum="KeyModifierMask">
|
||||||
|
|
|
@ -257,7 +257,7 @@
|
||||||
<member name="audio/default_bus_layout" type="String" setter="" getter="" default=""res://default_bus_layout.tres"">
|
<member name="audio/default_bus_layout" type="String" setter="" getter="" default=""res://default_bus_layout.tres"">
|
||||||
Default [AudioBusLayout] resource file to use in the project, unless overridden by the scene.
|
Default [AudioBusLayout] resource file to use in the project, unless overridden by the scene.
|
||||||
</member>
|
</member>
|
||||||
<member name="audio/driver" type="String" setter="" getter="" default=""PulseAudio"">
|
<member name="audio/driver" type="String" setter="" getter="">
|
||||||
Specifies the audio driver to use. This setting is platform-dependent as each platform supports different audio drivers. If left empty, the default audio driver will be used.
|
Specifies the audio driver to use. This setting is platform-dependent as each platform supports different audio drivers. If left empty, the default audio driver will be used.
|
||||||
</member>
|
</member>
|
||||||
<member name="audio/enable_audio_input" type="bool" setter="" getter="" default="false">
|
<member name="audio/enable_audio_input" type="bool" setter="" getter="" default="false">
|
||||||
|
@ -488,7 +488,7 @@
|
||||||
<member name="display/window/size/width" type="int" setter="" getter="" default="1024">
|
<member name="display/window/size/width" type="int" setter="" getter="" default="1024">
|
||||||
Sets the game's main viewport width. On desktop platforms, this is the default window size. Stretch mode settings also use this as a reference when enabled.
|
Sets the game's main viewport width. On desktop platforms, this is the default window size. Stretch mode settings also use this as a reference when enabled.
|
||||||
</member>
|
</member>
|
||||||
<member name="display/window/tablet_driver" type="String" setter="" getter="" default="""">
|
<member name="display/window/tablet_driver" type="String" setter="" getter="">
|
||||||
Specifies the tablet driver to use. If left empty, the default driver will be used.
|
Specifies the tablet driver to use. If left empty, the default driver will be used.
|
||||||
</member>
|
</member>
|
||||||
<member name="display/window/vsync/use_vsync" type="bool" setter="" getter="" default="true">
|
<member name="display/window/vsync/use_vsync" type="bool" setter="" getter="" default="true">
|
||||||
|
@ -515,7 +515,7 @@
|
||||||
<member name="gui/common/default_scroll_deadzone" type="int" setter="" getter="" default="0">
|
<member name="gui/common/default_scroll_deadzone" type="int" setter="" getter="" default="0">
|
||||||
Default value for [member ScrollContainer.scroll_deadzone], which will be used for all [ScrollContainer]s unless overridden.
|
Default value for [member ScrollContainer.scroll_deadzone], which will be used for all [ScrollContainer]s unless overridden.
|
||||||
</member>
|
</member>
|
||||||
<member name="gui/common/swap_ok_cancel" type="bool" setter="" getter="" default="false">
|
<member name="gui/common/swap_ok_cancel" type="bool" setter="" getter="">
|
||||||
If [code]true[/code], swaps OK and Cancel buttons in dialogs on Windows and UWP to follow interface conventions.
|
If [code]true[/code], swaps OK and Cancel buttons in dialogs on Windows and UWP to follow interface conventions.
|
||||||
</member>
|
</member>
|
||||||
<member name="gui/common/text_edit_undo_stack_max_size" type="int" setter="" getter="" default="1024">
|
<member name="gui/common/text_edit_undo_stack_max_size" type="int" setter="" getter="" default="1024">
|
||||||
|
|
|
@ -297,8 +297,10 @@ void DocData::generate(bool p_basic_types) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (E->get().usage & PROPERTY_USAGE_EDITOR) {
|
if (E->get().usage & PROPERTY_USAGE_EDITOR) {
|
||||||
default_value = ProjectSettings::get_singleton()->property_get_revert(E->get().name);
|
if (!ProjectSettings::get_singleton()->get_ignore_value_in_docs(E->get().name)) {
|
||||||
default_value_valid = true;
|
default_value = ProjectSettings::get_singleton()->property_get_revert(E->get().name);
|
||||||
|
default_value_valid = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
default_value = get_documentation_default_value(name, E->get().name, default_value_valid);
|
default_value = get_documentation_default_value(name, E->get().name, default_value_valid);
|
||||||
|
@ -450,6 +452,7 @@ void DocData::generate(bool p_basic_types) {
|
||||||
ConstantDoc constant;
|
ConstantDoc constant;
|
||||||
constant.name = E->get();
|
constant.name = E->get();
|
||||||
constant.value = itos(ClassDB::get_integer_constant(name, E->get()));
|
constant.value = itos(ClassDB::get_integer_constant(name, E->get()));
|
||||||
|
constant.is_value_valid = true;
|
||||||
constant.enumeration = ClassDB::get_integer_constant_enum(name, E->get());
|
constant.enumeration = ClassDB::get_integer_constant_enum(name, E->get());
|
||||||
c.constants.push_back(constant);
|
c.constants.push_back(constant);
|
||||||
}
|
}
|
||||||
|
@ -598,6 +601,7 @@ void DocData::generate(bool p_basic_types) {
|
||||||
constant.name = E->get();
|
constant.name = E->get();
|
||||||
Variant value = Variant::get_constant_value(Variant::Type(i), E->get());
|
Variant value = Variant::get_constant_value(Variant::Type(i), E->get());
|
||||||
constant.value = value.get_type() == Variant::INT ? itos(value) : value.get_construct_string();
|
constant.value = value.get_type() == Variant::INT ? itos(value) : value.get_construct_string();
|
||||||
|
constant.is_value_valid = true;
|
||||||
c.constants.push_back(constant);
|
c.constants.push_back(constant);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -613,7 +617,12 @@ void DocData::generate(bool p_basic_types) {
|
||||||
for (int i = 0; i < GlobalConstants::get_global_constant_count(); i++) {
|
for (int i = 0; i < GlobalConstants::get_global_constant_count(); i++) {
|
||||||
ConstantDoc cd;
|
ConstantDoc cd;
|
||||||
cd.name = GlobalConstants::get_global_constant_name(i);
|
cd.name = GlobalConstants::get_global_constant_name(i);
|
||||||
cd.value = itos(GlobalConstants::get_global_constant_value(i));
|
if (!GlobalConstants::get_ignore_value_in_docs(i)) {
|
||||||
|
cd.value = itos(GlobalConstants::get_global_constant_value(i));
|
||||||
|
cd.is_value_valid = true;
|
||||||
|
} else {
|
||||||
|
cd.is_value_valid = false;
|
||||||
|
}
|
||||||
cd.enumeration = GlobalConstants::get_global_constant_enum(i);
|
cd.enumeration = GlobalConstants::get_global_constant_enum(i);
|
||||||
c.constants.push_back(cd);
|
c.constants.push_back(cd);
|
||||||
}
|
}
|
||||||
|
@ -693,6 +702,7 @@ void DocData::generate(bool p_basic_types) {
|
||||||
ConstantDoc cd;
|
ConstantDoc cd;
|
||||||
cd.name = E->get().first;
|
cd.name = E->get().first;
|
||||||
cd.value = E->get().second;
|
cd.value = E->get().second;
|
||||||
|
cd.is_value_valid = true;
|
||||||
c.constants.push_back(cd);
|
c.constants.push_back(cd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -967,6 +977,7 @@ Error DocData::_load(Ref<XMLParser> parser) {
|
||||||
constant2.name = parser->get_attribute_value("name");
|
constant2.name = parser->get_attribute_value("name");
|
||||||
ERR_FAIL_COND_V(!parser->has_attribute("value"), ERR_FILE_CORRUPT);
|
ERR_FAIL_COND_V(!parser->has_attribute("value"), ERR_FILE_CORRUPT);
|
||||||
constant2.value = parser->get_attribute_value("value");
|
constant2.value = parser->get_attribute_value("value");
|
||||||
|
constant2.is_value_valid = true;
|
||||||
if (parser->has_attribute("enum")) {
|
if (parser->has_attribute("enum")) {
|
||||||
constant2.enumeration = parser->get_attribute_value("enum");
|
constant2.enumeration = parser->get_attribute_value("enum");
|
||||||
}
|
}
|
||||||
|
@ -1152,10 +1163,18 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri
|
||||||
|
|
||||||
for (int i = 0; i < c.constants.size(); i++) {
|
for (int i = 0; i < c.constants.size(); i++) {
|
||||||
const ConstantDoc &k = c.constants[i];
|
const ConstantDoc &k = c.constants[i];
|
||||||
if (k.enumeration != String()) {
|
if (k.is_value_valid) {
|
||||||
_write_string(f, 2, "<constant name=\"" + k.name + "\" value=\"" + k.value + "\" enum=\"" + k.enumeration + "\">");
|
if (k.enumeration != String()) {
|
||||||
|
_write_string(f, 2, "<constant name=\"" + k.name + "\" value=\"" + k.value + "\" enum=\"" + k.enumeration + "\">");
|
||||||
|
} else {
|
||||||
|
_write_string(f, 2, "<constant name=\"" + k.name + "\" value=\"" + k.value + "\">");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
_write_string(f, 2, "<constant name=\"" + k.name + "\" value=\"" + k.value + "\">");
|
if (k.enumeration != String()) {
|
||||||
|
_write_string(f, 2, "<constant name=\"" + k.name + "\" value=\"platform-dependent\" enum=\"" + k.enumeration + "\">");
|
||||||
|
} else {
|
||||||
|
_write_string(f, 2, "<constant name=\"" + k.name + "\" value=\"platform-dependent\">");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_write_string(f, 3, k.description.strip_edges().xml_escape());
|
_write_string(f, 3, k.description.strip_edges().xml_escape());
|
||||||
_write_string(f, 2, "</constant>");
|
_write_string(f, 2, "</constant>");
|
||||||
|
|
|
@ -59,6 +59,7 @@ public:
|
||||||
struct ConstantDoc {
|
struct ConstantDoc {
|
||||||
String name;
|
String name;
|
||||||
String value;
|
String value;
|
||||||
|
bool is_value_valid;
|
||||||
String enumeration;
|
String enumeration;
|
||||||
String description;
|
String description;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1091,7 +1091,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||||
OS::get_singleton()->_vsync_via_compositor = video_mode.vsync_via_compositor;
|
OS::get_singleton()->_vsync_via_compositor = video_mode.vsync_via_compositor;
|
||||||
|
|
||||||
if (tablet_driver == "") { // specified in project.godot
|
if (tablet_driver == "") { // specified in project.godot
|
||||||
tablet_driver = GLOBAL_DEF_RST("display/window/tablet_driver", OS::get_singleton()->get_tablet_driver_name(0));
|
tablet_driver = GLOBAL_DEF_RST_NOVAL("display/window/tablet_driver", OS::get_singleton()->get_tablet_driver_name(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < OS::get_singleton()->get_tablet_driver_count(); i++) {
|
for (int i = 0; i < OS::get_singleton()->get_tablet_driver_count(); i++) {
|
||||||
|
@ -1150,7 +1150,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||||
}
|
}
|
||||||
|
|
||||||
if (audio_driver == "") { // specified in project.godot
|
if (audio_driver == "") { // specified in project.godot
|
||||||
audio_driver = GLOBAL_DEF_RST("audio/driver", OS::get_singleton()->get_audio_driver_name(0));
|
audio_driver = GLOBAL_DEF_RST_NOVAL("audio/driver", OS::get_singleton()->get_audio_driver_name(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < OS::get_singleton()->get_audio_driver_count(); i++) {
|
for (int i = 0; i < OS::get_singleton()->get_audio_driver_count(); i++) {
|
||||||
|
|
|
@ -491,7 +491,7 @@ void register_scene_types() {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
AcceptDialog::set_swap_ok_cancel(GLOBAL_DEF("gui/common/swap_ok_cancel", bool(OS::get_singleton()->get_swap_ok_cancel())));
|
AcceptDialog::set_swap_ok_cancel(GLOBAL_DEF_NOVAL("gui/common/swap_ok_cancel", bool(OS::get_singleton()->get_swap_ok_cancel())));
|
||||||
|
|
||||||
ClassDB::register_class<Shader>();
|
ClassDB::register_class<Shader>();
|
||||||
ClassDB::register_class<VisualShader>();
|
ClassDB::register_class<VisualShader>();
|
||||||
|
|
Loading…
Reference in a new issue