feat: updated engine
This commit is contained in:
parent
cbe99774ff
commit
f4cf6b3999
6607 changed files with 910135 additions and 430025 deletions
|
|
@ -30,8 +30,8 @@
|
|||
|
||||
#include "json.h"
|
||||
|
||||
#include "core/config/engine.h"
|
||||
#include "core/io/file_access.h"
|
||||
#include "core/io/resource_loader.h"
|
||||
#include "core/object/class_db.h"
|
||||
#include "core/object/script_language.h"
|
||||
#include "core/variant/container_type_validate.h"
|
||||
|
||||
|
|
@ -155,6 +155,11 @@ void JSON::_stringify(String &r_result, const Variant &p_var, const String &p_in
|
|||
ERR_FAIL_MSG("Converting circular structure to JSON.");
|
||||
}
|
||||
|
||||
if (d.is_empty()) {
|
||||
r_result += "{}";
|
||||
return;
|
||||
}
|
||||
|
||||
r_result += '{';
|
||||
r_result += end_statement;
|
||||
p_markers.insert(d.id());
|
||||
|
|
@ -668,10 +673,10 @@ static bool _encode_container_type(Dictionary &r_dict, const String &p_key, cons
|
|||
}
|
||||
|
||||
Variant JSON::_from_native(const Variant &p_variant, bool p_full_objects, int p_depth) {
|
||||
#define RETURN_ARGS \
|
||||
Dictionary ret; \
|
||||
#define RETURN_ARGS \
|
||||
Dictionary ret; \
|
||||
ret[TYPE] = Variant::get_type_name(p_variant.get_type()); \
|
||||
ret[ARGS] = args; \
|
||||
ret[ARGS] = args; \
|
||||
return ret
|
||||
|
||||
switch (p_variant.get_type()) {
|
||||
|
|
@ -1093,18 +1098,18 @@ Variant JSON::_to_native(const Variant &p_json, bool p_allow_objects, int p_dept
|
|||
|
||||
ERR_FAIL_COND_V(!dict.has(TYPE), Variant());
|
||||
|
||||
#define LOAD_ARGS() \
|
||||
#define LOAD_ARGS() \
|
||||
ERR_FAIL_COND_V(!dict.has(ARGS), Variant()); \
|
||||
const Array args = dict[ARGS]
|
||||
|
||||
#define LOAD_ARGS_CHECK_SIZE(m_size) \
|
||||
#define LOAD_ARGS_CHECK_SIZE(m_size) \
|
||||
ERR_FAIL_COND_V(!dict.has(ARGS), Variant()); \
|
||||
const Array args = dict[ARGS]; \
|
||||
const Array args = dict[ARGS]; \
|
||||
ERR_FAIL_COND_V(args.size() != (m_size), Variant())
|
||||
|
||||
#define LOAD_ARGS_CHECK_FACTOR(m_factor) \
|
||||
#define LOAD_ARGS_CHECK_FACTOR(m_factor) \
|
||||
ERR_FAIL_COND_V(!dict.has(ARGS), Variant()); \
|
||||
const Array args = dict[ARGS]; \
|
||||
const Array args = dict[ARGS]; \
|
||||
ERR_FAIL_COND_V(args.size() % (m_factor) != 0, Variant())
|
||||
|
||||
switch (Variant::get_type_by_name(dict[TYPE])) {
|
||||
|
|
@ -1545,88 +1550,3 @@ Variant JSON::_to_native(const Variant &p_json, bool p_allow_objects, int p_dept
|
|||
#undef VALUE_TYPE
|
||||
#undef ARGS
|
||||
#undef PROPS
|
||||
|
||||
////////////
|
||||
|
||||
Ref<Resource> ResourceFormatLoaderJSON::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, CacheMode p_cache_mode) {
|
||||
if (r_error) {
|
||||
*r_error = ERR_FILE_CANT_OPEN;
|
||||
}
|
||||
|
||||
if (!FileAccess::exists(p_path)) {
|
||||
if (r_error) {
|
||||
*r_error = ERR_FILE_NOT_FOUND;
|
||||
}
|
||||
return Ref<Resource>();
|
||||
}
|
||||
|
||||
Ref<JSON> json;
|
||||
json.instantiate();
|
||||
|
||||
Error err = json->parse(FileAccess::get_file_as_string(p_path), Engine::get_singleton()->is_editor_hint());
|
||||
if (err != OK) {
|
||||
String err_text = "Error parsing JSON file at '" + p_path + "', on line " + itos(json->get_error_line()) + ": " + json->get_error_message();
|
||||
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
// If running on editor, still allow opening the JSON so the code editor can edit it.
|
||||
WARN_PRINT(err_text);
|
||||
} else {
|
||||
if (r_error) {
|
||||
*r_error = err;
|
||||
}
|
||||
ERR_PRINT(err_text);
|
||||
return Ref<Resource>();
|
||||
}
|
||||
}
|
||||
|
||||
if (r_error) {
|
||||
*r_error = OK;
|
||||
}
|
||||
|
||||
return json;
|
||||
}
|
||||
|
||||
void ResourceFormatLoaderJSON::get_recognized_extensions(List<String> *p_extensions) const {
|
||||
p_extensions->push_back("json");
|
||||
}
|
||||
|
||||
bool ResourceFormatLoaderJSON::handles_type(const String &p_type) const {
|
||||
return (p_type == "JSON");
|
||||
}
|
||||
|
||||
String ResourceFormatLoaderJSON::get_resource_type(const String &p_path) const {
|
||||
if (p_path.has_extension("json")) {
|
||||
return "JSON";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
Error ResourceFormatSaverJSON::save(const Ref<Resource> &p_resource, const String &p_path, uint32_t p_flags) {
|
||||
Ref<JSON> json = p_resource;
|
||||
ERR_FAIL_COND_V(json.is_null(), ERR_INVALID_PARAMETER);
|
||||
|
||||
String source = json->get_parsed_text().is_empty() ? JSON::stringify(json->get_data(), "\t", false, true) : json->get_parsed_text();
|
||||
|
||||
Error err;
|
||||
Ref<FileAccess> file = FileAccess::open(p_path, FileAccess::WRITE, &err);
|
||||
|
||||
ERR_FAIL_COND_V_MSG(err, err, vformat("Cannot save json '%s'.", p_path));
|
||||
|
||||
file->store_string(source);
|
||||
if (file->get_error() != OK && file->get_error() != ERR_FILE_EOF) {
|
||||
return ERR_CANT_CREATE;
|
||||
}
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
void ResourceFormatSaverJSON::get_recognized_extensions(const Ref<Resource> &p_resource, List<String> *p_extensions) const {
|
||||
Ref<JSON> json = p_resource;
|
||||
if (json.is_valid()) {
|
||||
p_extensions->push_back("json");
|
||||
}
|
||||
}
|
||||
|
||||
bool ResourceFormatSaverJSON::recognize(const Ref<Resource> &p_resource) const {
|
||||
return p_resource->get_class_name() == "JSON"; //only json, not inherited
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue