summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/pansendparser.tac
blob: e5f8db67554b1acebb5e9d5284a78f56094078db (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
%{
%}

#include coordsys.tin
#include wcssys.tin
#include skyframe.tin
#include skyformat.tin
#include def.tin

%start pansend

%%

#include coordsys.trl
#include wcssys.trl
#include skyframe.trl
#include skyformat.trl

pansend : {ProcessSendCmdCurrent "get cursor physical fk5 degrees"}
 | coordsys {ProcessSendCmdCurrent "get cursor $1 fk5 degrees"}
 | wcssys {ProcessSendCmdCurrent "get cursor $1 fk5 degrees"}
 | skyframe {ProcessSendCmdCurrent "get cursor wcs $1 degrees"}
 | wcssys skyframe {ProcessSendCmdCurrent "get cursor $1 $2 degrees"}
 | wcssys skyformat {ProcessSendCmdCurrent "get cursor $1 fk5 $2"}
 | skyframe skyformat {ProcessSendCmdCurrent "get cursor wcs $1 $2"}
 | wcssys skyframe skyformat {ProcessSendCmdCurrent "get cursor $1 $2 $3"}
 ;

%%

proc pansend::yyerror {msg} {
     variable yycnt
     variable yy_current_buffer
     variable index_
     
     ParserError $msg $yycnt $yy_current_buffer $index_
}