]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AITanker.cxx
5d5d72a5b24888c331e919d5ad9c30757d81658a
[flightgear.git] / src / AIModel / AITanker.cxx
1 // AITanker.cxx  Based on David Culp's AIModel code
2 // - Tanker specific code isolated from AI Aircraft code
3 // by Thomas Foerster, started June 2007
4 //
5 // 
6 // Original code written by David Culp, started October 2003.
7 // - davidculp2@comcast.net/
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21
22 #ifdef HAVE_CONFIG_H
23 #  include <config.h>
24 #endif
25
26 #include "AITanker.hxx"
27
28 FGAITanker::FGAITanker(FGAISchedule* ref): FGAIAircraft(ref){
29 }
30
31 FGAITanker::~FGAITanker() {}
32
33 void FGAITanker::readFromScenario(SGPropertyNode* scFileNode) {
34     if (!scFileNode)
35         return;
36
37     FGAIAircraft::readFromScenario(scFileNode);
38     setTACANChannelID(scFileNode->getStringValue("TACAN-channel-ID"));
39 }
40
41 void FGAITanker::bind() {
42     FGAIAircraft::bind();
43
44     props->tie("refuel/contact", SGRawValuePointer<bool>(&contact));
45     props->setStringValue("navaids/tacan/channel-ID", TACAN_channel_id.c_str());
46     props->setBoolValue("tanker", true);
47 }
48
49 void FGAITanker::unbind() {
50     FGAIAircraft::unbind();
51     props->untie("refuel/contact");
52 }
53
54 void FGAITanker::setTACANChannelID(const string& id) {
55     TACAN_channel_id = id;
56 }
57
58 void FGAITanker::Run(double dt) {
59     FGAIAircraft::Run(dt);
60
61     //###########################//
62     // do calculations for radar //
63     //###########################//
64     double range_ft2 = UpdateRadar(manager);
65
66     // check if radar contact
67     if ( (range_ft2 < 250.0 * 250.0) && (y_shift > 0.0)
68               && (elevation > 0.0) ) {
69         //refuel_node->setBoolValue(true);
70         contact = true;
71     } else {
72         //refuel_node->setBoolValue(false);
73         contact = false;
74     }
75 }
76
77
78 void FGAITanker::update(double dt) {
79      FGAIAircraft::update(dt);
80      Run(dt);
81      Transform();
82 }