#ifndef PROP_MATERIAL_CACHE_H #define PROP_MATERIAL_CACHE_H #include "core/math/color.h" #include "core/object/resource.h" #include "core/containers/vector.h" #include "core/math/rect2.h" #include "core/os/mutex.h" #include "scene/resources/material/material.h" class PropData; class PropMaterialCache : public Resource { GDCLASS(PropMaterialCache, Resource) public: bool get_initialized(); void set_initialized(const bool value); bool mutex_locked(); void mutex_lock(); void mutex_unlock(); int get_ref_count(); void set_ref_count(const int value); void inc_ref_count(); void dec_ref_count(); Ref material_get(const int index); Ref material_lod_get(const int index); void material_add(const Ref &value); void material_set(const int index, const Ref &value); void material_remove(const int index); int material_get_num() const; void materials_clear(); Vector materials_get(); void materials_set(const Vector &materials); virtual void texture_add(const Ref &texture); virtual void texture_remove(const Ref &texture); virtual void texture_remove_index(const int index); virtual void textures_clear(); virtual int texture_count(); virtual Ref texture_get(const int index); virtual Ref texture_get_atlas(const int index); virtual Ref texture_get_atlas_tex(const Ref &texture); virtual Rect2 texture_get_uv_rect(const Ref &texture); void prop_add_textures(const Ref &prop); void prop_remove_textures(const Ref &prop); virtual void refresh_rects(); virtual void initial_setup_default(); void setup_material_albedo(Ref texture); PropMaterialCache(); ~PropMaterialCache(); protected: static void _bind_methods(); bool _locked; bool _initialized; Vector> _materials; Vector> _textures; int _ref_count; Mutex _mutex; }; #endif