summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/pansendparser.tac
blob: 806104d3fbec24e7a8a334164c102f98f14ab629 (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 frame "get cursor image fk5 degrees"}
 | coordsys {ProcessSendCmdCurrent frame "get cursor $1 fk5 degrees"}
 | wcssys {ProcessSendCmdCurrent frame "get cursor $1 fk5 degrees"}
 | skyframe {ProcessSendCmdCurrent frame "get cursor wcs $1 degrees"}
 | wcssys skyframe {ProcessSendCmdCurrent frame "get cursor $1 $2 degrees"}
 | wcssys skyformat {ProcessSendCmdCurrent frame "get cursor $1 fk5 $2"}
 | skyframe skyformat {ProcessSendCmdCurrent frame "get cursor wcs $1 $2"}
 | wcssys skyframe skyformat {ProcessSendCmdCurrent frame "get cursor $1 $2 $3"}
 ;

%%

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