summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/plotsendparser.tac
blob: 5bb9769be2b73cc100dd59f0ac2d7d2be50e0963 (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
%{
%}
#include def.tin

#include font.tin
#include string.tin

%start plotsend

%token AUTO_
%token AXIS_
%token AXESNUMBERS_
%token AXESTITLE_
%token BACKGROUND_
%token BARMODE_
%token CAP_
%token COLOR_
%token DASH_
%token DATASET_
%token ERROR_
%token ERRORBAR_
%token FAMILY_
%token FILL_
%token FILLCOLOR_
%token FLIP_
%token FORMAT_
%token GRID_
%token LABELS_
%token LEGEND_
%token LEGENDTITLE_
%token LIST_
%token LOG_
%token MAX_
%token MIN_
%token MODE_
%token NUMBERS_
%token NAME_
%token POSITION_
%token RELIEF_
%token SELECT_
%token SHAPE_
%token SHOW_
%token SIZE_
%token SLANT_
%token SMOOTH_
%token STATS_
%token STATISTICS_
%token STYLE_
%token TITLE_
%token WEIGHT_
%token WIDTH_
%token XAXIS_
%token YAXIS_

%%

plotsend : {ProcessSendCmdGet iap windows}
 | {if {![PlotCmdCheck]} {plot::YYABORT}} plotCmd
 | STRING_ {if {![PlotCmdRef $1]} {plot::YYABORT}} plotCmd
 ;

xy : 'x' {set _ x}
 | 'X' {set _ x}
 | 'y' {set _ y}
 | 'Y' {set _ y}
 ;

# backward compatibility
xyaxis : XAXIS_ {set _ x}
 | YAXIS_ {set _ y}
 ;

plotCmd : STATS_ {ProcessSendCmdCVAR PlotStatsGenerate}
 # backward compatibility
 | STATISTICS_ {ProcessSendCmdCVAR PlotStatsGenerate}
 | LIST_ {ProcessSendCmdCVAR PlotListGenerate}
 | MODE_ {ProcessSendCmdCVARGet mode}
 | AXIS_ axis
 | BACKGROUND_ {ProcessSendCmdCVARGet graph,bg}
 | LEGEND_ legend
 | FONT_ fontt
 | TITLE_ title
 | BARMODE_ {ProcessSendCmdCVARGet bar,mode}
 | SHOW_ {PlotSendCmdCVARYesNo show}
 | COLOR_ {ProcessSendCmdCVARGet color}
 | FILL_ {ProcessSendCmdCVARGet fill}
 | FILLCOLOR_ {ProcessSendCmdCVARGet fill,color}
 | ERROR_ errorr
 # backward compatibility
 | ERRORBAR_ errorr
 | NAME_ {PlotSendCmdCVARGet name}
 | SHAPE_ shape
 | RELIEF_ {ProcessSendCmdCVARGet bar,relief}
 | SMOOTH_ {ProcessSendCmdCVARGet smooth}
 | WIDTH_ {ProcessSendCmdCVARGet width}
 | DASH_ {ProcessSendCmdCVARYesNo dash}
 | SELECT_ {PlotSendCmdCVARGet data,current}
 # backward compatibility
 | DATASET_ {PlotSendCmdCVARGet data,current}
 ;
 
axis : xy GRID_ {ProcessSendCmdCVARYesNo "axis,$1,grid"}
 | xy LOG_ {ProcessSendCmdCVARYesNo "axis,$1,log"}
 | xy FLIP_ {ProcessSendCmdCVARYesNo "axis,$1,flip"}
 | xy AUTO_ {ProcessSendCmdCVARYesNo "axis,$1,auto"}
 | xy MIN_ {ProcessSendCmdCVARGet "axis,$1,min"}
 | xy MAX_ {ProcessSendCmdCVARGet "axis,$1,max"}
 | xy FORMAT_ {ProcessSendCmdCVARGet "axis,$1,format"}
 ;

legend : {ProcessSendCmdCVARYesNo legend}
 | POSITION_ {ProcessSendCmdCVARGet legend,position}
 ;
 
fontt : fontType FONT_ {ProcessSendCmdCVARGet "$1,family"}
# backward compatibility
 | fontType FAMILY_ {ProcessSendCmdCVARGet "$1,family"}
 | fontType FONTSIZE_ {ProcessSendCmdCVARGet "$1,size"}
 | fontType FONTWEIGHT_ {ProcessSendCmdCVARGet "$1,weight"}
 | fontType FONTSLANT_ {ProcessSendCmdCVARGet "$1,slant"}
# backward compatibility
 | fontType FONTSTYLE_ {ProcessSendCmdCVARGet "$1,weight"}
 | fontType SIZE_ {ProcessSendCmdCVARGet "$1,size"}
 | fontType WEIGHT_ {ProcessSendCmdCVARGet "$1,weight"}
 | fontType SLANT_ {ProcessSendCmdCVARGet "$1,slant"}
 | fontType STYLE_ {ProcessSendCmdCVARGet "$1,weight"}
 ;

fontType : TITLE_ {set _ graph,title}
 | LABELS_ {set _ axis,title}
 # backward compatibility
 | AXESTITLE_ {set _ axis,title}
 | NUMBERS_ {set _ axis,font}
 # backward compatibility
 | AXESNUMBERS_ {set _ axis,font}
 | LEGEND_ {set _ legend,font}
 | LEGENDTITLE_ {set _ legend,title}
 ;

title : {ProcessSendCmdCVARGet graph,title}
 | xy {ProcessSendCmdCVARGet "axis,$1,title"}
 | xyaxis {ProcessSendCmdCVARGet "axis,$1,title"}
 | LEGEND_ {ProcessSendCmdCVARGet legend,title}
 ;

errorr : {ProcessSendCmdCVARYesNo error}
 | CAP_ {ProcessSendCmdCVARYesNo error,cap}
 | COLOR_ {ProcessSendCmdCVARGet error,color}
 | WIDTH_ {ProcessSendCmdCVARGet error,width}
 ;

shape : {ProcessSendCmdCVARGet shape,symbol}
 | FILL_ {ProcessSendCmdCVARYesNo shape,fill}
 | COLOR_ {ProcessSendCmdCVARGet shape,color}
 ;

%%

proc plotsend::yyerror {msg} {
     variable yycnt
     variable yy_current_buffer
     variable index_

     ParserError $msg $yycnt $yy_current_buffer $index_
}