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

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

%start pansend

%%

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

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