X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fbuiltin.cpp;h=9e0244df1cbd71efe3acb6c915fdda33d8e7ea64;hb=c315e77b7791fe92d42e1566b5adaddf2699a758;hp=955266fe0a1ce4ad3a8abfcd9fb3afb0340266f8;hpb=9328859840052a49ca3ba868e35fcf64d417c623;p=libs%2Fgl.git diff --git a/source/glsl/builtin.cpp b/source/glsl/builtin.cpp index 955266fe..9e0244df 100644 --- a/source/glsl/builtin.cpp +++ b/source/glsl/builtin.cpp @@ -1,32 +1,22 @@ +#include +#include #include "builtin.h" #include "parser.h" +#include "visitor.h" using namespace std; -namespace { - -const char builtins_src[] = - "#pragma MSP stage(vertex)\n" - "out gl_PerVertex {\n" - " vec4 gl_Position;\n" - " float gl_ClipDistance[];\n" - "};\n" - "#pragma MSP stage(geometry)\n" - "in gl_PerVertex {\n" - " vec4 gl_Position;\n" - " float gl_ClipDistance[];\n" - "} gl_in[];\n" - "out gl_PerVertex {\n" - " vec4 gl_Position;\n" - " float gl_ClipDistance[];\n" - "};\n"; - -} - namespace Msp { namespace GL { namespace SL { +void populate_types(Stage &stage) +{ + for(NodeList::const_iterator i=stage.content.body.begin(); i!=stage.content.body.end(); ++i) + if(TypeDeclaration *type = dynamic_cast(i->get())) + stage.types[type->name] = type; +} + Module *get_builtins_module() { static RefPtr builtins_module; @@ -35,15 +25,53 @@ Module *get_builtins_module() { initialized = true; + RefPtr io = Resources::get_builtins().open("_builtin.glsl"); + if(!io) + return 0; + Parser parser; - Module *module = new Module(parser.parse(builtins_src, "", BUILTIN_SOURCE)); + Module *module = new Module(parser.parse(*io, "", BUILTIN_SOURCE)); + + NodeList &shared_body = module->shared.content.body; + NodeList::iterator insert_point = shared_body.begin(); + + RefPtr type = new BasicTypeDeclaration; + type->source = BUILTIN_SOURCE; + type->name = "void"; + type->kind = BasicTypeDeclaration::VOID; + shared_body.insert(insert_point, type); + + type = new BasicTypeDeclaration; + type->source = BUILTIN_SOURCE; + type->name = "bool"; + type->size = 1; + type->kind = BasicTypeDeclaration::BOOL; + shared_body.insert(insert_point, type); + + type = new BasicTypeDeclaration; + type->source = BUILTIN_SOURCE; + type->name = "int"; + type->size = 32; + type->kind = BasicTypeDeclaration::INT; + shared_body.insert(insert_point, type); + + type = new BasicTypeDeclaration; + type->source = BUILTIN_SOURCE; + type->name = "float"; + type->size = 32; + type->kind = BasicTypeDeclaration::FLOAT; + shared_body.insert(insert_point, type); + + populate_types(module->shared); + for(list::iterator i=module->stages.begin(); i!=module->stages.end(); ++i) + populate_types(*i); builtins_module = module; } return builtins_module.get(); } -Stage *get_builtins(Stage::Type type) +const Stage *get_builtins(Stage::Type type) { Module *module = get_builtins_module(); if(!module)