X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fresources%2Fresources.h;h=589ea5ae78d9f758b30fd2d65b55964983c09f1a;hb=0bdf0d7be74940dd60274608d577e58d86f76496;hp=37de5d8cfc80482badc99343ff617dd21d0ff692;hpb=dbc91b65728ab9c0e574bb1127cfe4d2da55de7f;p=libs%2Fgl.git diff --git a/source/resources/resources.h b/source/resources/resources.h index 37de5d8c..589ea5ae 100644 --- a/source/resources/resources.h +++ b/source/resources/resources.h @@ -16,8 +16,44 @@ class Scene; class Texture2D; /** -A collection class for GL resources. Most useful as a base class for an -application-specific collection. +A collection class for GL resources. + +The following types of objects can be loaded: +Animation .anim +Armature .arma +BasicMaterial (Material) .mat +Camera .camera +DirectionalLight (Light) .light +Font .font +KeyFrame .kframe +Lighting .lightn +Mesh .mesh +Module .glsl .spv +Object (Renderable) .object +OccludedScene (Scene, Renderable) .scene +OrderedScene (Scene, Renderable) .scene +PbrMaterial (Material) .mat +PointLight (Light) .light +SequenceTemplate .seq +Pose .pose +Program .shader +Sampler .samp +SimpleScene (Scene, Renderable) .scene +Technique .tech +Texture1D (Texture) .tex +Texture2D (Texture) .tex .png .jpg +Texture3D (Texture) .tex +TextureCube (Texture) .tex +Texture2DArray (Texture) .tex +UnlitMaterial (Material) .mat +ZSortedScene (Scene, Renderable) .scene + +This class is normally used by deriving from it and adding any necessary data +sources in the derived class. + +A ResourceManager can be set to manage objects derived from Resource. Bulk +data for those objects will then be loaded in the background, without blocking +the main thread. */ class Resources: virtual public DataFile::Collection { @@ -28,10 +64,24 @@ public: Loader(Resources &); private: - void scene(const std::string &); + template + void generic(const std::string &); }; private: + template + class GenericResourceLoader: public T::GenericLoader + { + private: + Resources &resources; + + public: + GenericResourceLoader(Resources &r): T::GenericLoader(r), resources(r) { } + + protected: + virtual void type(const DataFile::Symbol &); + }; + bool srgb_conversion; ResourceManager *resource_manager; @@ -53,15 +103,16 @@ public: void set_resource_manager(ResourceManager *); protected: - Material *create_material(const std::string &); + template + T *create_generic(const std::string &); + Mesh *create_mesh(const std::string &); - Scene *create_scene(const std::string &); - Texture2D *create_texture2d(const std::string &); + Texture *create_texture(const std::string &); Module *create_module(const std::string &); Program *create_program(const std::string &); template - void set_debug_name(const std::string &, T &); + static void set_debug_name(const std::string &, T &); }; } // namespace GL