X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresources.cpp;h=dd9a3c68c3543b549f425a863a842ad2d35bcc04;hb=78840e775c62c1b6e3f550bf8be1f0b828df91aa;hp=2637b12b94f6e182976cf5081dc1442998cc88cc;hpb=fa658c8500fb0c368a8299bd1210688640b50352;p=libs%2Fgl.git diff --git a/source/resources.cpp b/source/resources.cpp index 2637b12b..dd9a3c68 100644 --- a/source/resources.cpp +++ b/source/resources.cpp @@ -2,11 +2,14 @@ #include #include "animation.h" #include "armature.h" +#include "camera.h" #include "font.h" #include "keyframe.h" +#include "lighting.h" #include "material.h" #include "mesh.h" #include "object.h" +#include "pipelinetemplate.h" #include "pose.h" #include "program.h" #include "programcompiler.h" @@ -27,16 +30,20 @@ void init_shaderlib(DataFile::BuiltinSource &); Resources::Resources(): default_tex_filter(Texture::can_generate_mipmap() ? LINEAR_MIPMAP_LINEAR : LINEAR), + default_tex_anisotropy(1.0f), srgb_conversion(false), resource_manager(0) { add_type().suffix(".anim").keyword("animation"); add_type().suffix(".arma").keyword("armature"); + add_type().keyword("camera"); add_type().keyword("font"); add_type().suffix(".kframe").keyword("keyframe"); - add_type().suffix(".mat").keyword("material"); + add_type().suffix(".lightn").keyword("lighting"); + add_type().suffix(".mat").creator(&Resources::create_material); add_type().keyword("mesh").creator(&Resources::create_mesh); add_type().keyword("object"); + add_type().suffix(".pipe").keyword("pipeline"); add_type().keyword("pose"); add_type().keyword("shader").suffix(".glsl").creator(&Resources::create_program); add_type().suffix(".tech").keyword("technique"); @@ -68,6 +75,11 @@ 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; @@ -78,12 +90,25 @@ void Resources::set_resource_manager(ResourceManager *m) resource_manager = m; } +Material *Resources::create_material(const string &name) +{ + if(RefPtr io = open_raw(name)) + { + DataFile::Parser parser(*io, name); + Material::GenericLoader ldr(this); + ldr.load(parser); + return ldr.get_material(); + } + + return 0; +} + Mesh *Resources::create_mesh(const string &name) { if(!resource_manager) return 0; - if(RefPtr io = open_from_sources(name)) + if(RefPtr io = open_raw(name)) { RefPtr mesh = new Mesh(resource_manager); resource_manager->set_resource_location(*mesh, *this, name); @@ -99,7 +124,7 @@ Texture2D *Resources::create_texture2d(const string &name) if(ext==".tex2d") return 0; - if(RefPtr io = open_from_sources(name)) + if(RefPtr io = open_raw(name)) { Graphics::Image image; if(!resource_manager) @@ -107,14 +132,16 @@ Texture2D *Resources::create_texture2d(const string &name) RefPtr tex = new Texture2D(resource_manager); + Sampler &samp = tex->get_default_sampler(); if(is_mipmapped(default_tex_filter)) { - tex->set_generate_mipmap(true); - tex->set_mag_filter(LINEAR); + tex->set_auto_generate_mipmap(true); + samp.set_mag_filter(LINEAR); } else - tex->set_mag_filter(default_tex_filter); - tex->set_min_filter(default_tex_filter); + 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); @@ -132,10 +159,10 @@ Program *Resources::create_program(const string &name) if(ext==".shader") return 0; - if(RefPtr io = open_from_sources(name)) + if(RefPtr io = open_raw(name)) { ProgramCompiler compiler; - compiler.compile(*io, this); + compiler.compile(*io, this, name); RefPtr program = new Program; compiler.add_shaders(*program); program->link();