blob: 08a6141b6b2b96959ac6383b6205bbfceedf0bbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#line 2 "common.nonterminals"
/*************************************************************************
* Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
* *
* This file is part of Dimension. *
* *
* Dimension is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 3 of the License, or (at *
* your option) any later version. *
* *
* Dimension is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/
/* Fundamental language elements */
%type <astnode> IDENTIFIER
%type <astnode> STRING
/* Transformations */
%type <astnode> TRANSFORMATION
%type <astnode> TRANSFORMATION_ITEMS
%type <astnode> TRANSFORMATION_ITEM
/* The camera */
%type <astnode> CAMERA
%type <astnode> CAMERA_ITEMS
%type <astnode> CAMERA_ITEM
%type <astnode> CAMERA_TYPE
%type <astnode> CAMERA_VECTOR
%type <astnode> CAMERA_MODIFIER
/* Objects */
%type <astnode> OBJECT
%type <astnode> FINITE_SOLID_OBJECT
%type <astnode> BOX
%type <astnode> CONE
%type <astnode> CYLINDER
%type <astnode> MAYBE_OPEN
%type <astnode> SPHERE
%type <astnode> TORUS
%type <astnode> TORUS_MODIFIERS
%type <astnode> INFINITE_SOLID_OBJECT
%type <astnode> PLANE
%type <astnode> CSG_OBJECT
%type <astnode> UNION
%type <astnode> INTERSECTION
%type <astnode> DIFFERENCE
%type <astnode> MERGE
%type <astnode> OBJECTS
%type <astnode> LIGHT_SOURCE
/* Object modifiers */
%type <astnode> OBJECT_MODIFIERS
%type <astnode> OBJECT_MODIFIER
/* Textures */
%type <astnode> TEXTURE
%type <astnode> TEXTURE_ITEMS
/* Pigments */
%type <astnode> PIGMENT
%type <astnode> PIGMENT_TYPE
%type <astnode> PIGMENT_MODIFIERS
%type <astnode> BITMAP_TYPE
/* Finishes */
%type <astnode> FINISH
%type <astnode> FINISH_ITEMS
%type <astnode> REFLECTION
%type <astnode> REFLECTION_ITEMS
/* Interiors */
%type <astnode> INTERIOR
%type <astnode> INTERIOR_ITEMS
/* Floats */
%type <astnode> FLOAT
%type <astnode> INT
%type <astnode> FLOAT_LITERAL
/* Vectors */
%type <astnode> VECTOR
%type <astnode> VECTOR_LITERAL
/* Generalized arithmetic expressions */
%type <astnode> ARITH_EXPR
%type <astnode> CONDITIONAL
%type <astnode> MAX_LIST
%type <astnode> MIN_LIST
/* Colors */
%type <astnode> COLOR
%type <astnode> COLOR_BODY
%type <astnode> COLOR_VECTOR
%type <astnode> COLOR_KEYWORD_GROUP
%type <astnode> COLOR_KEYWORD_GROUP_INIT
|