From: Mikko Rasa Date: Fri, 5 Mar 2021 21:08:41 +0000 (+0200) Subject: Create array type declarations as necessary X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=de87bb70ae10de39a39b2415407a234ab28099cf Create array type declarations as necessary --- diff --git a/source/glsl/generate.cpp b/source/glsl/generate.cpp index 07181d35..c9803acc 100644 --- a/source/glsl/generate.cpp +++ b/source/glsl/generate.cpp @@ -143,6 +143,16 @@ TypeDeclaration *TypeResolver::resolve_type(const string &name) return 0; } +void TypeResolver::visit(Block &block) +{ + for(NodeList::iterator i=block.body.begin(); i!=block.body.end(); ++i) + { + if(!block.parent) + type_insert_point = i; + (*i)->visit(*this); + } +} + void TypeResolver::visit(BasicTypeDeclaration &type) { type.base_type = resolve_type(type.base); @@ -157,6 +167,8 @@ void TypeResolver::visit(BasicTypeDeclaration &type) if(type.kind==BasicTypeDeclaration::ALIAS && type.base_type) alias_map[&type] = type.base_type; + else if(type.kind==BasicTypeDeclaration::ARRAY && type.base_type) + array_types[type.base_type] = &type; stage->types.insert(make_pair(type.name, &type)); } @@ -175,7 +187,26 @@ void TypeResolver::visit(StructDeclaration &strct) void TypeResolver::visit(VariableDeclaration &var) { - var.type_declaration = resolve_type(var.type); + TypeDeclaration *type = resolve_type(var.type); + if(var.array && type) + { + map::iterator i = array_types.find(type); + if(i==array_types.end()) + { + BasicTypeDeclaration *array = new BasicTypeDeclaration; + array->source = BUILTIN_SOURCE; + array->name = type->name+"[]"; + array->kind = BasicTypeDeclaration::ARRAY; + array->base = type->name; + array->base_type = type; + stage->content.body.insert(type_insert_point, array); + array->visit(*this); + type = array; + } + else + type = i->second; + } + var.type_declaration = type; } void TypeResolver::visit(FunctionDeclaration &func) diff --git a/source/glsl/generate.h b/source/glsl/generate.h index b660a095..63f1b077 100644 --- a/source/glsl/generate.h +++ b/source/glsl/generate.h @@ -61,6 +61,8 @@ class TypeResolver: private TraversingVisitor private: Stage *stage; std::map alias_map; + std::map array_types; + NodeList::iterator type_insert_point; public: TypeResolver(); @@ -69,6 +71,7 @@ public: private: TypeDeclaration *resolve_type(const std::string &); + virtual void visit(Block &); virtual void visit(BasicTypeDeclaration &); virtual void visit(ImageTypeDeclaration &); virtual void visit(StructDeclaration &); diff --git a/source/glsl/output.cpp b/source/glsl/output.cpp index f440fa8c..d44dbff9 100644 --- a/source/glsl/output.cpp +++ b/source/glsl/output.cpp @@ -243,7 +243,10 @@ void Formatter::visit(VariableDeclaration &var) } if(!var.precision.empty()) append(format("%s ", var.precision)); - append(format("%s %s", var.type_declaration->name, var.name)); + string type_name = var.type_declaration->name; + if(var.array) + type_name = type_name.substr(0, type_name.find('[')); + append(format("%s %s", type_name, var.name)); if(var.array) { append('[');