X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresources%2Fresources.cpp;h=a37496b93771190add82369f87cea33fa6b0ce2c;hb=be92396630a2065e43c21d9d1904e97014844cff;hp=b5093932c2516f44d7fd93c660aafe1e734eb93f;hpb=2108712bcde8b5c4573ca4d602d5f8948b810d72;p=libs%2Fgl.git diff --git a/source/resources/resources.cpp b/source/resources/resources.cpp index b5093932..a37496b9 100644 --- a/source/resources/resources.cpp +++ b/source/resources/resources.cpp @@ -2,26 +2,34 @@ #include #include "animation.h" #include "armature.h" +#include "basicmaterial.h" #include "camera.h" +#include "directionallight.h" +#include "error.h" #include "font.h" #include "keyframe.h" #include "lighting.h" -#include "material.h" #include "mesh.h" #include "module.h" #include "object.h" +#include "occludedscene.h" +#include "orderedscene.h" +#include "pbrmaterial.h" #include "sequencetemplate.h" +#include "pointlight.h" #include "pose.h" #include "program.h" #include "resourcemanager.h" #include "resources.h" #include "sampler.h" -#include "scene.h" +#include "simplescene.h" #include "technique.h" #include "texture1d.h" #include "texture2d.h" #include "texture2darray.h" #include "texturecube.h" +#include "unlitmaterial.h" +#include "zsortedscene.h" #include "glsl/compiler.h" using namespace std; @@ -32,35 +40,89 @@ namespace GL { void init_shaderlib(DataFile::BuiltinSource &); void init_builtin_data(DataFile::BuiltinSource &); -Resources::Resources(): - default_tex_filter(Texture::can_generate_mipmap() ? LINEAR_MIPMAP_LINEAR : LINEAR), - default_tex_anisotropy(1.0f), +Resources *Resources::global_resources = 0; + +Resources::Resources(bool set_as_global): srgb_conversion(false), resource_manager(0) { add_type().suffix(".anim").keyword("animation"); add_type().suffix(".arma").keyword("armature"); - add_type().keyword("camera"); + add_type().base().suffix(".mat") + .creator([this](const string &n) -> BasicMaterial * { create_generic(n); return 0; }) + .notify(&set_debug_name); + add_type().keyword("camera") + .notify(&set_debug_name); + add_type().base().suffix(".light") + .creator([this](const string &n) -> DirectionalLight * { create_generic(n); return 0; }); add_type().keyword("font"); add_type().suffix(".kframe").keyword("keyframe"); - add_type().suffix(".lightn").keyword("lighting"); - add_type().suffix(".mat").creator(&Resources::create_material); - add_type().keyword("mesh").creator(&Resources::create_mesh); - add_type().suffix(".glsl").suffix(".spv").creator(&Resources::create_module); + add_type().suffix(".lightn").keyword("lighting") + .notify(&set_debug_name); + add_type().keyword("mesh") + .creator([this](const string &n){ return create_mesh(n); }) + .notify(&set_debug_name); + add_type().suffix(".glsl").suffix(".spv") + .creator([this](const string &n){ return create_module(n); }); add_type().keyword("object"); + add_type().base().suffix(".scene") + .creator([this](const string &n) -> OccludedScene * { create_generic(n); return 0; }); + add_type().base().suffix(".scene") + .creator([this](const string &n) -> OrderedScene * { create_generic(n); return 0; }); + add_type().base().suffix(".mat") + .creator([this](const string &n) -> PbrMaterial * { create_generic(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".light") + .creator([this](const string &n) -> PointLight * { create_generic(n); return 0; }); add_type().suffix(".seq").keyword("sequence"); add_type().keyword("pose"); - add_type().keyword("shader").creator(&Resources::create_program); - add_type().suffix(".samp").keyword("sampler"); - add_type().suffix(".scene").creator(&Resources::create_scene); - add_type().suffix(".tech").keyword("technique"); - add_type().base().suffix(".tex1d").keyword("texture1d"); - add_type().base().suffix(".tex2d").suffix(".png").suffix(".jpg").keyword("texture2d").creator(&Resources::create_texture2d); - add_type().base().suffix(".tex3d").keyword("texture3d"); - add_type().base().suffix(".texcb").keyword("texture_cube"); - add_type().base().suffix(".tex2da").keyword("texture2d_array"); + add_type().keyword("shader") + .creator([this](const string &n){ return create_program(n); }) + .notify(&set_debug_name); + add_type().suffix(".samp").keyword("sampler") + .notify(&set_debug_name); + add_type().base().suffix(".scene") + .creator([this](const string &n) -> SimpleScene * { create_generic(n); return 0; }); + add_type().suffix(".tech").keyword("technique") + .notify(&set_debug_name); + add_type().base().suffix(".tex") + .creator([this](const string &n) -> Texture1D * { create_texture(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".tex").suffix(".png").suffix(".jpg") + .creator([this](const string &n) -> Texture2D * { create_texture(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".tex") + .creator([this](const string &n) -> Texture3D * { create_texture(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".tex") + .creator([this](const string &n) -> TextureCube * { create_texture(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".tex") + .creator([this](const string &n) -> Texture2DArray * { create_texture(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".mat") + .creator([this](const string &n) -> UnlitMaterial * { create_generic(n); return 0; }) + .notify(&set_debug_name); + add_type().base().suffix(".scene") + .creator([this](const string &n) -> ZSortedScene * { create_generic(n); return 0; }); add_source(get_builtins()); + + if(set_as_global && !global_resources) + global_resources = this; +} + +Resources::~Resources() +{ + if(this==global_resources) + global_resources = 0; +} + +Resources &Resources::get_global() +{ + if(!global_resources) + throw invalid_operation("no global resources"); + return *global_resources; } const DataFile::CollectionSource &Resources::get_builtins() @@ -78,16 +140,6 @@ const DataFile::CollectionSource &Resources::get_builtins() return builtins; } -void Resources::set_default_texture_filter(TextureFilter tf) -{ - default_tex_filter = tf; -} - -void Resources::set_default_texture_anisotropy(float a) -{ - default_tex_anisotropy = a; -} - void Resources::set_srgb_conversion(bool c) { srgb_conversion = c; @@ -98,14 +150,15 @@ void Resources::set_resource_manager(ResourceManager *m) resource_manager = m; } -Material *Resources::create_material(const string &name) +template +T *Resources::create_generic(const string &name) { if(RefPtr io = open_raw(name)) { DataFile::Parser parser(*io, name); - Material::GenericLoader ldr(this); + L ldr(*this); ldr.load(parser); - return ldr.get_material(); + ldr.store_object(*this, name); } return 0; @@ -118,7 +171,8 @@ Mesh *Resources::create_mesh(const string &name) if(RefPtr io = open_raw(name)) { - RefPtr mesh = new Mesh(resource_manager); + RefPtr mesh = new Mesh; + mesh->set_manager(resource_manager); resource_manager->set_resource_location(*mesh, *this, name); return mesh.release(); } @@ -126,62 +180,31 @@ Mesh *Resources::create_mesh(const string &name) return 0; } -Scene *Resources::create_scene(const string &name) -{ - if(RefPtr io = open_raw(name)) - { - DataFile::Parser parser(*io, name); - Scene::GenericLoader ldr(*this); - ldr.load(parser); - return ldr.get_scene(); - } - - return 0; -} - -Texture2D *Resources::create_texture2d(const string &name) +Texture *Resources::create_texture(const string &name) { string ext = FS::extpart(name); - if(ext==".tex2d" && !resource_manager) - return 0; + if(ext==".tex") + return create_generic>(name); if(RefPtr io = open_raw(name)) { RefPtr tex; - if(ext==".tex2d") - { - tex = new Texture2D(resource_manager); - DataFile::Parser parser(*io, name); - Texture2D::Loader ldr(*tex, *this); - ldr.load(parser); - } + // Verify that the image is loadable + Graphics::Image image; + if(!resource_manager) + image.load_io(*io); + + tex = new Texture2D; + tex->set_manager(resource_manager); + + if(resource_manager) + resource_manager->set_resource_location(*tex, *this, name); else - { - // Verify that the image is loadable - Graphics::Image image; - if(!resource_manager) - image.load_io(*io); - - tex = new Texture2D(resource_manager); - Sampler &samp = tex->get_default_sampler(); - if(is_mipmapped(default_tex_filter)) - { - tex->set_auto_generate_mipmap(true); - samp.set_mag_filter(LINEAR); - } - else - samp.set_mag_filter(default_tex_filter); - samp.set_min_filter(default_tex_filter); - samp.set_max_anisotropy(default_tex_anisotropy); - - if(resource_manager) - resource_manager->set_resource_location(*tex, *this, name); - else - tex->image(image); - } + tex->image(image); - return tex.release(); + add(name, tex.get()); + tex.release(); } return 0; @@ -208,6 +231,15 @@ Module *Resources::create_module(const string &name) return module.release(); } } + else if(ext==".spv") + { + if((io = open_raw(FS::basepart(name)+".glsl"))) + { + RefPtr module = new SpirVModule; + module->load_source(*io, this, name); + return module.release(); + } + } return 0; } @@ -222,25 +254,44 @@ Program *Resources::create_program(const string &name) Module &module = get(base); RefPtr shprog = new Program; shprog->add_stages(module); - shprog->link(); return shprog.release(); } return 0; } +template +void Resources::set_debug_name(const string &name, T &item) +{ +#ifdef DEBUG + item.set_debug_name(name); +#endif +} + Resources::Loader::Loader(Resources &r): DerivedObjectLoader(r) { - add("scene", &Loader::scene); + add("light", &Loader::generic); + add("material", &Loader::generic); + add("scene", &Loader::generic); + add("texture", &Loader::generic>); } -void Resources::Loader::scene(const string &name) +template +void Resources::Loader::generic(const string &name) { - Scene::GenericLoader ldr(obj); + L ldr(obj); load_sub_with(ldr); - obj.add(name, ldr.get_scene()); + ldr.store_object(obj, name); +} + + +template +void Resources::GenericResourceLoader::type(const DataFile::Symbol &t) +{ + T::GenericLoader::type(t); + this->object->set_manager(resources.resource_manager); } } // namespace GL