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

#include coords.tin
#include string.tin

%start pansend

%%

#include coords.trl

pansend : {ProcessSendCmdCurrent "get cursor image 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_
}