source: trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc@ 2553

Last change on this file since 2553 was 2517, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 3.8 KB
Line 
1#include "MDriveCom.h"
2
3#include <iostream>
4
5#include "coord.h"
6#include "Slalib.h"
7#include "MCosy.h"
8
9using namespace std;
10
11bool MDriveCom::ReadAngle(TString &str, Double_t &ret)
12{
13 Char_t sgn;
14 Int_t d, len;
15 UInt_t m;
16 Float_t s;
17
18 // Skip whitespaces before %c and after %f
19 int n=sscanf(str.Data(), " %c %d %d %f %n", &sgn, &d, &m, &s, &len);
20
21 if (n!=4 || (sgn!='+' && sgn!='-'))
22 return false;
23
24 str.Remove(0, len);
25
26 ret = Slalib::Dms2Deg(d, m, s, sgn);
27 return true;
28}
29
30bool MDriveCom::ReadPosition(TString &str, Double_t &d1, Double_t &d2)
31{
32 if (!ReadAngle(str, d1))
33 return false;
34
35 if (!ReadAngle(str, d2))
36 return false;
37
38 return true;
39}
40
41bool MDriveCom::CommandRADEC(TString &str)
42{
43 Double_t ra, dec;
44 if (!ReadPosition(str, ra, dec))
45 {
46 cout << "ERROR - Reading position from RADEC" << endl;
47 return false;
48 }
49 if (!str.IsNull())
50 {
51 cout << "ERROR - Too many bytes in command RADEC" << endl;
52 return false;
53 }
54
55 cout << "CC-COMMAND: Track " << ra << "h " << dec << "deg '" << str << "'" << endl;
56
57 ra *= 15; // h -> deg
58
59 RaDec rd[2] = { RaDec(ra, dec), RaDec(ra, dec) };
60
61 cout << "MDriveCom - TRACK... start." << endl;
62 fQueue->PostMsg(WM_TRACK, &rd, sizeof(rd));
63 cout << "MDriveCom - TRACK... done." << endl;
64 return true;
65}
66
67bool MDriveCom::CommandZDAZ(TString &str)
68{
69 Double_t zd, az;
70 if (!ReadPosition(str, zd, az))
71 {
72 cout << "ERROR - Reading position from ZDAZ" << endl;
73 return false;
74 }
75
76 if (!str.IsNull())
77 {
78 cout << "ERROR - Too many bytes in command ZDAZ" << endl;
79 return false;
80 }
81
82 cout << "CC-COMMAND: Move " << zd << "deg " << az << "deg" << endl;
83
84 ZdAz za(zd, az);
85
86 cout << "MDriveCom - POSITION... start." << endl;
87 fQueue->PostMsg(WM_POSITION, &za, sizeof(za));
88 cout << "MDriveCom - POSITION... done." << endl;
89 return true;
90}
91
92bool MDriveCom::InterpreteCmd(TString cmd, TString str)
93{
94 if (cmd==(TString)"WAIT" && str.IsNull())
95 {
96 cout << "MDriveCom - WAIT... start." << endl;
97 fQueue->PostMsg(WM_WAIT);
98 cout << "MDriveCom - WAIT... done." << endl;
99 return true;
100 }
101
102 if (cmd==(TString)"STOP!" && str.IsNull())
103 {
104 cout << "MDriveCom - STOP!... start." << endl;
105 fQueue->PostMsg(WM_STOP);
106 cout << "MDriveCom - STOP!... done." << endl;
107 return true;
108 }
109
110 if (cmd==(TString)"RADEC")
111 return CommandRADEC(str);
112
113 if (cmd==(TString)"ZDAZ")
114 return CommandZDAZ(str);
115
116 if (cmd==(TString)"PREPS")
117 {
118 cout << "Prepos: " << str << endl;
119 return true;
120 }
121
122 if (cmd.IsNull() && str.IsNull())
123 {
124 cout << "Empty command (single '\\n') received." << endl;
125 return false;
126 }
127
128 cout << "Unknown Command: '" << cmd << "':'" << str << "'" << endl;
129 return false;
130}
131
132void MDriveCom::Print(TString &str, Double_t deg) const
133{
134 Char_t sgn;
135 UShort_t d, m, s;
136
137 Slalib::Deg2Dms(deg, sgn, d, m, s);
138
139 str += Form("%c %03d %02d %03d ", sgn, d, m, s);
140}
141
142bool MDriveCom::SendReport(UInt_t stat, RaDec rd, ZdAz so, ZdAz is, ZdAz er)
143{
144 // so [rad]
145 // is [deg]
146 // er [rad]
147
148 so *= kRad2Deg;
149 er *= kRad2Deg;
150
151 // Set status flag
152 if (stat&kError)
153 SetStatus(0);
154 if (stat&kStopped)
155 SetStatus(1);
156 if (stat&kStopping || stat&kMoving)
157 SetStatus(3);
158 if (stat&kTracking)
159 SetStatus(4);
160
161 Timer t;
162 t.Now();
163
164 TString str;
165 Print(str, rd.Ra()); // Ra
166 Print(str, rd.Dec()); // Dec
167 Print(str, 0); // HA
168 str += Form("%12.6f ", t.GetMjd()); // mjd
169 Print(str, so.Zd());
170 Print(str, so.Az());
171 Print(str, is.Zd());
172 Print(str, is.Az());
173 str += Form("%08.3f ", er.Zd());
174 str += Form("%08.3f", er.Az());
175
176 return Send(str);
177}
Note: See TracBrowser for help on using the repository browser.