summaryrefslogtreecommitdiff
path: root/tikzit/src/common/tikzparser.ym
blob: 9f03745b8a34c36c13fb339d000e6cd8ec13a595 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// %expect 3

%{
//
//  tikzparser.y
//  TikZiT
//  
//  Copyright 2010 Chris Heunen. All rights reserved.
//  
//  
//  This file is part of TikZiT.
//  
//  TikZiT 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.
//  
//  TikZiT 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 TikZiT.  If not, see <http://www.gnu.org/licenses/>.
//  
#include <stdio.h>
#include <string.h>
#import <Foundation/Foundation.h>
#import "TikzGraphAssembler.h"
#import "GraphElementProperty.h"
	
extern char* yystr;
extern int yylineno;
extern int tokenpos;
extern int yylex(void);
extern void yyerror(const char *str);

%}

%union {
	NSPoint pt;
	NSString *nsstr;
};

%error-verbose

%token LATEXBEGIN
%token LATEXEND
%token TIKZPICTURE
%token PGFONLAYER
%token LEFTPARENTHESIS
%token RIGHTPARENTHESIS
%token LEFTBRACKET
%token RIGHTBRACKET
%token SEMICOLON
%token COMMA
%token FULLSTOP
%token EQUALS
%token DRAW
%token TO
%token NODE
%token RECTANGLE
%token PATH
%token ALTNODE
%token AT
%token REALNUMBER
%token NATURALNUMBER
%token LWORD
%token DELIMITEDSTRING

%type<nsstr> nodename
%type<nsstr> anchor
%type<nsstr> optanchor
%type<nsstr> nodeid
%type<pt> coords
%type<nsstr> propsym
%type<nsstr> propsyms
%type<nsstr> val
%type<nsstr> number

%%

tikzpicture: LATEXBEGIN TIKZPICTURE optproperties expressions LATEXEND TIKZPICTURE;
expressions: expressions expression | ;
expression: node | edge | boundingbox | ignore;

ignore: LATEXBEGIN PGFONLAYER DELIMITEDSTRING | LATEXEND PGFONLAYER;

number: REALNUMBER { $$ = $<nsstr>1; } | NATURALNUMBER { $$ = $<nsstr>1; };

optproperties: LEFTBRACKET properties RIGHTBRACKET | ;
properties: property extraproperties;
extraproperties: COMMA property extraproperties | property extraproperties | ;

property:
	val EQUALS val
	{
		TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
		GraphElementProperty *p = [[GraphElementProperty alloc] initWithPropertyValue:$<nsstr>3 forKey:$<nsstr>1];
		[[a data] addObject:p];
		[p release];
	}
	| val
	{
		TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
		GraphElementProperty *p = [[GraphElementProperty alloc] initWithAtomName:$<nsstr>1];
		[[a data] addObject:p];
		[p release];
	};

val: propsyms { $$ = $<nsstr>1; } | DELIMITEDSTRING { $$ = $<nsstr>1; };
propsyms:
	propsym { $$ = $<nsstr>1; }
	| propsyms propsym
	{
		NSString *s = [$<nsstr>1 stringByAppendingFormat:@" %@", $<nsstr>2];
		$$ = s;
	};

propsym:
	LWORD { $$ = $<nsstr>1; }
	| number { $$ = $<nsstr>1; }
	| TO { $$ = @"to"; }
	| ALTNODE { $$ = @"node"; }
	| RECTANGLE { $$ = @"rectangle"; }
	| AT { $$ = @"at"; }
	| FULLSTOP { $$ = @"."; };


nodecmd : NODE { [[TikzGraphAssembler currentAssembler] prepareNode]; };

nodename: LEFTPARENTHESIS nodeid RIGHTPARENTHESIS { $$ = $<nsstr>2; };

node:
	nodecmd optproperties nodename AT coords nodelabel SEMICOLON
	{
		TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
		[[a currentNode] setName:$<nsstr>3];
		[[a currentNode] setPoint:$<pt>5];
		[a finishNode];
	};

nodelabel:
	DELIMITEDSTRING
	{
		Node *n = [[TikzGraphAssembler currentAssembler] currentNode];
		[n setLabel:$<nsstr>1];
	}

anchor: LWORD { $$ = $<nsstr>1; } | NATURALNUMBER { $$ = $<nsstr>1; };

optanchor:  { $$ = @""; } | FULLSTOP anchor { $$ = $<nsstr>2; };

source: LEFTPARENTHESIS nodeid optanchor RIGHTPARENTHESIS
    {
        TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
        [a setEdgeSource:$<nsstr>2
        anchor:$<nsstr>3];
    };

nodeid: LWORD { $$ = $<nsstr>1; } | NATURALNUMBER { $$ = $<nsstr>1; };

coords:
	LEFTPARENTHESIS number COMMA number RIGHTPARENTHESIS
	{
		$$ = NSMakePoint([$<nsstr>2 floatValue], [$<nsstr>4 floatValue]);
	};

edgecmd : DRAW { [[TikzGraphAssembler currentAssembler] prepareEdge]; };
edge:
	edgecmd optproperties source TO optedgenode target SEMICOLON
	{
		TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
		[a finishEdge];
	};
target: LEFTPARENTHESIS nodeid optanchor RIGHTPARENTHESIS
    {
        TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
        [a setEdgeTarget:$<nsstr>2
        anchor:$<nsstr>3];
    }
    | selfloop
    {
        TikzGraphAssembler *a = [TikzGraphAssembler currentAssembler];
        [a setEdgeTarget:@""
        anchor:@""];
    };
selfloop: LEFTPARENTHESIS RIGHTPARENTHESIS;

altnodecmd: ALTNODE { [[TikzGraphAssembler currentAssembler] prepareNode]; };
optedgenode:
	| altnodecmd optproperties nodelabel
	{
		[[TikzGraphAssembler currentAssembler] finishNode];
	}

bbox_ignoreprops:
	| LEFTBRACKET LWORD LWORD LWORD LWORD RIGHTBRACKET;

boundingbox:
	PATH bbox_ignoreprops coords RECTANGLE coords SEMICOLON
	{
		Graph *g = [[TikzGraphAssembler currentAssembler] graph];
		[g setBoundingBox:NSRectAroundPoints($<pt>3, $<pt>5)];
	};

/* vi:ft=yacc:noet:ts=4:sts=4:sw=4
*/