X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fsyntax.h;h=62c289d9fbb6ec48f61be268b7eec67072718e98;hb=4c805f55d89919d6971d600102ab4d6d65d56dc3;hp=da7b0907e37460d5b7041d32e2c921dee9473563;hpb=1f09306906fbf57c05dccb27189264706cc64cfa;p=libs%2Fgl.git diff --git a/source/glsl/syntax.h b/source/glsl/syntax.h index da7b0907..62c289d9 100644 --- a/source/glsl/syntax.h +++ b/source/glsl/syntax.h @@ -55,9 +55,11 @@ struct NodeVisitor; struct Node { -protected: - Node() { } - Node(const Node &) { } + int source; + unsigned line; + + Node(): source(GENERATED_SOURCE), line(1) { } + Node(const Node &n): source(n.source), line(n.line) { } private: Node &operator=(const Node &); public: @@ -106,11 +108,6 @@ struct FunctionDeclaration; struct Statement: Node { - int source; - unsigned line; - - Statement(); - virtual Statement *clone() const = 0; }; @@ -288,9 +285,66 @@ struct InterfaceLayout: Statement virtual void visit(NodeVisitor &); }; -struct StructDeclaration: Statement +struct TypeDeclaration: Statement { std::string name; + + virtual TypeDeclaration *clone() const = 0; +}; + +struct BasicTypeDeclaration: TypeDeclaration +{ + enum Kind + { + ALIAS, + VOID, + BOOL, + INT, + FLOAT, + VECTOR, + MATRIX, + ARRAY + }; + + Kind kind; + unsigned size; + std::string base; + + TypeDeclaration *base_type; + + BasicTypeDeclaration(); + BasicTypeDeclaration(const BasicTypeDeclaration &); + + virtual BasicTypeDeclaration *clone() const { return new BasicTypeDeclaration(*this); } + virtual void visit(NodeVisitor &); +}; + +struct ImageTypeDeclaration: TypeDeclaration +{ + enum Dimensions + { + ONE = 1, + TWO, + THREE, + CUBE + }; + + Dimensions dimensions; + bool array; + bool sampled; + bool shadow; + std::string base; + + TypeDeclaration *base_type; + + ImageTypeDeclaration(); + + virtual ImageTypeDeclaration *clone() const { return new ImageTypeDeclaration(*this); } + virtual void visit(NodeVisitor &); +}; + +struct StructDeclaration: TypeDeclaration +{ Block members; StructDeclaration(); @@ -313,7 +367,7 @@ struct VariableDeclaration: Statement NodePtr array_size; NodePtr init_expression; - StructDeclaration *type_declaration; + TypeDeclaration *type_declaration; VariableDeclaration *linked_declaration; VariableDeclaration(); @@ -416,7 +470,7 @@ struct Stage Type type; Stage *previous; Block content; - std::map types; + std::map types; std::map interface_blocks; std::map functions; std::map locations;