blob: bcd0f661bea3269ab964bb2514be1782eadf1d7c (
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
|
%{
%}
#include yesno.tin
#include numeric.tin
#include string.tin
%start command
%token ABOUT_
%token AVERAGE_
%token BUFFERSIZE_
%token CENTER_
%token CLEAR_
%token CLOSE_
%token COLS_
%token COLSZ_
%token DEPTH_
%token FACTOR_
%token FILTER_
%token FIT_
%token FUNCTION_
%token IN_
%token LOCK_
%token MATCH_
%token OPEN_
%token OUT_
%token SUM_
%token TO_
%%
#include yesno.trl
#include numeric.trl
command : bin
| bin {yyclearin; YYACCEPT} STRING_
;
bin : OPEN_ {BinDialog}
| CLOSE_ {BinDestroyDialog}
| MATCH_ {MatchBinCurrent}
| LOCK_ yesno {ProcessCmdSet bin lock $2 LockBinCurrent}
| ABOUT_ about
| BUFFERSIZE_ INT_ {ProcessCmdSet bin buffersize $2 ChangeBinBufferSize}
| COLS_ cols cols {BinCols \"$2\" \"$3\" \"\"}
| COLSZ_ cols cols cols {BinCols \"$2\" \"$3\" \"$4\"}
| FACTOR_ factor
| DEPTH_ INT_ {ProcessCmdSet bin depth $2 ChangeBinDepth}
| FILTER_ filter {BinFilter $2}
| FUNCTION_ function {ProcessCmdSet bin function $2 ChangeBinFunction}
| IN_ {Bin .5 .5}
| OUT_ {Bin 2 2}
| TO_ to
;
cols : STRING_ {set _ $1}
| colsxyz {set _ $1}
;
colsxyz : 'x' {set _ $1}
| 'X' {set _ $1}
| 'y' {set _ $1}
| 'Y' {set _ $1}
| 'z' {set _ $1}
| 'Z' {set _ $1}
;
about : numeric numeric {BinAbout $1 $2}
| CENTER_ {BinAboutCenter}
;
factor : numeric {ProcessCmdSet bin factor "$1 $1" ChangeBinFactor}
| numeric numeric {ProcessCmdSet bin factor "$1 $2" ChangeBinFactor}
;
filter : CLEAR_ {set _ {}}
| STRING_ {set _ $1}
;
function: AVERAGE_ {set _ average}
| SUM_ {set _ sum}
;
to: factor
| FIT_ {BinToFit}
;
%%
proc bin::yyerror {msg} {
variable yycnt
variable yy_current_buffer
variable index_
ParserError $msg $yycnt $yy_current_buffer $index_
}
|