]> git.mxchange.org Git - flightgear.git/blob - src/ATC/tower.cxx
Fix a possible crash
[flightgear.git] / src / ATC / tower.cxx
1 // FGTower - a class to provide tower control at towered airports.
2 //
3 // Written by David Luff, started March 2002.
4 //
5 // Copyright (C) 2002  David C. Luff - david.luff@nottingham.ac.uk
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #ifdef HAVE_STRINGS_H
26 #  include <strings.h>   // bcopy()
27 #else
28 #  include <string.h>    // MSVC doesn't have strings.h
29 #endif
30
31 #include <Main/globals.hxx>
32 #include <Airports/runways.hxx>
33 #include <simgear/math/sg_geodesy.hxx>
34 #include <simgear/debug/logstream.hxx>
35
36 #include "tower.hxx"
37 #include "ATCdisplay.hxx"
38 #include "ATCmgr.hxx"
39 #include "ATCutils.hxx"
40 #include "ATCDialog.hxx"
41 #include "commlist.hxx"
42 #include "AILocalTraffic.hxx"
43
44 SG_USING_STD(cout);
45
46 // TowerPlaneRec
47
48 TowerPlaneRec::TowerPlaneRec() :
49         planePtr(NULL),
50         clearedToLand(false),
51         clearedToLineUp(false),
52         clearedToTakeOff(false),
53         holdShortReported(false),
54         downwindReported(false),
55         longFinalReported(false),
56         longFinalAcknowledged(false),
57         finalReported(false),
58         finalAcknowledged(false),
59         rwyVacatedReported(false),
60         rwyVacatedAcknowledged(false),
61         goAroundReported(false),
62         instructedToGoAround(false),
63         onRwy(false),
64         nextOnRwy(false),
65         vfrArrivalReported(false),
66         vfrArrivalAcknowledged(false),
67         opType(TTT_UNKNOWN),
68         leg(LEG_UNKNOWN),
69         landingType(AIP_LT_UNKNOWN),
70         isUser(false)
71 {
72         plane.callsign = "UNKNOWN";
73 }
74
75 TowerPlaneRec::TowerPlaneRec(PlaneRec p) :
76         planePtr(NULL),
77         clearedToLand(false),
78         clearedToLineUp(false),
79         clearedToTakeOff(false),
80         holdShortReported(false),
81         downwindReported(false),
82         longFinalReported(false),
83         longFinalAcknowledged(false),
84         finalReported(false),
85         finalAcknowledged(false),
86         rwyVacatedReported(false),
87         rwyVacatedAcknowledged(false),
88         goAroundReported(false),
89         instructedToGoAround(false),
90         onRwy(false),
91         nextOnRwy(false),
92         vfrArrivalReported(false),
93         vfrArrivalAcknowledged(false),
94         opType(TTT_UNKNOWN),
95         leg(LEG_UNKNOWN),
96         landingType(AIP_LT_UNKNOWN),
97         isUser(false)
98 {
99         plane = p;
100 }
101
102 TowerPlaneRec::TowerPlaneRec(Point3D pt) :
103         planePtr(NULL),
104         clearedToLand(false),
105         clearedToLineUp(false),
106         clearedToTakeOff(false),
107         holdShortReported(false),
108         downwindReported(false),
109         longFinalReported(false),
110         longFinalAcknowledged(false),
111         finalReported(false),
112         finalAcknowledged(false),
113         rwyVacatedReported(false),
114         rwyVacatedAcknowledged(false),
115         goAroundReported(false),
116         instructedToGoAround(false),
117         onRwy(false),
118         nextOnRwy(false),
119         vfrArrivalReported(false),
120         vfrArrivalAcknowledged(false),
121         opType(TTT_UNKNOWN),
122         leg(LEG_UNKNOWN),
123         landingType(AIP_LT_UNKNOWN),
124         isUser(false)
125 {
126         plane.callsign = "UNKNOWN";
127         pos = pt;
128 }
129
130 TowerPlaneRec::TowerPlaneRec(PlaneRec p, Point3D pt) :
131         planePtr(NULL),
132         clearedToLand(false),
133         clearedToLineUp(false),
134         clearedToTakeOff(false),
135         holdShortReported(false),
136         downwindReported(false),
137         longFinalReported(false),
138         longFinalAcknowledged(false),
139         finalReported(false),
140         finalAcknowledged(false),
141         rwyVacatedReported(false),
142         rwyVacatedAcknowledged(false),
143         goAroundReported(false),
144         instructedToGoAround(false),
145         onRwy(false),
146         nextOnRwy(false),
147         vfrArrivalReported(false),
148         vfrArrivalAcknowledged(false),
149         opType(TTT_UNKNOWN),
150         leg(LEG_UNKNOWN),
151         landingType(AIP_LT_UNKNOWN),
152         isUser(false)
153 {
154         plane = p;
155         pos = pt;
156 }
157
158
159 // FGTower
160
161 /*******************************************
162                TODO List
163                            
164 Currently user is assumed to have taken off again when leaving the runway - check speed/elev for taxiing-in. (MAJOR)
165
166 Use track instead of heading to determine what leg of the circuit the user is flying. (MINOR)
167
168 Use altitude as well as position to try to determine if the user has left the circuit. (MEDIUM - other issues as well).
169
170 Currently HoldShortReported code assumes there will be only one plane holding for the runway at once and 
171 will break when planes start queueing. (CRITICAL)
172
173 Report-Runway-Vacated is left as only user ATC option following a go-around. (MAJOR)
174
175 Report-Downwind is not added as ATC option when user takes off to fly a circuit. (MAJOR)
176
177 eta of USER can be calculated very wrongly in circuit if flying straight out and turn4 etc are with +ve ortho y. 
178 This can then screw up circuit ordering for other planes (MEDIUM)
179
180 USER leaving circuit needs to be more robustly considered when intentions unknown
181 Currently only considered during climbout and breaks when user turns (MEDIUM).
182
183 GetPos() of the AI planes is called erratically - either too much or not enough. (MINOR)
184
185 GO-AROUND is instructed very late at < 12s to landing - possibly make more dependent on chance of rwy clearing before landing (FEATURE)
186
187 Need to make clear when TowerPlaneRecs do or don't get deleted in RemoveFromCircuitList etc. (MINOR until I misuse it - then CRITICAL!)
188
189 FGTower::RemoveAllUserDialogOptions() really ought to be replaced by an ATCDialog::clear_entries() function. (MINOR - efficiency).
190 *******************************************/
191
192 FGTower::FGTower() {
193         ATCmgr = globals->get_ATC_mgr();
194         
195         _type = TOWER;
196         
197         // Init the property nodes - TODO - need to make sure we're getting surface winds.
198         wind_from_hdg = fgGetNode("/environment/wind-from-heading-deg", true);
199         wind_speed_knots = fgGetNode("/environment/wind-speed-kt", true);
200         
201         update_count = 0;
202         update_count_max = 15;
203         
204         holdListItr = holdList.begin();
205         appList.clear();
206         appListItr = appList.begin();
207         depListItr = depList.begin();
208         rwyListItr = rwyList.begin();
209         circuitListItr = circuitList.begin();
210         trafficListItr = trafficList.begin();
211         vacatedList.clear();
212         vacatedListItr = vacatedList.begin();
213         
214         freqClear = true;
215         
216         timeSinceLastDeparture = 9999;
217         departed = false;
218         
219         nominal_downwind_leg_pos = 1000.0;
220         nominal_base_leg_pos = -1000.0;
221         // TODO - set nominal crosswind leg pos based on minimum distance from takeoff end of rwy.
222         
223         _departureControlled = false;
224 }
225
226 FGTower::~FGTower() {
227         if(!separateGround) {
228                 delete ground;
229         }
230 }
231
232 void FGTower::Init() {
233         //cout << "Initialising tower " << ident << '\n';
234         
235         // Pointers to user's position
236         user_lon_node = fgGetNode("/position/longitude-deg", true);
237         user_lat_node = fgGetNode("/position/latitude-deg", true);
238         user_elev_node = fgGetNode("/position/altitude-ft", true);
239         user_hdg_node = fgGetNode("/orientation/heading-deg", true);
240         
241         // Need some way to initialise rwyOccupied flag correctly if the user is on the runway and to know its the user.
242         // I'll punt the startup issue for now though!!!
243         rwyOccupied = false;
244         
245         // Setup the ground control at this airport
246         AirportATC a;
247         //cout << "Tower ident = " << ident << '\n';
248         if(ATCmgr->GetAirportATCDetails(ident, &a)) {
249                 if(a.ground_freq) {             // Ground control
250                         ground = (FGGround*)ATCmgr->GetATCPointer(ident, GROUND);
251                         separateGround = true;
252                         if(ground == NULL) {
253                                 // Something has gone wrong :-(
254                                 SG_LOG(SG_ATC, SG_WARN, "ERROR - ground has frequency but can't get ground pointer :-(");
255                                 ground = new FGGround(ident);
256                                 separateGround = false;
257                                 ground->Init();
258                                 if(_display) {
259                                         ground->SetDisplay();
260                                 } else {
261                                         ground->SetNoDisplay();
262                                 }
263                         }
264                 } else {
265                         // Initialise ground anyway to do the shortest path stuff!
266                         // Note that we're now responsible for updating and deleting this - NOT the ATCMgr.
267                         ground = new FGGround(ident);
268                         separateGround = false;
269                         ground->Init();
270                         if(_display) {
271                                 ground->SetDisplay();
272                         } else {
273                                 ground->SetNoDisplay();
274                         }
275                 }
276         } else {
277                 SG_LOG(SG_ATC, SG_ALERT, "Unable to find airport details for " << ident << " in FGTower::Init()");
278                 // Initialise ground anyway to avoid segfault later
279                 ground = new FGGround(ident);
280                 separateGround = false;
281                 ground->Init();
282                 if(_display) {
283                         ground->SetDisplay();
284                 } else {
285                         ground->SetNoDisplay();
286                 }
287         }
288         
289         // TODO - attempt to get a departure control pointer to see if we need to hand off departing traffic to departure.
290         
291         // Get the airport elevation
292         aptElev = dclGetAirportElev(ident.c_str());
293         
294         // TODO - this function only assumes one active rwy.
295         DoRwyDetails();
296         
297         // TODO - this currently assumes only one active runway.
298         rwyOccupied = OnActiveRunway(Point3D(user_lon_node->getDoubleValue(), user_lat_node->getDoubleValue(), 0.0));
299         if(rwyOccupied) {
300                 //cout << "User found on active runway\n";
301                 // Assume the user is started at the threshold ready to take-off
302                 TowerPlaneRec* t = new TowerPlaneRec;
303                 t->plane.callsign = fgGetString("/sim/user/callsign");
304                 t->plane.type = GA_SINGLE;      // FIXME - hardwired!!
305                 t->opType = TTT_UNKNOWN;        // We don't know if the user wants to do circuits or a departure...
306                 t->landingType = AIP_LT_UNKNOWN;
307                 t->leg = TAKEOFF_ROLL;
308                 t->isUser = true;
309                 t->planePtr = NULL;
310                 t->clearedToTakeOff = true;
311                 rwyList.push_back(t);
312                 departed = false;
313         } else {
314                 //cout << "User not on active runway\n";
315                 // For now assume that this means the user is not at the airport and is in the air.
316                 // TODO FIXME - this will break when user starts on apron, at hold short, etc.
317                 if(!OnAnyRunway(Point3D(user_lon_node->getDoubleValue(), user_lat_node->getDoubleValue(), 0.0))) {
318                         //cout << ident << "  ADD 0\n";
319                         current_atcdialog->add_entry(ident, "@AP Tower @CS @MI miles @CD of the airport for full stop with the ATIS", "Contact tower for VFR arrival (full stop)", TOWER, (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP);
320                 }
321         }
322 }
323
324 void FGTower::Update(double dt) {
325         //cout << "T" << endl;
326         // Each time step, what do we need to do?
327         // We need to go through the list of outstanding requests and acknowedgements
328         // and process at least one of them.
329         // We need to go through the list of planes under our control and check if
330         // any need to be addressed.
331         // We need to check for planes not under our control coming within our 
332         // control area and address if necessary.
333         
334         // TODO - a lot of the below probably doesn't need to be called every frame and should be staggered.
335         
336         // Sort the arriving planes
337         
338         /*
339         if(ident == "KEMT") {
340                 cout << update_count << "\ttL: " << trafficList.size() << "  cL: " << circuitList.size() << "  hL: " << holdList.size() << "  aL: " << appList.size() << '\n';
341         }
342         */
343         //if(ident == "EGNX") cout << display << '\n';
344         
345         if(departed != false) {
346                 timeSinceLastDeparture += dt;
347                 //if(ident == "KEMT") 
348                 //      cout << "  dt = " << dt << "  timeSinceLastDeparture = " << timeSinceLastDeparture << '\n';
349         }
350         
351         //cout << ident << " respond = " << respond << " responseReqd = " << responseReqd << '\n'; 
352         if(respond) {
353                 if(!responseReqd) SG_LOG(SG_ATC, SG_ALERT, "ERROR - respond is true and responseReqd is false in FGTower::Update(...)");
354                 Respond();
355                 respond = false;
356                 responseReqd = false;
357         }
358         
359         // Calculate the eta of each plane to the threshold.
360         // For ground traffic this is the fastest they can get there.
361         // For air traffic this is the middle approximation.
362         if(update_count == 1) {
363                 doThresholdETACalc();
364         }
365         
366         // Order the list of traffic as per expected threshold use and flag any conflicts
367         if(update_count == 2) {
368                 //bool conflicts = doThresholdUseOrder();
369                 doThresholdUseOrder();
370         }
371         
372         // sortConficts() !!!
373         
374         if(update_count == 4) {
375                 CheckHoldList(dt);
376         }
377         
378         // Uggh - HACK - why have we got rwyOccupied - wouldn't simply testing rwyList.size() do?
379         if(rwyList.size()) {
380                 rwyOccupied = true;
381         } else {
382                 rwyOccupied = false;
383         }
384         
385         if(update_count == 5 && rwyOccupied) {
386                 CheckRunwayList(dt);
387         }
388                 
389         if(update_count == 6) {
390                 CheckCircuitList(dt);
391         }
392         
393         if(update_count == 7) {
394                 CheckApproachList(dt);
395         }
396         
397         if(update_count == 8) {
398                 CheckDepartureList(dt);
399         }
400         
401         // TODO - do one plane from the departure list and set departed = false when out of consideration
402         
403         //doCommunication();
404         
405         if(!separateGround) {
406                 // The display stuff might have to get more clever than this when not separate 
407                 // since the tower and ground might try communicating simultaneously even though
408                 // they're mean't to be the same contoller/frequency!!
409                 // We could also get rid of this by overloading FGATC's Set(No)Display() functions.
410                 if(_display) {
411                         ground->SetDisplay();
412                 } else {
413                         ground->SetNoDisplay();
414                 }
415                 ground->Update(dt);
416         }
417         
418         ++update_count;
419         // How big should ii get - ie how long should the update cycle interval stretch?
420         if(update_count >= update_count_max) {
421                 update_count = 0;
422         }
423         
424         // Call the base class update for the response time handling.
425         FGATC::Update(dt);
426
427         /*
428         if(ident == "KEMT") {   
429                 // For AI debugging convienience - may be removed
430                 Point3D user_pos;
431                 user_pos.setlon(user_lon_node->getDoubleValue());
432                 user_pos.setlat(user_lat_node->getDoubleValue());
433                 user_pos.setelev(user_elev_node->getDoubleValue());
434                 Point3D user_ortho_pos = ortho.ConvertToLocal(user_pos);
435                 fgSetDouble("/AI/user/ortho-x", user_ortho_pos.x());
436                 fgSetDouble("/AI/user/ortho-y", user_ortho_pos.y());
437                 fgSetDouble("/AI/user/elev", user_elev_node->getDoubleValue());
438         }
439         */
440         
441         //cout << "Done T" << endl;
442 }
443
444 void FGTower::ReceiveUserCallback(int code) {
445         if(code == (int)USER_REQUEST_VFR_DEPARTURE) {
446                 //cout << "User requested departure\n";
447         } else if(code == (int)USER_REQUEST_VFR_ARRIVAL) {
448                 VFRArrivalContact("USER");
449         } else if(code == (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP) {
450                 VFRArrivalContact("USER", FULL_STOP);
451         } else if(code == (int)USER_REQUEST_VFR_ARRIVAL_TOUCH_AND_GO) {
452                 VFRArrivalContact("USER", TOUCH_AND_GO);
453         } else if(code == (int)USER_REPORT_DOWNWIND) {
454                 ReportDownwind("USER");
455         } else if(code == (int)USER_REPORT_3_MILE_FINAL) {
456                 // For now we'll just call report final instead of report long final to avoid having to alter the response code
457                 ReportFinal("USER");
458         } else if(code == (int)USER_REPORT_RWY_VACATED) {
459                 ReportRunwayVacated("USER");
460         } else if(code == (int)USER_REPORT_GOING_AROUND) {
461                 ReportGoingAround("USER");
462         }
463 }
464
465 // **************** RESPONSE FUNCTIONS ****************
466
467 void FGTower::Respond() {
468         //cout << "\nEntering Respond, responseID = " << responseID << endl;
469         TowerPlaneRec* t = FindPlane(responseID);
470         if(t) {
471                 // This will grow!!!
472                 if(t->vfrArrivalReported && !t->vfrArrivalAcknowledged) {
473                         //cout << "Tower " << ident << " is responding to VFR arrival reported...\n";
474                         // Testing - hardwire straight in for now
475                         string trns = t->plane.callsign;
476                         trns += " ";
477                         trns += name;
478                         trns += " Tower";
479                         // Should we clear staight in or for downwind entry?
480                         // For now we'll clear straight in if greater than 1km from a line drawn through the threshold perpendicular to the rwy.
481                         // Later on we might check the actual heading and direct some of those to enter on downwind or base.
482                         Point3D op = ortho.ConvertToLocal(t->pos);
483                         if(op.y() < -1000) {
484                                 trns += " Report three mile straight-in runway ";
485                                 t->opType = STRAIGHT_IN;
486                                 if(t->isUser) {
487                                         current_atcdialog->add_entry(ident, "@AP Tower @CS @MI mile final Runway @RW", "Report Final", TOWER, (int)USER_REPORT_3_MILE_FINAL);
488                                 } else {
489                                         t->planePtr->RegisterTransmission(14);
490                                 }
491                         } else {
492                                 // For now we'll just request reporting downwind.
493                                 // TODO - In real life something like 'report 2 miles southwest right downwind rwy 19R' might be used
494                                 // but I'm not sure how to handle all permutations of which direction to tell to report from yet.
495                                 trns += " Report ";
496                                 //cout << "Responding, rwy.patterDirection is " << rwy.patternDirection << '\n';
497                                 trns += ((rwy.patternDirection == 1) ? "right " : "left ");
498                                 trns += "downwind runway ";
499                                 t->opType = CIRCUIT;
500                                 // leave it in the app list until it gets into pattern though.
501                                 if(t->isUser) {
502                                         current_atcdialog->add_entry(ident, "@AP Tower @CS Downwind @RW", "Report Downwind", TOWER, (int)USER_REPORT_DOWNWIND);
503                                 } else {
504                                         t->planePtr->RegisterTransmission(15);
505                                 }
506                         }
507                         trns += ConvertRwyNumToSpokenString(activeRwy);
508                         if(_display) {
509                                 globals->get_ATC_display()->RegisterSingleMessage(trns, 0);
510                         } else {
511                                 //cout << "Not displaying, trns was " << trns << '\n';
512                         }
513                         t->vfrArrivalAcknowledged = true;
514                 } else if(t->downwindReported) {
515                         //cout << "Tower " << ident << " is responding to downwind reported...\n";
516                         ProcessDownwindReport(t);
517                         t->downwindReported = false;
518                 } else if(t->holdShortReported) {
519                         //cout << "Tower " << ident << " is reponding to holdShortReported...\n";
520                         if(t->nextOnRwy) {
521                                 if(rwyOccupied) {       // TODO - ought to add a sanity check that it isn't this plane only on the runway (even though it shouldn't be!!)
522                                         // Do nothing for now - consider acknowloging hold short eventually
523                                 } else {
524                                         ClearHoldingPlane(t);
525                                         t->leg = TAKEOFF_ROLL;
526                                         rwyList.push_back(t);
527                                         rwyOccupied = true;
528                                         // WARNING - WE ARE ASSUMING ONLY ONE PLANE REPORTING HOLD AT A TIME BELOW
529                                         // FIXME TODO - FIX THIS!!!
530                                         if(holdList.size()) {
531                                                 if(holdListItr == holdList.end()) {
532                                                         holdListItr = holdList.begin();
533                                                 }
534                                                 holdList.erase(holdListItr);
535                                                 holdListItr = holdList.begin();
536                                         }
537                                 }
538                         } else {
539                                 // Tell him to hold and what position he is.
540                                 // Not currently sure under which circumstances we do or don't bother transmitting this.
541                                 string trns = t->plane.callsign;
542                                 trns += " hold position";
543                                 if(_display) {
544                                         globals->get_ATC_display()->RegisterSingleMessage(trns, 0);
545                                 }
546                                 // TODO - add some idea of what traffic is blocking him.
547                         }
548                         t->holdShortReported = false;
549                 } else if(t->finalReported && !(t->finalAcknowledged)) {
550                         //cout << "Tower " << ident << " is responding to finalReported...\n";
551                         bool disp = true;
552                         string trns = t->plane.callsign;
553                         //cout << (t->nextOnRwy ? "Next on rwy " : "Not next!! ");
554                         //cout << (rwyOccupied ? "RWY OCCUPIED!!\n" : "Rwy not occupied\n");
555                         if(t->nextOnRwy && !rwyOccupied && !(t->instructedToGoAround)) {
556                                 if(t->landingType == FULL_STOP) {
557                                         trns += " cleared to land ";
558                                 } else {
559                                         trns += " cleared for the option ";
560                                 }
561                                 // TODO - add winds
562                                 t->clearedToLand = true;
563                                 // Maybe remove report downwind from menu here as well incase user didn't bother to?
564                                 if(t->isUser) {
565                                         //cout << "ADD VACATED B\n";
566                                         // Put going around at the top (and hence default) since that'll be more desperate,
567                                         // or put rwy vacated at the top since that'll be more common?
568                                         current_atcdialog->add_entry(ident, "@CS Going Around", "Report going around", TOWER, USER_REPORT_GOING_AROUND);
569                                         current_atcdialog->add_entry(ident, "@CS Clear of the runway", "Report runway vacated", TOWER, USER_REPORT_RWY_VACATED);
570                                 } else {
571                                         t->planePtr->RegisterTransmission(7);
572                                 }
573                         } else if(t->eta < 20) {
574                                 // Do nothing - we'll be telling it to go around in less than 10 seconds if the
575                                 // runway doesn't clear so no point in calling "continue approach".
576                                 disp = false;
577                         } else {
578                                 trns += " continue approach";
579                                 t->clearedToLand = false;
580                         }
581                         if(_display && disp) {
582                                 globals->get_ATC_display()->RegisterSingleMessage(trns);
583                         }
584                         t->finalAcknowledged = true;
585                 } else if(t->rwyVacatedReported && !(t->rwyVacatedAcknowledged)) {
586                         ProcessRunwayVacatedReport(t);
587                         t->rwyVacatedAcknowledged = true;
588                 }
589         }
590         //freqClear = true;     // FIXME - set this to come true after enough time to render the message
591         _releaseCounter = 0.0;
592         _releaseTime = 5.5;
593         _runReleaseCounter = true;
594         //cout << "Done Respond\n" << endl;
595 }
596
597 void FGTower::ProcessDownwindReport(TowerPlaneRec* t) {
598         int i = 1;
599         int a = 0;      // Count of preceding planes on approach
600         bool cf = false;        // conflicting traffic on final
601         bool cc = false;        // preceding traffic in circuit
602         TowerPlaneRec* tc;
603         for(tower_plane_rec_list_iterator twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
604                 if((*twrItr)->plane.callsign == responseID) break;
605                 tc = *twrItr;
606                 ++i;
607         }
608         if(i > 1) { cc = true; }
609         doThresholdETACalc();
610         TowerPlaneRec* tf;
611         for(tower_plane_rec_list_iterator twrItr = appList.begin(); twrItr != appList.end(); twrItr++) {
612                 if((*twrItr)->eta < (t->eta + 45)) {
613                         a++;
614                         tf = *twrItr;
615                         cf = true;
616                         // This should set the flagged plane to be the last conflicting one, and hence the one to follow.
617                         // It ignores the fact that we might have problems slotting into the approach traffic behind it - 
618                         // eventually we'll need some fancy algorithms for that!
619                 }
620         }
621         string trns = t->plane.callsign;
622         trns += " Number ";
623         trns += ConvertNumToSpokenDigits(i + a);
624         // This assumes that the number spoken is landing position, not circuit position, since some of the traffic might be on straight-in final.
625         trns += " ";
626         TowerPlaneRec* tt;
627         if((i == 1) && (!rwyList.size()) && (t->nextOnRwy) && (!cf)) {  // Unfortunately nextOnRwy currently doesn't handle circuit/straight-in ordering properly at present, hence the cf check below.
628                 trns += "Cleared to land";      // TODO - clear for the option if appropriate
629                 t->clearedToLand = true;
630                 if(!t->isUser) t->planePtr->RegisterTransmission(7);
631         } else if((i+a) > 1) {
632                 //First set tt to point to the correct preceding plane - final or circuit
633                 if(i > 1 && a > 0) {
634                         tt = (tf->eta < tc->eta ? tf : tc);
635                 } else if(i > 1) {
636                         tt = tc;
637                 } else if(a > 0) {
638                         tt = tf;
639                 } else {
640                         // We should never get here!
641                         SG_LOG(SG_ATC, SG_ALERT, "ALERT - Logic error in FGTower::ProcessDownwindReport");
642                 }
643                 trns += "Follow the ";
644                 string s = tt->plane.callsign;
645                 int p = s.find('-');
646                 s = s.substr(0,p);
647                 trns += s;
648                 if((tt->opType) == CIRCUIT) {
649                         if(tt->planePtr->GetLeg() == FINAL) {
650                                 trns += " on final";
651                         } else if(tt->planePtr->GetLeg() == TURN4) {
652                                 trns += " turning final";
653                         } else if(tt->planePtr->GetLeg() == BASE) {
654                                 trns += " on base";
655                         } else if(tt->planePtr->GetLeg() == TURN3) {
656                                 trns += " turning base";
657                         }
658                 } else {
659                         double miles_out = CalcDistOutMiles(tt);
660                         if(miles_out < 2) {
661                                 trns += " on short final";
662                         } else {
663                                 trns += " on ";
664                                 trns += ConvertNumToSpokenDigits((int)miles_out);
665                                 trns += " mile final";
666                         }
667                 }
668         }
669         if(_display) {
670                 globals->get_ATC_display()->RegisterSingleMessage(trns);
671         }
672         if(t->isUser) {
673                 if(t->opType == TTT_UNKNOWN) t->opType = CIRCUIT;
674                 //cout << "ADD VACATED A\n";
675                 // Put going around at the top (and hence default) since that'll be more desperate,
676                 // or put rwy vacated at the top since that'll be more common?
677                 //cout << "ident = " << ident << ", adding go-around option\n";
678                 current_atcdialog->add_entry(ident, "@CS Going Around", "Report going around", TOWER, USER_REPORT_GOING_AROUND);
679                 current_atcdialog->add_entry(ident, "@CS Clear of the runway", "Report runway vacated", TOWER, USER_REPORT_RWY_VACATED);
680         }
681 }
682
683 void FGTower::ProcessRunwayVacatedReport(TowerPlaneRec* t) {
684         //cout << "Processing rwy vacated...\n";
685         current_atcdialog->remove_entry(ident, USER_REPORT_GOING_AROUND, TOWER);
686         string trns = t->plane.callsign;
687         if(separateGround) {
688                 trns += " Contact ground on ";
689                 double f = globals->get_ATC_mgr()->GetFrequency(ident, GROUND) / 100.0; 
690                 char buf[10];
691                 sprintf(buf, "%.2f", f);
692                 trns += buf;
693                 trns += " Good Day";
694                 if(!t->isUser) t->planePtr->RegisterTransmission(5);
695         } else {
696                 // Cop-out!!
697                 trns += " cleared for taxi to the GA parking";
698                 if(!t->isUser) t->planePtr->RegisterTransmission(6);    // TODO - this is a mega-hack!!
699         }
700         //cout << "trns = " << trns << '\n';
701         if(_display) {
702                 globals->get_ATC_display()->RegisterSingleMessage(trns);
703         }
704         // Maybe we should check that the plane really *has* vacated the runway!
705 }
706
707 // *********** END RESPONSE FUNCTIONS *****************
708
709 // Currently this assumes we *are* next on the runway and doesn't check for planes about to land - 
710 // this should be done prior to calling this function.
711 void FGTower::ClearHoldingPlane(TowerPlaneRec* t) {
712         //cout << "Entering ClearHoldingPlane..." << endl;
713         // Lets Roll !!!!
714         string trns = t->plane.callsign;
715         //if(departed plane < some threshold in time away) {
716         if(0) {         // FIXME
717         //if(timeSinceLastDeparture <= 60.0 && departed == true) {
718                 trns += " line up";
719                 t->clearedToLineUp = true;
720                 t->planePtr->RegisterTransmission(3);   // cleared to line-up
721         //} else if(arriving plane < some threshold away) {
722         } else if(GetTrafficETA(2) < 150.0 && (timeSinceLastDeparture > 60.0 || departed == false)) {   // Hack - hardwired time
723                 trns += " cleared immediate take-off";
724                 if(trafficList.size()) {
725                         tower_plane_rec_list_iterator trfcItr = trafficList.begin();
726                         trfcItr++;      // At the moment the holding plane should be first in trafficList.
727                         // Note though that this will break if holding planes aren't put in trafficList in the future.
728                         TowerPlaneRec* trfc = *trfcItr;
729                         trns += "... traffic is";
730                         switch(trfc->plane.type) {
731                         case UNKNOWN:
732                                 break;
733                         case GA_SINGLE:
734                                 trns += " a Cessna";    // TODO - add ability to specify actual plane type somewhere
735                                 break;
736                         case GA_HP_SINGLE:
737                                 trns += " a Piper";
738                                 break;
739                         case GA_TWIN:
740                                 trns += " a King-air";
741                                 break;
742                         case GA_JET:
743                                 trns += " a Learjet";
744                                 break;
745                         case MEDIUM:
746                                 trns += " a Regional";
747                                 break;
748                         case HEAVY:
749                                 trns += " a Heavy";
750                                 break;
751                         case MIL_JET:
752                                 trns += " Military";
753                                 break;
754                         }
755                         //if(trfc->opType == STRAIGHT_IN || trfc->opType == TTT_UNKNOWN) {
756                         if(trfc->opType == STRAIGHT_IN) {
757                                 double miles_out = CalcDistOutMiles(trfc);
758                                 if(miles_out < 2) {
759                                         trns += " on final";
760                                 } else {
761                                         trns += " on ";
762                                         trns += ConvertNumToSpokenDigits((int)miles_out);
763                                         trns += " mile final";
764                                 }
765                         } else if(trfc->opType == CIRCUIT) {
766                                 //cout << "Getting leg of " << trfc->plane.callsign << '\n';
767                                 switch(trfc->leg) {
768                                 case FINAL:
769                                         trns += " on final";
770                                         break;
771                                 case TURN4:
772                                         trns += " turning final";
773                                         break;
774                                 case BASE:
775                                         trns += " on base";
776                                         break;
777                                 case TURN3:
778                                         trns += " turning base";
779                                         break;
780                                 case DOWNWIND:
781                                         trns += " in circuit";  // At the moment the user plane is generally flagged as unknown opType when downwind incase its a downwind departure which means we won't get here.
782                                         break;
783                                 // And to eliminate compiler warnings...
784                                 case TAKEOFF_ROLL: break;
785                                 case CLIMBOUT:     break;
786                                 case TURN1:        break;
787                                 case CROSSWIND:    break;
788                                 case TURN2:        break;
789                                 case LANDING_ROLL: break;
790                                 case LEG_UNKNOWN:  break;
791                                 }
792                         }
793                 } else {
794                         // By definition there should be some arriving traffic if we're cleared for immediate takeoff
795                         SG_LOG(SG_ATC, SG_WARN, "Warning: Departing traffic cleared for *immediate* take-off despite no arriving traffic in FGTower");
796                 }
797                 t->clearedToTakeOff = true;
798                 t->planePtr->RegisterTransmission(4);   // cleared to take-off - TODO differentiate between immediate and normal take-off
799                 departed = false;
800                 timeSinceLastDeparture = 0.0;
801         } else {
802         //} else if(timeSinceLastDeparture > 60.0 || departed == false) {       // Hack - test for timeSinceLastDeparture should be in lineup block eventually
803                 trns += " cleared for take-off";
804                 // TODO - add traffic is... ?
805                 t->clearedToTakeOff = true;
806                 t->planePtr->RegisterTransmission(4);   // cleared to take-off
807                 departed = false;
808                 timeSinceLastDeparture = 0.0;
809         }
810         if(_display) {
811                 globals->get_ATC_display()->RegisterSingleMessage(trns, 0);
812         }
813         //cout << "Done ClearHoldingPlane " << endl;
814 }
815
816
817 // ***************************************************************************************
818 // ********** Functions to periodically check what the various traffic is doing **********
819
820 // Do one plane from the hold list
821 void FGTower::CheckHoldList(double dt) {
822         //cout << "Entering CheckHoldList..." << endl;
823         if(holdList.size()) {
824                 //cout << "*holdListItr = " << *holdListItr << endl;
825                 if(holdListItr == holdList.end()) {
826                         holdListItr = holdList.begin();
827                 }
828                 //cout << "*holdListItr = " << *holdListItr << endl;
829                 //Process(*holdListItr);
830                 TowerPlaneRec* t = *holdListItr;
831                 //cout << "t = " << t << endl;
832                 if(t->holdShortReported) {
833                         // NO-OP - leave it to the response handler.
834                 } else {        // not responding to report, but still need to clear if clear
835                         if(t->nextOnRwy) {
836                                 //cout << "departed = " << departed << '\n';
837                                 //cout << "timeSinceLastDeparture = " << timeSinceLastDeparture << '\n';
838                                 if(rwyOccupied) {
839                                         // Do nothing
840                                 } else if(timeSinceLastDeparture <= 60.0 && departed == true) {
841                                         // Do nothing - this is a bit of a hack - should maybe do line up be ready here
842                                 } else {
843                                         ClearHoldingPlane(t);
844                                         t->leg = TAKEOFF_ROLL;
845                                         rwyList.push_back(t);
846                                         rwyOccupied = true;
847                                         holdList.erase(holdListItr);
848                                         holdListItr = holdList.begin();
849                                 }
850                         }
851                         // TODO - rationalise the considerable code duplication above!
852                 }
853                 ++holdListItr;
854         }
855         //cout << "Done CheckHoldList" << endl;
856 }
857
858 // do the ciruit list
859 void FGTower::CheckCircuitList(double dt) {
860         //cout << "Entering CheckCircuitList..." << endl;
861         // Clear the constraints - we recalculate here.
862         base_leg_pos = 0.0;
863         downwind_leg_pos = 0.0;
864         crosswind_leg_pos = 0.0;
865         
866         if(circuitList.size()) {        // Do one plane from the circuit
867                 if(circuitListItr == circuitList.end()) {
868                         circuitListItr = circuitList.begin();
869                 }
870                 TowerPlaneRec* t = *circuitListItr;
871                 //cout << ident <<  ' ' << circuitList.size() << ' ' << t->plane.callsign << " " << t->leg << " eta " << t->eta << '\n';
872                 if(t->isUser) {
873                         t->pos.setlon(user_lon_node->getDoubleValue());
874                         t->pos.setlat(user_lat_node->getDoubleValue());
875                         t->pos.setelev(user_elev_node->getDoubleValue());
876                         //cout << ident <<  ' ' << circuitList.size() << ' ' << t->plane.callsign << " " << t->leg << " eta " << t->eta << '\n';
877                 } else {
878                         t->pos = t->planePtr->GetPos();         // We should probably only set the pos's on one walk through the traffic list in the update function, to save a few CPU should we end up duplicating this.
879                         t->landingType = t->planePtr->GetLandingOption();
880                         //cout << "AI plane landing option is " << t->landingType << '\n';
881                 }
882                 Point3D tortho = ortho.ConvertToLocal(t->pos);
883                 if(t->isUser) {
884                         // Need to figure out which leg he's on
885                         //cout << "rwy.hdg = " << rwy.hdg << " user hdg = " << user_hdg_node->getDoubleValue();
886                         double ho = GetAngleDiff_deg(user_hdg_node->getDoubleValue(), rwy.hdg);
887                         //cout << " ho = " << ho << " abs(ho = " << abs(ho) << '\n';
888                         // TODO FIXME - get the wind and convert this to track, or otherwise use track somehow!!!
889                         // If it's gusty might need to filter the value, although we are leaving 30 degrees each way leeway!
890                         if(abs(ho) < 30) {
891                                 // could be either takeoff, climbout or landing - check orthopos.y
892                                 //cout << "tortho.y = " << tortho.y() << '\n';
893                                 if((tortho.y() < 0) || (t->leg == TURN4) || (t->leg == FINAL)) {
894                                         t->leg = FINAL;
895                                         //cout << "Final\n";
896                                 } else {
897                                         t->leg = CLIMBOUT;      // TODO - check elev wrt. apt elev to differentiate takeoff roll and climbout
898                                         //cout << "Climbout\n";
899                                         // If it's the user we may be unsure of his/her intentions.
900                                         // (Hopefully the AI planes won't try confusing the sim!!!)
901                                         //cout << "tortho.y = " << tortho.y() << '\n';
902                                         if(t->opType == TTT_UNKNOWN) {
903                                                 if(tortho.y() > 5000) {
904                                                         // 5 km out from threshold - assume it's a departure
905                                                         t->opType = OUTBOUND;   // TODO - could check if the user has climbed significantly above circuit altitude as well.
906                                                         // Since we are unknown operation we should be in depList already.
907                                                         //cout << ident << " Removing user from circuitList (TTT_UNKNOWN)\n";
908                                                         circuitList.erase(circuitListItr);
909                                                         RemoveFromTrafficList(t->plane.callsign);
910                                                         circuitListItr = circuitList.begin();
911                                                 }
912                                         } else if(t->opType == CIRCUIT) {
913                                                 if(tortho.y() > 10000) {
914                                                         // 10 km out - assume the user has abandoned the circuit!!
915                                                         t->opType = OUTBOUND;
916                                                         depList.push_back(t);
917                                                         //cout << ident << " removing user from circuitList (CIRCUIT)\n";
918                                                         circuitList.erase(circuitListItr);
919                                                         circuitListItr = circuitList.begin();
920                                                 }
921                                         }
922                                 }
923                         } else if(abs(ho) < 60) {
924                                 // turn1 or turn 4
925                                 // TODO - either fix or doublecheck this hack by looking at heading and pattern direction
926                                 if((t->leg == CLIMBOUT) || (t->leg == TURN1)) {
927                                         t->leg = TURN1;
928                                         //cout << "Turn1\n";
929                                 } else {
930                                         t->leg = TURN4;
931                                         //cout << "Turn4\n";
932                                 }
933                         } else if(abs(ho) < 120) {
934                                 // crosswind or base
935                                 // TODO - either fix or doublecheck this hack by looking at heading and pattern direction
936                                 if((t->leg == TURN1) || (t->leg == CROSSWIND)) {
937                                         t->leg = CROSSWIND;
938                                         //cout << "Crosswind\n";
939                                 } else {
940                                         t->leg = BASE;
941                                         //cout << "Base\n";
942                                 }
943                         } else if(abs(ho) < 150) {
944                                 // turn2 or turn 3
945                                 // TODO - either fix or doublecheck this hack by looking at heading and pattern direction
946                                 if((t->leg == CROSSWIND) || (t->leg == TURN2)) {
947                                         t->leg = TURN2;
948                                         //cout << "Turn2\n";
949                                 } else {
950                                         t->leg = TURN3;
951                                         // Probably safe now to assume the user is flying a circuit
952                                         t->opType = CIRCUIT;
953                                         //cout << "Turn3\n";
954                                 }
955                         } else {
956                                 // downwind
957                                 t->leg = DOWNWIND;
958                                 //cout << "Downwind\n";
959                         }
960                         if(t->leg == FINAL) {
961                                 if(OnActiveRunway(t->pos)) {
962                                         t->leg = LANDING_ROLL;
963                                 }
964                         }
965                 } else {
966                         t->leg = t->planePtr->GetLeg();
967                 }
968                 
969                 // Set the constraints IF this is the first plane in the circuit
970                 // TODO - at the moment we're constraining plane 2 based on plane 1 - this won't (or might not) work for 3 planes in the circuit!!
971                 if(circuitListItr == circuitList.begin()) {
972                         switch(t->leg) {
973                                 case FINAL:
974                                 // Base leg must be at least as far out as the plane is - actually possibly not necessary for separation, but we'll use that for now.
975                                 base_leg_pos = tortho.y();
976                                 //cout << "base_leg_pos = " << base_leg_pos << '\n';
977                                 break;
978                                 case TURN4:
979                                 // Fall through to base
980                                 case BASE:
981                                 base_leg_pos = tortho.y();
982                                 //cout << "base_leg_pos = " << base_leg_pos << '\n';
983                                 break;
984                                 case TURN3:
985                                 // Fall through to downwind
986                                 case DOWNWIND:
987                                 // Only have the downwind leg pos as turn-to-base constraint if more negative than we already have.
988                                 base_leg_pos = (tortho.y() < base_leg_pos ? tortho.y() : base_leg_pos);
989                                 //cout << "base_leg_pos = " << base_leg_pos;
990                                 downwind_leg_pos = tortho.x();          // Assume that a following plane can simply be constrained by the immediately in front downwind plane
991                                 //cout << " downwind_leg_pos = " << downwind_leg_pos << '\n';
992                                 break;
993                                 case TURN2:
994                                 // Fall through to crosswind
995                                 case CROSSWIND:
996                                 crosswind_leg_pos = tortho.y();
997                                 //cout << "crosswind_leg_pos = " << crosswind_leg_pos << '\n';
998                                 t->instructedToGoAround = false;
999                                 break;
1000                                 case TURN1:
1001                                 // Fall through to climbout
1002                                 case CLIMBOUT:
1003                                 // Only use current by constraint as largest
1004                                 crosswind_leg_pos = (tortho.y() > crosswind_leg_pos ? tortho.y() : crosswind_leg_pos);
1005                                 //cout << "crosswind_leg_pos = " << crosswind_leg_pos << '\n';
1006                                 break;
1007                                 case TAKEOFF_ROLL:
1008                                 break;
1009                                 case LEG_UNKNOWN:
1010                                 break;
1011                                 case LANDING_ROLL:
1012                                 break;
1013                                 default:
1014                                 break;
1015                         }
1016                 }
1017                 
1018                 if(t->leg == FINAL && !(t->instructedToGoAround)) {
1019                         doThresholdETACalc();
1020                         doThresholdUseOrder();
1021                         /*
1022                         if(t->isUser) {
1023                                 cout << "Checking USER on final... ";
1024                                 cout << "eta " << t->eta;
1025                                 if(t->clearedToLand) cout << " cleared to land\n";
1026                         }
1027                         */
1028                         //cout << "YES FINAL, t->eta = " << t->eta << ", rwyList.size() = " << rwyList.size() << '\n';
1029                         if(t->landingType == FULL_STOP) {
1030                                 t->opType = INBOUND;
1031                                 //cout << "\n******** SWITCHING TO INBOUND AT POINT AAA *********\n\n";
1032                         }
1033                         if(t->eta < 12 && rwyList.size()) {
1034                                 // TODO - need to make this more sophisticated 
1035                                 // eg. is the plane accelerating down the runway taking off [OK],
1036                                 // or stationary near the start [V. BAD!!].
1037                                 // For now this should stop the AI plane landing on top of the user.
1038                                 string trns = t->plane.callsign;
1039                                 trns += " GO AROUND TRAFFIC ON RUNWAY I REPEAT GO AROUND";
1040                                 pending_transmission = trns;
1041                                 ImmediateTransmit();
1042                                 t->instructedToGoAround = true;
1043                                 t->clearedToLand = false;
1044                                 // Assume it complies!!!
1045                                 t->opType = CIRCUIT;
1046                                 t->leg = CLIMBOUT;
1047                                 if(t->planePtr) {
1048                                         //cout << "Registering Go-around transmission with AI plane\n";
1049                                         t->planePtr->RegisterTransmission(13);
1050                                 }
1051                         } else if(!t->clearedToLand) {
1052                                 if(t->nextOnRwy) {
1053                                         if(!rwyList.size()) {
1054                                                 string trns = t->plane.callsign;
1055                                                 trns += " Cleared to land";
1056                                                 pending_transmission = trns;
1057                                                 Transmit();
1058                                                 //if(t->isUser) cout << "Transmitting cleared to Land!!!\n";
1059                                                 t->clearedToLand = true;
1060                                                 if(!t->isUser) {
1061                                                         t->planePtr->RegisterTransmission(7);
1062                                                 }
1063                                         }
1064                                 } else {
1065                                         //if(t->isUser) cout << "Not next\n";
1066                                 }
1067                         }
1068                 } else if(t->leg == LANDING_ROLL) {
1069                         //cout << t->plane.callsign << " has landed - adding to rwyList\n";
1070                         rwyList.push_front(t);
1071                         // TODO - if(!clearedToLand) shout something!!
1072                         t->clearedToLand = false;
1073                         RemoveFromTrafficList(t->plane.callsign);
1074                         if(t->isUser) {
1075                                 t->opType = TTT_UNKNOWN;
1076                         }       // TODO - allow the user to specify opType via ATC menu
1077                         //cout << ident << " Removing " << t->plane.callsign << " from circuitList..." << endl;
1078                         circuitListItr = circuitList.erase(circuitListItr);
1079                         if(circuitListItr == circuitList.end() ) {
1080                                 circuitListItr = circuitList.begin();
1081                         }
1082                 }
1083                 ++circuitListItr;
1084         }
1085         //cout << "Done CheckCircuitList" << endl;
1086 }
1087
1088 // Do the runway list - we'll do the whole runway list since it's important and there'll never be many planes on the rwy at once!!
1089 // FIXME - at the moment it looks like we're only doing the first plane from the rwy list.
1090 // (However, at the moment there should only be one airplane on the rwy at once, until we
1091 // start allowing planes to line up whilst previous arrival clears the rwy.)
1092 void FGTower::CheckRunwayList(double dt) {
1093         //cout << "Entering CheckRunwayList..." << endl;
1094         if(rwyOccupied) {
1095                 if(!rwyList.size()) {
1096                         rwyOccupied = false;
1097                 } else {
1098                         rwyListItr = rwyList.begin();
1099                         TowerPlaneRec* t = *rwyListItr;
1100                         if(t->isUser) {
1101                                 t->pos.setlon(user_lon_node->getDoubleValue());
1102                                 t->pos.setlat(user_lat_node->getDoubleValue());
1103                                 t->pos.setelev(user_elev_node->getDoubleValue());
1104                         } else {
1105                                 t->pos = t->planePtr->GetPos();         // We should probably only set the pos's on one walk through the traffic list in the update function, to save a few CPU should we end up duplicating this.
1106                         }
1107                         bool on_rwy = OnActiveRunway(t->pos);
1108                         if(!on_rwy) {
1109                                 // TODO - for all of these we need to check what the user is *actually* doing!
1110                                 if((t->opType == INBOUND) || (t->opType == STRAIGHT_IN)) {
1111                                         //cout << "Tower " << ident << " is removing plane " << t->plane.callsign << " from rwy list (vacated)\n";
1112                                         //cout << "Size of rwylist was " << rwyList.size() << '\n';
1113                                         //cout << "Size of vacatedList was " << vacatedList.size() << '\n';
1114                                         RemoveFromRwyList(t->plane.callsign);
1115                                         vacatedList.push_back(t);
1116                                         //cout << "Size of rwylist is " << rwyList.size() << '\n';
1117                                         //cout << "Size of vacatedList is " << vacatedList.size() << '\n';
1118                                         // At the moment we wait until Runway Vacated is reported by the plane before telling to contact ground etc.
1119                                         // It's possible we could be a bit more proactive about this.
1120                                 } else if(t->opType == OUTBOUND) {
1121                                         depList.push_back(t);
1122                                         rwyList.pop_front();
1123                                         departed = true;
1124                                         timeSinceLastDeparture = 0.0;
1125                                 } else if(t->opType == CIRCUIT) {
1126                                         //cout << ident << " adding " << t->plane.callsign << " to circuitList" << endl;
1127                                         circuitList.push_back(t);
1128                                         AddToTrafficList(t);
1129                                         rwyList.pop_front();
1130                                         departed = true;
1131                                         timeSinceLastDeparture = 0.0;
1132                                 } else if(t->opType == TTT_UNKNOWN) {
1133                                         depList.push_back(t);
1134                                         //cout << ident << " adding " << t->plane.callsign << " to circuitList" << endl;
1135                                         circuitList.push_back(t);
1136                                         AddToTrafficList(t);
1137                                         rwyList.pop_front();
1138                                         departed = true;
1139                                         timeSinceLastDeparture = 0.0;   // TODO - we need to take into account that the user might taxi-in when flagged opType UNKNOWN - check speed/altitude etc to make decision as to what user is up to.
1140                                 } else {
1141                                         // HELP - we shouldn't ever get here!!!
1142                                 }
1143                         }
1144                 }
1145         }
1146         //cout << "Done CheckRunwayList" << endl;
1147 }
1148
1149 // Do one plane from the approach list
1150 void FGTower::CheckApproachList(double dt) {
1151         //cout << "CheckApproachList called for " << ident << endl;
1152         //cout << "AppList.size is " << appList.size() << endl;
1153         if(appList.size()) {
1154                 if(appListItr == appList.end()) {
1155                         appListItr = appList.begin();
1156                 }
1157                 TowerPlaneRec* t = *appListItr;
1158                 //cout << "t = " << t << endl;
1159                 //cout << "Checking " << t->plane.callsign << endl;
1160                 if(t->isUser) {
1161                         t->pos.setlon(user_lon_node->getDoubleValue());
1162                         t->pos.setlat(user_lat_node->getDoubleValue());
1163                         t->pos.setelev(user_elev_node->getDoubleValue());
1164                 } else {
1165                         // TODO - set/update the position if it's an AI plane
1166                 }
1167                 //cout << "eta is " << t->eta << ", rwy is " << (rwyList.size() ? "occupied " : "clear ") << '\n';
1168                 if(t->eta < 12 && rwyList.size() && !(t->instructedToGoAround)) {
1169                         // TODO - need to make this more sophisticated 
1170                         // eg. is the plane accelerating down the runway taking off [OK],
1171                         // or stationary near the start [V. BAD!!].
1172                         // For now this should stop the AI plane landing on top of the user.
1173                         string trns = t->plane.callsign;
1174                         trns += " GO AROUND TRAFFIC ON RUNWAY I REPEAT GO AROUND";
1175                         pending_transmission = trns;
1176                         ImmediateTransmit();
1177                         t->instructedToGoAround = true;
1178                         t->clearedToLand = false;
1179                         t->nextOnRwy = false;   // But note this is recalculated so don't rely on it
1180                         // Assume it complies!!!
1181                         t->opType = CIRCUIT;
1182                         t->leg = CLIMBOUT;
1183                         if(!t->isUser) {
1184                                 if(t->planePtr) {
1185                                         //cout << "Registering Go-around transmission with AI plane\n";
1186                                         t->planePtr->RegisterTransmission(13);
1187                                 }
1188                         } else {
1189                                 // TODO - add Go-around ack to comm options,
1190                                 // remove report rwy vacated. (possibly).
1191                         }
1192                 }                               
1193                 if(t->nextOnRwy && !(t->clearedToLand) && !(t->instructedToGoAround)) {
1194                         // check distance away and whether runway occupied
1195                         // and schedule transmission if necessary
1196                 }
1197                 
1198                 // Check for landing...
1199                 bool landed = false;
1200                 if(!t->isUser) {
1201                         if(t->planePtr) {
1202                                 if(t->planePtr->GetLeg() == LANDING_ROLL) {
1203                                         landed = true;
1204                                 }
1205                         } else {
1206                                 SG_LOG(SG_ATC, SG_ALERT, "WARNING - not user and null planePtr in CheckApproachList!");
1207                         }
1208                 } else {        // user
1209                         if(OnActiveRunway(t->pos)) {
1210                                 landed = true;
1211                         }
1212                 }
1213                 
1214                 if(landed) {
1215                         // Duplicated in CheckCircuitList - must be able to rationalise this somehow!
1216                         //cout << "A " << t->plane.callsign << " has landed, adding to rwyList...\n";
1217                         rwyList.push_front(t);
1218                         // TODO - if(!clearedToLand) shout something!!
1219                         t->clearedToLand = false;
1220                         RemoveFromTrafficList(t->plane.callsign);
1221                         //if(t->isUser) {
1222                                 //      t->opType = TTT_UNKNOWN;
1223                         //}     // TODO - allow the user to specify opType via ATC menu
1224                         appListItr = appList.erase(appListItr);
1225                         if(appListItr == appList.end() ) {
1226                                 appListItr = appList.begin();
1227                         }
1228                 }
1229                 
1230                 ++appListItr;
1231         }
1232         //cout << "Done" << endl;
1233 }
1234
1235 // Do one plane from the departure list
1236 void FGTower::CheckDepartureList(double dt) {
1237         if(depList.size()) {
1238                 if(depListItr == depList.end()) {
1239                         depListItr = depList.begin();
1240                 }
1241                 TowerPlaneRec* t = *depListItr;
1242                 //cout << "Dep list, checking " << t->plane.callsign;
1243                 
1244                 double distout; // meters
1245                 if(t->isUser) distout = dclGetHorizontalSeparation(Point3D(lon, lat, elev), Point3D(user_lon_node->getDoubleValue(), user_lat_node->getDoubleValue(), user_elev_node->getDoubleValue()));
1246                 else distout = dclGetHorizontalSeparation(Point3D(lon, lat, elev), t->planePtr->GetPos());
1247                 //cout << " distout = " << distout << '\n';
1248                 if(distout > 10000) {
1249                         string trns = t->plane.callsign;
1250                         trns += " You are now clear of my airspace, good day";
1251                         pending_transmission = trns;
1252                         Transmit();
1253                         if(t->isUser) {
1254                                 // Change the communication options
1255                                 RemoveAllUserDialogOptions();
1256                                 //cout << "ADD A\n";
1257                                 current_atcdialog->add_entry(ident, "@AP Tower @CS @MI miles @CD of the airport for full stop with the ATIS", "Contact tower for VFR arrival (full stop)", TOWER, (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP);
1258                         } else {
1259                                 // Send a clear-of-airspace signal
1260                                 // TODO - implement this once we actually have departing AI traffic (currently all circuits or arrivals).
1261                         }
1262                         RemovePlane(t->plane.callsign);
1263                 } else {
1264                         ++depListItr;
1265                 }
1266         }
1267 }
1268
1269 // ********** End periodic check functions ***********************************************
1270 // ***************************************************************************************
1271
1272
1273 // Remove all dialog options for this tower.
1274 void FGTower::RemoveAllUserDialogOptions() {
1275         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_DEPARTURE, TOWER);
1276         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_ARRIVAL, TOWER);
1277         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_ARRIVAL_FULL_STOP, TOWER);
1278         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_ARRIVAL_TOUCH_AND_GO, TOWER);
1279         current_atcdialog->remove_entry(ident, USER_REPORT_3_MILE_FINAL, TOWER);
1280         current_atcdialog->remove_entry(ident, USER_REPORT_DOWNWIND, TOWER);
1281         current_atcdialog->remove_entry(ident, USER_REPORT_RWY_VACATED, TOWER);
1282         current_atcdialog->remove_entry(ident, USER_REPORT_GOING_AROUND, TOWER);        
1283 }
1284
1285 // Returns true if positions of crosswind/downwind/base leg turns should be constrained by previous traffic
1286 // plus the constraint position as a rwy orientated orthopos (meters)
1287 bool FGTower::GetCrosswindConstraint(double& cpos) {
1288         if(crosswind_leg_pos != 0.0) {
1289                 cpos = crosswind_leg_pos;
1290                 return(true);
1291         } else {
1292                 cpos = 0.0;
1293                 return(false);
1294         }
1295 }
1296 bool FGTower::GetDownwindConstraint(double& dpos) {
1297         if(fabs(downwind_leg_pos) > nominal_downwind_leg_pos) {
1298                 dpos = downwind_leg_pos;
1299                 return(true);
1300         } else {
1301                 dpos = 0.0;
1302                 return(false);
1303         }
1304 }
1305 bool FGTower::GetBaseConstraint(double& bpos) {
1306         if(base_leg_pos < nominal_base_leg_pos) {
1307                 bpos = base_leg_pos;
1308                 return(true);
1309         } else {
1310                 bpos = nominal_base_leg_pos;
1311                 return(false);
1312         }
1313 }
1314
1315
1316 // Figure out which runways are active.
1317 // For now we'll just be simple and do one active runway - eventually this will get much more complex
1318 // This is a private function - public interface to the results of this is through GetActiveRunway
1319 void FGTower::DoRwyDetails() {
1320         //cout << "GetRwyDetails called" << endl;
1321         
1322         // Based on the airport-id and wind get the active runway
1323         
1324         //wind
1325         double hdg = wind_from_hdg->getDoubleValue();
1326         double speed = wind_speed_knots->getDoubleValue();
1327         hdg = (speed == 0.0 ? 270.0 : hdg);
1328         //cout << "Heading = " << hdg << '\n';
1329         
1330         FGRunway runway;
1331         bool rwyGood = globals->get_runways()->search(ident, int(hdg), &runway);
1332         if(rwyGood) {
1333                 //cout << "RUNWAY GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOD\n";
1334                 activeRwy = runway.rwy_no;
1335                 rwy.rwyID = runway.rwy_no;
1336                 SG_LOG(SG_ATC, SG_INFO, "Active runway for airport " << ident << " is " << activeRwy);
1337                 
1338                 // Get the threshold position
1339                 double other_way = runway.heading - 180.0;
1340                 while(other_way <= 0.0) {
1341                         other_way += 360.0;
1342                 }
1343         // move to the +l end/center of the runway
1344                 //cout << "Runway center is at " << runway.lon << ", " << runway.lat << '\n';
1345         Point3D origin = Point3D(runway.lon, runway.lat, aptElev);
1346                 Point3D ref = origin;
1347         double tshlon, tshlat, tshr;
1348                 double tolon, tolat, tor;
1349                 rwy.length = runway.length * SG_FEET_TO_METER;
1350                 rwy.width = runway.width * SG_FEET_TO_METER;
1351         geo_direct_wgs_84 ( aptElev, ref.lat(), ref.lon(), other_way, 
1352                                 rwy.length / 2.0 - 25.0, &tshlat, &tshlon, &tshr );
1353         geo_direct_wgs_84 ( aptElev, ref.lat(), ref.lon(), runway.heading, 
1354                                 rwy.length / 2.0 - 25.0, &tolat, &tolon, &tor );
1355                 // Note - 25 meters in from the runway end is a bit of a hack to put the plane ahead of the user.
1356                 // now copy what we need out of runway into rwy
1357         rwy.threshold_pos = Point3D(tshlon, tshlat, aptElev);
1358                 Point3D takeoff_end = Point3D(tolon, tolat, aptElev);
1359                 //cout << "Threshold position = " << tshlon << ", " << tshlat << ", " << aptElev << '\n';
1360                 //cout << "Takeoff position = " << tolon << ", " << tolat << ", " << aptElev << '\n';
1361                 rwy.hdg = runway.heading;
1362                 // Set the projection for the local area based on this active runway
1363                 ortho.Init(rwy.threshold_pos, rwy.hdg); 
1364                 rwy.end1ortho = ortho.ConvertToLocal(rwy.threshold_pos);        // should come out as zero
1365                 rwy.end2ortho = ortho.ConvertToLocal(takeoff_end);
1366                 
1367                 // Set the pattern direction
1368                 // TODO - we'll check for a facilities file with this in eventually - for now assume left traffic except
1369                 // for certain circumstances (RH parallel rwy).
1370                 rwy.patternDirection = -1;              // Left
1371                 if(rwy.rwyID.size() == 3) {
1372                         rwy.patternDirection = (rwy.rwyID.substr(2,1) == "R" ? 1 : -1);
1373                 }
1374                 //cout << "Doing details, rwy.patterDirection is " << rwy.patternDirection << '\n';
1375         } else {
1376                 SG_LOG(SG_ATC, SG_ALERT, "Help  - can't get good runway in FGTower!!");
1377                 activeRwy = "NN";
1378         }
1379 }
1380
1381
1382 // Figure out if a given position lies on the active runway
1383 // Might have to change when we consider more than one active rwy.
1384 bool FGTower::OnActiveRunway(Point3D pt) {
1385         // TODO - check that the centre calculation below isn't confused by displaced thesholds etc.
1386         Point3D xyc((rwy.end1ortho.x() + rwy.end2ortho.x())/2.0, (rwy.end1ortho.y() + rwy.end2ortho.y())/2.0, 0.0);
1387         Point3D xyp = ortho.ConvertToLocal(pt);
1388         
1389         //cout << "Length offset = " << fabs(xyp.y() - xyc.y()) << '\n';
1390         //cout << "Width offset = " << fabs(xyp.x() - xyc.x()) << '\n';
1391
1392         double rlen = rwy.length/2.0 + 5.0;
1393         double rwidth = rwy.width/2.0;
1394         double ldiff = fabs(xyp.y() - xyc.y());
1395         double wdiff = fabs(xyp.x() - xyc.x());
1396
1397         return((ldiff < rlen) && (wdiff < rwidth));
1398 }       
1399
1400
1401 // Figure out if a given position lies on any runway or not
1402 // Only call this at startup - reading the runways database is expensive and needs to be fixed!
1403 bool FGTower::OnAnyRunway(Point3D pt) {
1404         ATCData ad;
1405         double dist = current_commlist->FindClosest(lon, lat, elev, ad, TOWER, 10.0);
1406         if(dist < 0.0) {
1407                 return(false);
1408         }
1409         // Based on the airport-id, go through all the runways and check for a point in them
1410         
1411         // TODO - do we actually need to search for the airport - surely we already know our ident and
1412         // can just search runways of our airport???
1413         //cout << "Airport ident is " << ad.ident << '\n';
1414         FGRunway runway;
1415         bool rwyGood = globals->get_runways()->search(ad.ident, &runway);
1416         if(!rwyGood) {
1417                 SG_LOG(SG_ATC, SG_WARN, "Unable to find any runways for airport ID " << ad.ident << " in FGTower");
1418         }
1419         bool on = false;
1420         while(runway.id == ad.ident) {          
1421                 on = OnRunway(pt, runway);
1422                 //cout << "Runway " << runway.rwy_no << ": On = " << (on ? "true\n" : "false\n");
1423                 if(on) return(true);
1424                 globals->get_runways()->next(&runway);          
1425         }
1426         return(on);
1427 }
1428
1429
1430 // Returns true if successful
1431 bool FGTower::RemoveFromTrafficList(string id) {
1432         tower_plane_rec_list_iterator twrItr;
1433         for(twrItr = trafficList.begin(); twrItr != trafficList.end(); twrItr++) {
1434                 TowerPlaneRec* tpr = *twrItr;
1435                 if(tpr->plane.callsign == id) {
1436                         trafficList.erase(twrItr);
1437                         trafficListItr = trafficList.begin();
1438                         return(true);
1439                 }
1440         }       
1441         SG_LOG(SG_ATC, SG_WARN, "Warning - unable to remove aircraft " << id << " from trafficList in FGTower");
1442         return(false);
1443 }
1444
1445
1446 // Returns true if successful
1447 bool FGTower::RemoveFromAppList(string id) {
1448         tower_plane_rec_list_iterator twrItr;
1449         for(twrItr = appList.begin(); twrItr != appList.end(); twrItr++) {
1450                 TowerPlaneRec* tpr = *twrItr;
1451                 if(tpr->plane.callsign == id) {
1452                         appList.erase(twrItr);
1453                         appListItr = appList.begin();
1454                         return(true);
1455                 }
1456         }       
1457         //SG_LOG(SG_ATC, SG_WARN, "Warning - unable to remove aircraft " << id << " from appList in FGTower");
1458         return(false);
1459 }
1460
1461 // Returns true if successful
1462 bool FGTower::RemoveFromRwyList(string id) {
1463         tower_plane_rec_list_iterator twrItr;
1464         for(twrItr = rwyList.begin(); twrItr != rwyList.end(); twrItr++) {
1465                 TowerPlaneRec* tpr = *twrItr;
1466                 if(tpr->plane.callsign == id) {
1467                         rwyList.erase(twrItr);
1468                         rwyListItr = rwyList.begin();
1469                         return(true);
1470                 }
1471         }       
1472         //SG_LOG(SG_ATC, SG_WARN, "Warning - unable to remove aircraft " << id << " from rwyList in FGTower");
1473         return(false);
1474 }
1475
1476
1477 // Add a tower plane rec with ETA to the traffic list in the correct position ETA-wise
1478 // and set nextOnRwy if so.
1479 // Returns true if this could cause a threshold ETA conflict with other traffic, false otherwise.
1480 // For planes holding they are put in the first position with time to go, and the return value is
1481 // true if in the first position (nextOnRwy) and false otherwise.
1482 // See the comments in FGTower::doThresholdUseOrder for notes on the ordering
1483 bool FGTower::AddToTrafficList(TowerPlaneRec* t, bool holding) {
1484         //cout << "ADD: " << trafficList.size();
1485         //cout << "AddToTrafficList called, currently size = " << trafficList.size() << ", holding = " << holding << endl;
1486         double separation_time = 90.0;  // seconds - this is currently a guess for light plane separation, and includes a few seconds for a holding plane to taxi onto the rwy.
1487         double departure_sep_time = 60.0;       // Separation time behind departing airplanes.  Comments above also apply.
1488         bool conflict = false;
1489         double lastETA = 0.0;
1490         bool firstTime = true;
1491         // FIXME - make this more robust for different plane types eg. light following heavy.
1492         tower_plane_rec_list_iterator twrItr;
1493         //twrItr = trafficList.begin();
1494         //while(1) {
1495         for(twrItr = trafficList.begin(); twrItr != trafficList.end(); twrItr++) {
1496                 //if(twrItr == trafficList.end()) {
1497                 //      cout << "  END  ";
1498                 //      trafficList.push_back(t);
1499                 //      return(holding ? firstTime : conflict);
1500                 //} else {
1501                         TowerPlaneRec* tpr = *twrItr;
1502                         if(holding) {
1503                                 //cout << (tpr->isUser ? "USER!\n" : "NOT user\n");
1504                                 //cout << "tpr->eta - lastETA = " << tpr->eta - lastETA << '\n';
1505                                 double dep_allowance = (timeSinceLastDeparture < departure_sep_time ? departure_sep_time - timeSinceLastDeparture : 0.0); 
1506                                 double slot_time = (firstTime ? separation_time + dep_allowance : separation_time + departure_sep_time);
1507                                 // separation_time + departure_sep_time in the above accounts for the fact that the arrival could be touch and go,
1508                                 // and if not needs time to clear the rwy anyway.
1509                                 if(tpr->eta  - lastETA > slot_time) {
1510                                         t->nextOnRwy = firstTime;
1511                                         trafficList.insert(twrItr, t);
1512                                         //cout << "\tH\t" << trafficList.size() << '\n';
1513                                         return(firstTime);
1514                                 }
1515                                 firstTime = false;
1516                         } else {
1517                                 if(t->eta < tpr->eta) {
1518                                         // Ugg - this one's tricky.
1519                                         // It depends on what the two planes are doing and whether there's a conflict what we do.
1520                                         if(tpr->eta - t->eta > separation_time) {       // No probs, plane 2 can squeeze in before plane 1 with no apparent conflict
1521                                                 if(tpr->nextOnRwy) {
1522                                                         tpr->nextOnRwy = false;
1523                                                         t->nextOnRwy = true;
1524                                                 }
1525                                                 trafficList.insert(twrItr, t);
1526                                         } else {        // Ooops - this ones tricky - we have a potential conflict!
1527                                                 conflict = true;
1528                                                 // HACK - just add anyway for now and flag conflict - TODO - FIX THIS using CIRCUIT/STRAIGHT_IN and VFR/IFR precedence rules.
1529                                                 if(tpr->nextOnRwy) {
1530                                                         tpr->nextOnRwy = false;
1531                                                         t->nextOnRwy = true;
1532                                                 }
1533                                                 trafficList.insert(twrItr, t);
1534                                         }
1535                                         //cout << "\tC\t" << trafficList.size() << '\n';
1536                                         return(conflict);
1537                                 }
1538                         }
1539                 //}
1540                 //++twrItr;
1541         }
1542         // If we get here we must be at the end of the list, or maybe the list is empty.
1543         if(!trafficList.size()) {
1544                 t->nextOnRwy = true;
1545                 // conflict and firstTime should be false and true respectively in this case anyway.
1546         } else {
1547                 t->nextOnRwy = false;
1548         }
1549         trafficList.push_back(t);
1550         //cout << "\tE\t" << trafficList.size() << endl;
1551         return(holding ? firstTime : conflict);
1552 }
1553
1554 // Add a tower plane rec with ETA to the circuit list in the correct position ETA-wise
1555 // Returns true if this might cause a separation conflict (based on ETA) with other traffic, false otherwise.
1556 // Safe to add a plane that is already in - planes with the same callsign are not added.
1557 bool FGTower::AddToCircuitList(TowerPlaneRec* t) {
1558         if(!t) {
1559                 //cout << "**********************************************\n";
1560                 //cout << "AddToCircuitList called with NULL pointer!!!!!\n";
1561                 //cout << "**********************************************\n";
1562                 return false;
1563         }
1564         //cout << "ADD: " << circuitList.size();
1565         //cout << ident << " AddToCircuitList called for " << t->plane.callsign << ", currently size = " << circuitList.size() << endl;
1566         double separation_time = 60.0;  // seconds - this is currently a guess for light plane separation, and includes a few seconds for a holding plane to taxi onto the rwy.
1567         bool conflict = false;
1568         tower_plane_rec_list_iterator twrItr;
1569         // First check if the plane is already in the list
1570         //cout << "A" << endl;
1571         //cout << "Checking whether " << t->plane.callsign << " is already in circuit list..." << endl;
1572         //cout << "B" << endl;
1573         for(twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
1574                 if((*twrItr)->plane.callsign == t->plane.callsign) {
1575                         //cout << "In list - returning...\n";
1576                         return false;
1577                 }
1578         }
1579         //cout << "Not in list - adding..." << endl;
1580         
1581         for(twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
1582                 TowerPlaneRec* tpr = *twrItr;
1583                 //cout << tpr->plane.callsign << " eta is " << tpr->eta << '\n';
1584                 //cout << "New eta is " << t->eta << '\n';              
1585                 if(t->eta < tpr->eta) {
1586                         // Ugg - this one's tricky.
1587                         // It depends on what the two planes are doing and whether there's a conflict what we do.
1588                         if(tpr->eta - t->eta > separation_time) {       // No probs, plane 2 can squeeze in before plane 1 with no apparent conflict
1589                                 circuitList.insert(twrItr, t);
1590                         } else {        // Ooops - this ones tricky - we have a potential conflict!
1591                                 conflict = true;
1592                                 // HACK - just add anyway for now and flag conflict.
1593                                 circuitList.insert(twrItr, t);
1594                         }
1595                         //cout << "\tC\t" << circuitList.size() << '\n';
1596                         return(conflict);
1597                 }
1598         }
1599         // If we get here we must be at the end of the list, or maybe the list is empty.
1600         //cout << ident << " adding " << t->plane.callsign << " to circuitList" << endl;
1601         circuitList.push_back(t);       // TODO - check the separation with the preceding plane for the conflict flag.
1602         //cout << "\tE\t" << circuitList.size() << endl;
1603         return(conflict);
1604 }
1605
1606
1607 // Calculate the eta of a plane to the threshold.
1608 // For ground traffic this is the fastest they can get there.
1609 // For air traffic this is the middle approximation.
1610 void FGTower::CalcETA(TowerPlaneRec* tpr, bool printout) {
1611         // For now we'll be very crude and hardwire expected speeds to C172-like values
1612         // The speeds below are specified in knots IAS and then converted to m/s
1613         double app_ias = 100.0 * 0.514444;                      // Speed during straight-in approach
1614         double circuit_ias = 80.0 * 0.514444;           // Speed around circuit
1615         double final_ias = 70.0 * 0.514444;             // Speed during final approach
1616         
1617         //if(printout) {
1618         //cout << "In CalcETA, airplane ident = " << tpr->plane.callsign << '\n';
1619         //cout << (tpr->isUser ? "USER\n" : "AI\n");
1620         //cout << flush;
1621         //}
1622         
1623         // Sign convention - dist_out is -ve for approaching planes and +ve for departing planes
1624         // dist_across is +ve in the pattern direction - ie a plane correctly on downwind will have a +ve dist_across
1625         
1626         Point3D op = ortho.ConvertToLocal(tpr->pos);
1627         //if(printout) {
1628         //if(!tpr->isUser) cout << "Orthopos is " << op.x() << ", " << op.y() << ' ';
1629         //cout << "opType is " << tpr->opType << '\n';
1630         //}
1631         double dist_out_m = op.y();
1632         double dist_across_m = fabs(op.x());    // The fabs is a hack to cope with the fact that we don't know the circuit direction yet
1633         //cout << "Doing ETA calc for " << tpr->plane.callsign << '\n';
1634         
1635         if(tpr->opType == STRAIGHT_IN || tpr->opType == INBOUND) {
1636                 //cout << "CASE 1\n";
1637                 double dist_to_go_m = sqrt((dist_out_m * dist_out_m) + (dist_across_m * dist_across_m));
1638                 if(dist_to_go_m < 1000) {
1639                         tpr->eta = dist_to_go_m / final_ias;
1640                 } else {
1641                         tpr->eta = (1000.0 / final_ias) + ((dist_to_go_m - 1000.0) / app_ias);
1642                 }
1643         } else if(tpr->opType == CIRCUIT || tpr->opType == TTT_UNKNOWN) {       // Hack alert - UNKNOWN has sort of been added here as a temporary hack.
1644                 //cout << "CASE 2\n";
1645                 // It's complicated - depends on if base leg is delayed or not
1646                 //if(printout) {
1647                 //cout << "Leg = " << tpr->leg << '\n';
1648                 //}
1649                 if(tpr->leg == LANDING_ROLL) {
1650                         tpr->eta = 0;
1651                 } else if((tpr->leg == FINAL) || (tpr->leg == TURN4)) {
1652                         //cout << "dist_out_m = " << dist_out_m << '\n';
1653                         tpr->eta = fabs(dist_out_m) / final_ias;
1654                 } else if((tpr->leg == BASE) || (tpr->leg == TURN3)) {
1655                         tpr->eta = (fabs(dist_out_m) / final_ias) + (dist_across_m / circuit_ias);
1656                 } else {
1657                         // Need to calculate where base leg is likely to be
1658                         // FIXME - for now I'll hardwire it to 1000m which is what AILocalTraffic uses!!!
1659                         // TODO - as a matter of design - AILocalTraffic should get the nominal no-traffic base turn distance from Tower, since in real life the published pattern might differ from airport to airport
1660                         double nominal_base_dist_out_m = -1000;
1661                         double current_base_dist_out_m;
1662                         if(!GetBaseConstraint(current_base_dist_out_m)) {
1663                                 current_base_dist_out_m = nominal_base_dist_out_m;
1664                         }
1665                         //cout << "current_base_dist_out_m = " << current_base_dist_out_m << '\n';
1666                         double nominal_dist_across_m = 1000;    // Hardwired value from AILocalTraffic
1667                         double current_dist_across_m;
1668                         if(!GetDownwindConstraint(current_dist_across_m)) {
1669                                 current_dist_across_m = nominal_dist_across_m;
1670                         }
1671                         double nominal_cross_dist_out_m = 2000; // Bit of a guess - AI plane turns to crosswind at 700ft agl.
1672                         tpr->eta = fabs(current_base_dist_out_m) / final_ias;   // final
1673                         //cout << "a = " << tpr->eta << '\n';
1674                         if((tpr->leg == DOWNWIND) || (tpr->leg == TURN2)) {
1675                                 tpr->eta += dist_across_m / circuit_ias;
1676                                 //cout << "b = " << tpr->eta << '\n';
1677                                 tpr->eta += fabs(current_base_dist_out_m - dist_out_m) / circuit_ias;
1678                                 //cout << "c = " << tpr->eta << '\n';
1679                         } else if((tpr->leg == CROSSWIND) || (tpr->leg == TURN1)) {
1680                                 //cout << "CROSSWIND calc: ";
1681                                 //cout << tpr->eta << ' ';
1682                                 if(dist_across_m > nominal_dist_across_m) {
1683                                         tpr->eta += dist_across_m / circuit_ias;
1684                                         //cout << "a ";
1685                                 } else {
1686                                         tpr->eta += nominal_dist_across_m / circuit_ias;
1687                                         //cout << "b ";
1688                                 }
1689                                 //cout << tpr->eta << ' ';
1690                                 // should we use the dist across of the previous plane if there is previous still on downwind?
1691                                 //if(printout) cout << "bb = " << tpr->eta << '\n';
1692                                 if(dist_out_m > nominal_cross_dist_out_m) {
1693                                         tpr->eta += fabs(current_base_dist_out_m - dist_out_m) / circuit_ias;
1694                                         //cout << "c ";
1695                                 } else {
1696                                         tpr->eta += fabs(current_base_dist_out_m - nominal_cross_dist_out_m) / circuit_ias;
1697                                         //cout << "d ";
1698                                 }
1699                                 //cout << tpr->eta << ' ';
1700                                 //if(printout) cout << "cc = " << tpr->eta << '\n';
1701                                 if(nominal_dist_across_m > dist_across_m) {
1702                                         tpr->eta += (nominal_dist_across_m - dist_across_m) / circuit_ias;
1703                                         //cout << "e ";
1704                                 } else {
1705                                         // Nothing to add
1706                                         //cout << "f ";
1707                                 }
1708                                 //cout << tpr->eta << '\n';
1709                                 //if(printout) cout << "dd = " << tpr->eta << '\n';
1710                         } else {
1711                                 // We've only just started - why not use a generic estimate?
1712                                 tpr->eta = 240.0;
1713                         }
1714                 }
1715                 //if(printout) {
1716                 //      cout << "ETA = " << tpr->eta << '\n';
1717                 //}
1718                 //if(!tpr->isUser) cout << tpr->plane.callsign << '\t' << tpr->eta << '\n';
1719         } else {
1720                 tpr->eta = 99999;
1721         }       
1722 }
1723
1724
1725 // Calculate the distance of a plane to the threshold in meters
1726 // TODO - Modify to calculate flying distance of a plane in the circuit
1727 double FGTower::CalcDistOutM(TowerPlaneRec* tpr) {
1728         return(dclGetHorizontalSeparation(rwy.threshold_pos, tpr->pos));
1729 }
1730
1731
1732 // Calculate the distance of a plane to the threshold in miles
1733 // TODO - Modify to calculate flying distance of a plane in the circuit
1734 double FGTower::CalcDistOutMiles(TowerPlaneRec* tpr) {
1735         return(CalcDistOutM(tpr) / 1600.0);             // FIXME - use a proper constant if possible.
1736 }
1737
1738
1739 // Iterate through all the lists, update the position of, and call CalcETA for all the planes.
1740 void FGTower::doThresholdETACalc() {
1741         //cout << "Entering doThresholdETACalc..." << endl;
1742         tower_plane_rec_list_iterator twrItr;
1743         // Do the approach list first
1744         for(twrItr = appList.begin(); twrItr != appList.end(); twrItr++) {
1745                 TowerPlaneRec* tpr = *twrItr;
1746                 if(!(tpr->isUser)) tpr->pos = tpr->planePtr->GetPos();
1747                 //cout << "APP: ";
1748                 CalcETA(tpr);
1749         }       
1750         // Then the circuit list
1751         //cout << "Circuit list size is " << circuitList.size() << '\n';
1752         for(twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
1753                 TowerPlaneRec* tpr = *twrItr;
1754                 if(!(tpr->isUser)) tpr->pos = tpr->planePtr->GetPos();
1755                 //cout << "CIRC: ";
1756                 CalcETA(tpr);
1757         }
1758         //cout << "Done doThresholdETCCalc" << endl;
1759 }
1760                 
1761
1762 // Check that the planes in traffic list are correctly ordered,
1763 // that the nearest (timewise) is flagged next on rwy, and return
1764 // true if any threshold use conflicts are detected, false otherwise.
1765 bool FGTower::doThresholdUseOrder() {
1766         //cout << "Entering doThresholdUseOrder..." << endl;
1767         bool conflict = false;
1768         
1769         // Wipe out traffic list, go through circuit, app and hold list, and reorder them in traffic list.
1770         // Here's the rather simplistic assumptions we're using:
1771         // Currently all planes are assumed to be GA light singles with corresponding speeds and separation times.
1772         // In order of priority for runway use:
1773         // STRAIGHT_IN > CIRCUIT > HOLDING_FOR_DEPARTURE
1774         // No modification of planes speeds occurs - conflicts are resolved by delaying turn for base,
1775         // and holding planes until a space.
1776         // When calculating if a holding plane can use the runway, time clearance from last departure
1777         // as well as time clearance to next arrival must be considered.
1778         
1779         trafficList.clear();
1780         
1781         tower_plane_rec_list_iterator twrItr;
1782         // Do the approach list first
1783         //if(ident == "KRHV") cout << "A" << flush;
1784         for(twrItr = appList.begin(); twrItr != appList.end(); twrItr++) {
1785                 TowerPlaneRec* tpr = *twrItr;
1786                 //if(ident == "KRHV") cout << tpr->plane.callsign << '\n';
1787                 conflict = AddToTrafficList(tpr);
1788         }       
1789         // Then the circuit list
1790         //if(ident == "KRHV") cout << "C" << flush;
1791         for(twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
1792                 TowerPlaneRec* tpr = *twrItr;
1793                 //if(ident == "KRHV") cout << tpr->plane.callsign << '\n';
1794                 conflict = AddToTrafficList(tpr);
1795         }
1796         // And finally the hold list
1797         //cout << "H" << endl;
1798         for(twrItr = holdList.begin(); twrItr != holdList.end(); twrItr++) {
1799                 TowerPlaneRec* tpr = *twrItr;
1800                 AddToTrafficList(tpr, true);
1801         }
1802         
1803         
1804         if(0) {
1805         //if(ident == "KRHV") {
1806                 cout << "T\n";
1807                 for(twrItr = trafficList.begin(); twrItr != trafficList.end(); twrItr++) {
1808                         TowerPlaneRec* tpr = *twrItr;
1809                         cout << tpr->plane.callsign << '\t' << tpr->eta << '\t';
1810                 }
1811                 cout << endl;
1812         }
1813         
1814         //cout << "Done doThresholdUseOrder" << endl;
1815         return(conflict);
1816 }
1817
1818
1819 // Return the ETA of plane no. list_pos (1-based) in the traffic list.
1820 // i.e. list_pos = 1 implies next to use runway.
1821 double FGTower::GetTrafficETA(unsigned int list_pos, bool printout) {
1822         if(trafficList.size() < list_pos) {
1823                 return(99999);
1824         }
1825
1826         tower_plane_rec_list_iterator twrItr;
1827         twrItr = trafficList.begin();
1828         for(unsigned int i = 1; i < list_pos; i++, twrItr++);
1829         TowerPlaneRec* tpr = *twrItr;
1830         CalcETA(tpr, printout);
1831         //cout << "ETA returned = " << tpr->eta << '\n';
1832         return(tpr->eta);
1833 }
1834         
1835
1836 void FGTower::ContactAtHoldShort(PlaneRec plane, FGAIPlane* requestee, tower_traffic_type operation) {
1837         // HACK - assume that anything contacting at hold short is new for now - FIXME LATER
1838         TowerPlaneRec* t = new TowerPlaneRec;
1839         t->plane = plane;
1840         t->planePtr = requestee;
1841         t->holdShortReported = true;
1842         t->clearedToLineUp = false;
1843         t->clearedToTakeOff = false;
1844         t->opType = operation;
1845         t->pos = requestee->GetPos();
1846         
1847         //cout << "Hold Short reported by " << plane.callsign << '\n';
1848         SG_LOG(SG_ATC, SG_BULK, "Hold Short reported by " << plane.callsign);
1849
1850 /*      
1851         bool next = AddToTrafficList(t, true);
1852         if(next) {
1853                 double teta = GetTrafficETA(2);
1854                 if(teta < 150.0) {
1855                         t->clearanceCounter = 7.0;      // This reduces the delay before response to 3 secs if an immediate takeoff is reqd
1856                         //cout << "Reducing response time to request due imminent traffic\n";
1857                 }
1858         } else {
1859         }
1860 */
1861         // TODO - possibly add the reduced interval to clearance when immediate back in under the new scheme
1862
1863         holdList.push_back(t);
1864         
1865         responseReqd = true;
1866 }
1867
1868 // Register the presence of an AI plane at a point where contact would already have been made in real life
1869 // CAUTION - currently it is assumed that this plane's callsign is unique - it is up to AIMgr to generate unique callsigns.
1870 void FGTower::RegisterAIPlane(PlaneRec plane, FGAIPlane* ai, tower_traffic_type op, PatternLeg lg) {
1871         // At the moment this is only going to be tested with inserting an AI plane on downwind
1872         TowerPlaneRec* t = new TowerPlaneRec;
1873         t->plane = plane;
1874         t->planePtr = ai;
1875         t->opType = op;
1876         t->leg = lg;
1877         t->pos = ai->GetPos();
1878         
1879         CalcETA(t);
1880         
1881         if(op == CIRCUIT && lg != LEG_UNKNOWN) {
1882                 AddToCircuitList(t);
1883         } else {
1884                 // FLAG A WARNING
1885         }
1886         
1887         doThresholdUseOrder();
1888 }
1889
1890 void FGTower::DeregisterAIPlane(string id) {
1891         RemovePlane(id);
1892 }
1893
1894 // Contact tower for VFR approach
1895 // eg "Cessna Charlie Foxtrot Golf Foxtrot Sierra eight miles South of the airport for full stop with Bravo"
1896 // This function probably only called via user interaction - AI planes will have an overloaded function taking a planerec.
1897 // opt defaults to AIP_LT_UNKNOWN
1898 void FGTower::VFRArrivalContact(string ID, LandingType opt) {
1899         //cout << "USER Request Landing Clearance called for ID " << ID << '\n';
1900         
1901         // For now we'll assume that the user is a light plane and can get him/her to join the circuit if necessary.
1902
1903         TowerPlaneRec* t;       
1904         string usercall = fgGetString("/sim/user/callsign");
1905         if(ID == "USER" || ID == usercall) {
1906                 t = FindPlane(usercall);
1907                 if(!t) {
1908                         //cout << "NOT t\n";
1909                         t = new TowerPlaneRec;
1910                         t->isUser = true;
1911                         t->pos.setlon(user_lon_node->getDoubleValue());
1912                         t->pos.setlat(user_lat_node->getDoubleValue());
1913                         t->pos.setelev(user_elev_node->getDoubleValue());
1914                 } else {
1915                         //cout << "IS t\n";
1916                         // Oops - the plane is already registered with this tower - maybe we took off and flew a giant circuit without
1917                         // quite getting out of tower airspace - just ignore for now and treat as new arrival.
1918                         // TODO - Maybe should remove from departure and circuit list if in there though!!
1919                 }
1920         } else {
1921                 // Oops - something has gone wrong - put out a warning
1922                 cout << "WARNING - FGTower::VFRContact(string ID, LandingType lt) called with ID " << ID << " which does not appear to be the user.\n";
1923                 return;
1924         }
1925                 
1926         
1927         // TODO
1928         // Calculate where the plane is in relation to the active runway and it's circuit
1929         // and set the op-type as appropriate.
1930         
1931         // HACK - to get up and running I'm going to assume that the user contacts tower on a staight-in final for now.
1932         t->opType = STRAIGHT_IN;
1933         
1934         t->plane.type = GA_SINGLE;      // FIXME - Another assumption!
1935         t->plane.callsign = usercall;
1936         
1937         t->vfrArrivalReported = true;
1938         responseReqd = true;
1939         
1940         appList.push_back(t);   // Not necessarily permanent
1941         AddToTrafficList(t);
1942         
1943         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_ARRIVAL, TOWER);
1944         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_ARRIVAL_FULL_STOP, TOWER);
1945         current_atcdialog->remove_entry(ident, USER_REQUEST_VFR_ARRIVAL_TOUCH_AND_GO, TOWER);
1946 }
1947
1948 // landingType defaults to AIP_LT_UNKNOWN
1949 void FGTower::VFRArrivalContact(PlaneRec plane, FGAIPlane* requestee, LandingType lt) {
1950         //cout << "VFRArrivalContact called for plane " << plane.callsign << " at " << ident << '\n';
1951         // Possible hack - assume this plane is new for now - TODO - should check really
1952         TowerPlaneRec* t = new TowerPlaneRec;
1953         t->plane = plane;
1954         t->planePtr = requestee;
1955         t->landingType = lt;
1956         t->pos = requestee->GetPos();
1957         
1958         //cout << "Hold Short reported by " << plane.callsign << '\n';
1959         SG_LOG(SG_ATC, SG_BULK, "VFR arrival contact made by " << plane.callsign);
1960         //cout << "VFR arrival contact made by " << plane.callsign << '\n';
1961
1962         // HACK - to get up and running I'm going to assume a staight-in final for now.
1963         t->opType = STRAIGHT_IN;
1964         
1965         t->vfrArrivalReported = true;
1966         responseReqd = true;
1967         
1968         //cout << "Before adding, appList.size = " << appList.size() << " at " << ident << '\n';
1969         appList.push_back(t);   // Not necessarily permanent
1970         //cout << "After adding, appList.size = " << appList.size() << " at " << ident << '\n';
1971         AddToTrafficList(t);
1972 }
1973
1974 void FGTower::RequestDepartureClearance(string ID) {
1975         //cout << "Request Departure Clearance called...\n";
1976 }
1977         
1978 void FGTower::ReportFinal(string ID) {
1979         //cout << "Report Final Called at tower " << ident << " by plane " << ID << '\n';
1980         if(ID == "USER") {
1981                 ID = fgGetString("/sim/user/callsign");
1982                 current_atcdialog->remove_entry(ident, USER_REPORT_3_MILE_FINAL, TOWER);
1983         }
1984         TowerPlaneRec* t = FindPlane(ID);
1985         if(t) {
1986                 t->finalReported = true;
1987                 t->finalAcknowledged = false;
1988                 if(!(t->clearedToLand)) {
1989                         responseReqd = true;
1990                 } else {
1991                         // possibly respond with wind even if already cleared to land?
1992                         t->finalReported = false;
1993                         t->finalAcknowledged = true;
1994                         // HACK!! - prevents next reporting being misinterpreted as this one.
1995                 }
1996         } else {
1997                 SG_LOG(SG_ATC, SG_WARN, "WARNING: Unable to find plane " << ID << " in FGTower::ReportFinal(...)");
1998         }
1999 }
2000
2001 void FGTower::ReportLongFinal(string ID) {
2002         if(ID == "USER") {
2003                 ID = fgGetString("/sim/user/callsign");
2004                 current_atcdialog->remove_entry(ident, USER_REPORT_3_MILE_FINAL, TOWER);
2005         }
2006         TowerPlaneRec* t = FindPlane(ID);
2007         if(t) {
2008                 t->longFinalReported = true;
2009                 t->longFinalAcknowledged = false;
2010                 if(!(t->clearedToLand)) {
2011                         responseReqd = true;
2012                 } // possibly respond with wind even if already cleared to land?
2013         } else {
2014                 SG_LOG(SG_ATC, SG_WARN, "WARNING: Unable to find plane " << ID << " in FGTower::ReportLongFinal(...)");
2015         }
2016 }
2017
2018 //void FGTower::ReportOuterMarker(string ID);
2019 //void FGTower::ReportMiddleMarker(string ID);
2020 //void FGTower::ReportInnerMarker(string ID);
2021
2022 void FGTower::ReportRunwayVacated(string ID) {
2023         //cout << "Report Runway Vacated Called at tower " << ident << " by plane " << ID << '\n';
2024         if(ID == "USER") {
2025                 ID = fgGetString("/sim/user/callsign");
2026                 current_atcdialog->remove_entry(ident, USER_REPORT_RWY_VACATED, TOWER);
2027         }
2028         TowerPlaneRec* t = FindPlane(ID);
2029         if(t) {
2030                 //cout << "Found it...\n";
2031                 t->rwyVacatedReported = true;
2032                 responseReqd = true;
2033         } else {
2034                 SG_LOG(SG_ATC, SG_WARN, "WARNING: Unable to find plane " << ID << " in FGTower::ReportRunwayVacated(...)");
2035                 SG_LOG(SG_ATC, SG_ALERT, "A WARNING: Unable to find plane " << ID << " in FGTower::ReportRunwayVacated(...)");
2036                 //cout << "WARNING: Unable to find plane " << ID << " in FGTower::ReportRunwayVacated(...)\n";
2037         }
2038 }
2039
2040 TowerPlaneRec* FGTower::FindPlane(string ID) {
2041         //cout << "FindPlane called for " << ID << "...\n";
2042         tower_plane_rec_list_iterator twrItr;
2043         // Do the approach list first
2044         for(twrItr = appList.begin(); twrItr != appList.end(); twrItr++) {
2045                 //cout << "appList callsign is " << (*twrItr)->plane.callsign << '\n';
2046                 if((*twrItr)->plane.callsign == ID) return(*twrItr);
2047         }       
2048         // Then the circuit list
2049         for(twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
2050                 //cout << "circuitList callsign is " << (*twrItr)->plane.callsign << '\n';
2051                 if((*twrItr)->plane.callsign == ID) return(*twrItr);
2052         }
2053         // Then the runway list
2054         //cout << "rwyList.size() is " << rwyList.size() << '\n';
2055         for(twrItr = rwyList.begin(); twrItr != rwyList.end(); twrItr++) {
2056                 //cout << "rwyList callsign is " << (*twrItr)->plane.callsign << '\n';
2057                 if((*twrItr)->plane.callsign == ID) return(*twrItr);
2058         }
2059         // The hold list
2060         for(twrItr = holdList.begin(); twrItr != holdList.end(); twrItr++) {
2061                 if((*twrItr)->plane.callsign == ID) return(*twrItr);
2062         }
2063         // And finally the vacated list
2064         for(twrItr = vacatedList.begin(); twrItr != vacatedList.end(); twrItr++) {
2065                 //cout << "vacatedList callsign is " << (*twrItr)->plane.callsign << '\n';
2066                 if((*twrItr)->plane.callsign == ID) return(*twrItr);
2067         }
2068         SG_LOG(SG_ATC, SG_WARN, "Unable to find " << ID << " in FGTower::FindPlane(...)");
2069         //exit(-1);
2070         return(NULL);
2071 }
2072
2073 void FGTower::RemovePlane(string ID) {
2074         //cout << ident << " RemovePlane called for " << ID << '\n';
2075         // We have to be careful here - we want to erase the plane from all lists it is in,
2076         // but we can only delete it once, AT THE END.
2077         TowerPlaneRec* t = NULL;
2078         tower_plane_rec_list_iterator twrItr;
2079         for(twrItr = appList.begin(); twrItr != appList.end(); twrItr++) {
2080                 if((*twrItr)->plane.callsign == ID) {
2081                         t = *twrItr;
2082                         twrItr = appList.erase(twrItr);
2083                         appListItr = appList.begin();
2084                 }
2085         }
2086         for(twrItr = depList.begin(); twrItr != depList.end(); twrItr++) {
2087                 if((*twrItr)->plane.callsign == ID) {
2088                         t = *twrItr;
2089                         twrItr = depList.erase(twrItr);
2090                         depListItr = depList.begin();
2091                 }
2092         }
2093         for(twrItr = circuitList.begin(); twrItr != circuitList.end(); twrItr++) {
2094                 if((*twrItr)->plane.callsign == ID) {
2095                         t = *twrItr;
2096                         twrItr = circuitList.erase(twrItr);
2097                         circuitListItr = circuitList.begin();
2098                 }
2099         }
2100         for(twrItr = holdList.begin(); twrItr != holdList.end(); twrItr++) {
2101                 if((*twrItr)->plane.callsign == ID) {
2102                         t = *twrItr;
2103                         twrItr = holdList.erase(twrItr);
2104                         holdListItr = holdList.begin();
2105                 }
2106         }
2107         for(twrItr = rwyList.begin(); twrItr != rwyList.end(); twrItr++) {
2108                 if((*twrItr)->plane.callsign == ID) {
2109                         t = *twrItr;
2110                         twrItr = rwyList.erase(twrItr);
2111                         rwyListItr = rwyList.begin();
2112                 }
2113         }
2114         for(twrItr = vacatedList.begin(); twrItr != vacatedList.end(); twrItr++) {
2115                 if((*twrItr)->plane.callsign == ID) {
2116                         t = *twrItr;
2117                         twrItr = vacatedList.erase(twrItr);
2118                         vacatedListItr = vacatedList.begin();
2119                 }
2120         }
2121         for(twrItr = trafficList.begin(); twrItr != trafficList.end(); twrItr++) {
2122                 if((*twrItr)->plane.callsign == ID) {
2123                         t = *twrItr;
2124                         twrItr = trafficList.erase(twrItr);
2125                         trafficListItr = trafficList.begin();
2126                 }
2127         }
2128         // And finally, delete the record if we found it.
2129         if(t) delete t;
2130 }
2131
2132 void FGTower::ReportDownwind(string ID) {
2133         //cout << "ReportDownwind(...) called\n";
2134         if(ID == "USER") {
2135                 ID = fgGetString("/sim/user/callsign");
2136                 current_atcdialog->remove_entry(ident, USER_REPORT_DOWNWIND, TOWER);
2137         }
2138         TowerPlaneRec* t = FindPlane(ID);
2139         if(t) {
2140                 t->downwindReported = true;
2141                 responseReqd = true;
2142                 // If the plane is in the app list, remove it and put it in the circuit list instead.
2143                 // Ideally we might want to do this at the 2 mile report prior to 45 deg entry, but at
2144                 // the moment that would b&gg?r up the constraint position calculations.
2145                 RemoveFromAppList(ID);
2146                 t->leg = DOWNWIND;
2147                 if(t->isUser) {
2148                         t->pos.setlon(user_lon_node->getDoubleValue());
2149                         t->pos.setlat(user_lat_node->getDoubleValue());
2150                         t->pos.setelev(user_elev_node->getDoubleValue());
2151                 } else {
2152                         // ASSERT(t->planePtr != NULL);
2153                         t->pos = t->planePtr->GetPos();
2154                 }
2155                 CalcETA(t);
2156                 AddToCircuitList(t);
2157         } else {
2158                 SG_LOG(SG_ATC, SG_WARN, "WARNING: Unable to find plane " << ID << " in FGTower::ReportDownwind(...)");
2159         }
2160 }
2161
2162 void FGTower::ReportGoingAround(string ID) {
2163         if(ID == "USER") {
2164                 ID = fgGetString("/sim/user/callsign");
2165                 RemoveAllUserDialogOptions();   // TODO - it would be much more efficient if ATCDialog simply had a clear() function!!!
2166                 current_atcdialog->add_entry(ident, "@AP Tower @CS Downwind @RW", "Report Downwind", TOWER, (int)USER_REPORT_DOWNWIND);
2167         }
2168         TowerPlaneRec* t = FindPlane(ID);
2169         if(t) {
2170                 //t->goAroundReported = true;  // No need to set this until we start responding to it.
2171                 responseReqd = false;   // might change in the future but for now we'll not distract them during the go-around.
2172                 // If the plane is in the app list, remove it and put it in the circuit list instead.
2173                 RemoveFromAppList(ID);
2174                 t->leg = CLIMBOUT;
2175                 if(t->isUser) {
2176                         t->pos.setlon(user_lon_node->getDoubleValue());
2177                         t->pos.setlat(user_lat_node->getDoubleValue());
2178                         t->pos.setelev(user_elev_node->getDoubleValue());
2179                 } else {
2180                         // ASSERT(t->planePtr != NULL);
2181                         t->pos = t->planePtr->GetPos();
2182                 }
2183                 CalcETA(t);
2184                 AddToCircuitList(t);
2185         } else {
2186                 SG_LOG(SG_ATC, SG_WARN, "WARNING: Unable to find plane " << ID << " in FGTower::ReportDownwind(...)");
2187         }
2188 }
2189
2190 string FGTower::GenText(const string& m, int c) {
2191         const int cmax = 300;
2192         //string message;
2193         char tag[4];
2194         char crej = '@';
2195         char mes[cmax];
2196         char dum[cmax];
2197         //char buf[10];
2198         char *pos;
2199         int len;
2200         //FGTransmission t;
2201         string usercall = fgGetString("/sim/user/callsign");
2202         
2203         //transmission_list_type     tmissions = transmissionlist_station[station];
2204         //transmission_list_iterator current   = tmissions.begin();
2205         //transmission_list_iterator last      = tmissions.end();
2206         
2207         //for ( ; current != last ; ++current ) {
2208         //      if ( current->get_code().c1 == code.c1 &&  
2209         //              current->get_code().c2 == code.c2 &&
2210         //          current->get_code().c3 == code.c3 ) {
2211                         
2212                         //if ( ttext ) message = current->get_transtext();
2213                         //else message = current->get_menutext();
2214                         strcpy( &mes[0], m.c_str() ); 
2215                         
2216                         // Replace all the '@' parameters with the actual text.
2217                         int check = 0;  // If mes gets overflowed the while loop can go infinite
2218                         while ( strchr(&mes[0], crej) != NULL  ) {      // ie. loop until no more occurances of crej ('@') found
2219                                 pos = strchr( &mes[0], crej );
2220                                 bcopy(pos, &tag[0], 3);
2221                                 tag[3] = '\0';
2222                                 int i;
2223                                 len = 0;
2224                                 for ( i=0; i<cmax; i++ ) {
2225                                         if ( mes[i] == crej ) {
2226                                                 len = i; 
2227                                                 break;
2228                                         }
2229                                 }
2230                                 strncpy( &dum[0], &mes[0], len );
2231                                 dum[len] = '\0';
2232                                 
2233                                 if ( strcmp ( tag, "@ST" ) == 0 )
2234                                         //strcat( &dum[0], tpars.station.c_str() );
2235                                         strcat(&dum[0], ident.c_str());
2236                                 else if ( strcmp ( tag, "@AP" ) == 0 )
2237                                         //strcat( &dum[0], tpars.airport.c_str() );
2238                                         strcat(&dum[0], name.c_str());
2239                                 else if ( strcmp ( tag, "@CS" ) == 0 ) 
2240                                         //strcat( &dum[0], tpars.callsign.c_str() );
2241                                         strcat(&dum[0], usercall.c_str());
2242                                 else if ( strcmp ( tag, "@TD" ) == 0 ) {
2243                                         /*
2244                                         if ( tpars.tdir == 1 ) {
2245                                                 char buf[] = "left";
2246                                                 strcat( &dum[0], &buf[0] );
2247                                         }
2248                                         else {
2249                                                 char buf[] = "right";
2250                                                 strcat( &dum[0], &buf[0] );
2251                                         }
2252                                         */
2253                                 }
2254                                 else if ( strcmp ( tag, "@HE" ) == 0 ) {
2255                                         /*
2256                                         char buf[10];
2257                                         sprintf( buf, "%i", (int)(tpars.heading) );
2258                                         strcat( &dum[0], &buf[0] );
2259                                         */
2260                                 }
2261                                 else if ( strcmp ( tag, "@VD" ) == 0 ) {
2262                                         /*
2263                                         if ( tpars.VDir == 1 ) {
2264                                                 char buf[] = "Descend and maintain";
2265                                                 strcat( &dum[0], &buf[0] );
2266                                         }
2267                                         else if ( tpars.VDir == 2 ) {
2268                                                 char buf[] = "Maintain";
2269                                                 strcat( &dum[0], &buf[0] );
2270                                         }
2271                                         else if ( tpars.VDir == 3 ) {
2272                                                 char buf[] = "Climb and maintain";
2273                                                 strcat( &dum[0], &buf[0] );
2274                                         } 
2275                                         */
2276                                 }
2277                                 else if ( strcmp ( tag, "@AL" ) == 0 ) {
2278                                         /*
2279                                         char buf[10];
2280                                         sprintf( buf, "%i", (int)(tpars.alt) );
2281                                         strcat( &dum[0], &buf[0] );
2282                                         */
2283                                 }
2284                                 else if ( strcmp ( tag, "@MI" ) == 0 ) {
2285                                         char buf[10];
2286                                         //sprintf( buf, "%3.1f", tpars.miles );
2287                                         int dist_miles = (int)dclGetHorizontalSeparation(Point3D(lon, lat, elev), Point3D(user_lon_node->getDoubleValue(), user_lat_node->getDoubleValue(), user_elev_node->getDoubleValue())) / 1600;
2288                                         sprintf(buf, "%i", dist_miles);
2289                                         strcat( &dum[0], &buf[0] );
2290                                 }
2291                                 else if ( strcmp ( tag, "@FR" ) == 0 ) {
2292                                         /*
2293                                         char buf[10];
2294                                         sprintf( buf, "%6.2f", tpars.freq );
2295                                         strcat( &dum[0], &buf[0] );
2296                                         */
2297                                 }
2298                                 else if ( strcmp ( tag, "@RW" ) == 0 ) {
2299                                         strcat(&dum[0], ConvertRwyNumToSpokenString(activeRwy).c_str());
2300                                 } else if(strcmp(tag, "@CD") == 0) {    // @CD = compass direction
2301                                         double h = GetHeadingFromTo(Point3D(lon, lat, elev), Point3D(user_lon_node->getDoubleValue(), user_lat_node->getDoubleValue(), user_elev_node->getDoubleValue()));
2302                                         while(h < 0.0) h += 360.0;
2303                                         while(h > 360.0) h -= 360.0;
2304                                         if(h < 22.5 || h > 337.5) {
2305                                                 strcat(&dum[0], "North");
2306                                         } else if(h < 67.5) {
2307                                                 strcat(&dum[0], "North-East");
2308                                         } else if(h < 112.5) {
2309                                                 strcat(&dum[0], "East");
2310                                         } else if(h < 157.5) {
2311                                                 strcat(&dum[0], "South-East");
2312                                         } else if(h < 202.5) {
2313                                                 strcat(&dum[0], "South");
2314                                         } else if(h < 247.5) {
2315                                                 strcat(&dum[0], "South-West");
2316                                         } else if(h < 292.5) {
2317                                                 strcat(&dum[0], "West");
2318                                         } else {
2319                                                 strcat(&dum[0], "North-West");
2320                                         }
2321                                 } else {
2322                                         cout << "Tag " << tag << " not found" << endl;
2323                                         break;
2324                                 }
2325                                 strcat( &dum[0], &mes[len+3] );
2326                                 strcpy( &mes[0], &dum[0] );
2327                                 
2328                                 ++check;
2329                                 if(check > 10) {
2330                                         SG_LOG(SG_ATC, SG_WARN, "WARNING: Possibly endless loop terminated in FGTransmissionlist::gen_text(...)"); 
2331                                         break;
2332                                 }
2333                         }
2334                         
2335                         //cout << mes  << endl;  
2336                         //break;
2337                 //}
2338         //}
2339         if ( mes != "" ) return mes;
2340         else return "No transmission found";
2341 }
2342
2343 ostream& operator << (ostream& os, tower_traffic_type ttt) {
2344         switch(ttt) {
2345         case(CIRCUIT):      return(os << "CIRCUIT");
2346         case(INBOUND):      return(os << "INBOUND");
2347         case(OUTBOUND):     return(os << "OUTBOUND");
2348         case(TTT_UNKNOWN):  return(os << "UNKNOWN");
2349         case(STRAIGHT_IN):  return(os << "STRAIGHT_IN");
2350         }
2351         return(os << "ERROR - Unknown switch in tower_traffic_type operator << ");
2352 }
2353