Removed interactive loader, added proper thread loading.
This commit is contained in:
@ -37,7 +37,7 @@
|
||||
#include "core/variant_parser.h"
|
||||
#include "scene/resources/packed_scene.h"
|
||||
|
||||
class ResourceInteractiveLoaderText : public ResourceInteractiveLoader {
|
||||
class ResourceLoaderText {
|
||||
|
||||
bool translation_remapped;
|
||||
String local_path;
|
||||
@ -49,6 +49,7 @@ class ResourceInteractiveLoaderText : public ResourceInteractiveLoader {
|
||||
VariantParser::StreamFile stream;
|
||||
|
||||
struct ExtResource {
|
||||
RES cache;
|
||||
String path;
|
||||
String type;
|
||||
};
|
||||
@ -68,13 +69,16 @@ class ResourceInteractiveLoaderText : public ResourceInteractiveLoader {
|
||||
|
||||
VariantParser::Tag next_tag;
|
||||
|
||||
bool use_sub_threads;
|
||||
float *progress;
|
||||
|
||||
mutable int lines;
|
||||
|
||||
Map<String, String> remaps;
|
||||
//void _printerr();
|
||||
|
||||
static Error _parse_sub_resources(void *p_self, VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { return reinterpret_cast<ResourceInteractiveLoaderText *>(p_self)->_parse_sub_resource(p_stream, r_res, line, r_err_str); }
|
||||
static Error _parse_ext_resources(void *p_self, VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { return reinterpret_cast<ResourceInteractiveLoaderText *>(p_self)->_parse_ext_resource(p_stream, r_res, line, r_err_str); }
|
||||
static Error _parse_sub_resources(void *p_self, VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { return reinterpret_cast<ResourceLoaderText *>(p_self)->_parse_sub_resource(p_stream, r_res, line, r_err_str); }
|
||||
static Error _parse_ext_resources(void *p_self, VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { return reinterpret_cast<ResourceLoaderText *>(p_self)->_parse_ext_resource(p_stream, r_res, line, r_err_str); }
|
||||
|
||||
Error _parse_sub_resource(VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str);
|
||||
Error _parse_ext_resource(VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str);
|
||||
@ -110,12 +114,12 @@ class ResourceInteractiveLoaderText : public ResourceInteractiveLoader {
|
||||
Ref<PackedScene> _parse_node_tag(VariantParser::ResourceParser &parser);
|
||||
|
||||
public:
|
||||
virtual void set_local_path(const String &p_local_path);
|
||||
virtual Ref<Resource> get_resource();
|
||||
virtual Error poll();
|
||||
virtual int get_stage() const;
|
||||
virtual int get_stage_count() const;
|
||||
virtual void set_translation_remapped(bool p_remapped);
|
||||
void set_local_path(const String &p_local_path);
|
||||
Ref<Resource> get_resource();
|
||||
Error load();
|
||||
int get_stage() const;
|
||||
int get_stage_count() const;
|
||||
void set_translation_remapped(bool p_remapped);
|
||||
|
||||
void open(FileAccess *p_f, bool p_skip_first_tag = false);
|
||||
String recognize(FileAccess *p_f);
|
||||
@ -123,14 +127,14 @@ public:
|
||||
Error rename_dependencies(FileAccess *p_f, const String &p_path, const Map<String, String> &p_map);
|
||||
|
||||
Error save_as_binary(FileAccess *p_f, const String &p_path);
|
||||
ResourceInteractiveLoaderText();
|
||||
~ResourceInteractiveLoaderText();
|
||||
ResourceLoaderText();
|
||||
~ResourceLoaderText();
|
||||
};
|
||||
|
||||
class ResourceFormatLoaderText : public ResourceFormatLoader {
|
||||
public:
|
||||
static ResourceFormatLoaderText *singleton;
|
||||
virtual Ref<ResourceInteractiveLoader> load_interactive(const String &p_path, const String &p_original_path = "", Error *r_error = NULL);
|
||||
virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL, bool p_use_sub_threads = false, float *r_progress = nullptr);
|
||||
virtual void get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const;
|
||||
virtual void get_recognized_extensions(List<String> *p_extensions) const;
|
||||
virtual bool handles_type(const String &p_type) const;
|
||||
|
||||
Reference in New Issue
Block a user