X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIManager.cxx;h=82036872706b613ef91a2aba3ea465ffb42c8072;hb=90b2d25671d60ff3c5561791676f27d31676904c;hp=e0ef64813fa975a3f98bce4c99d4f486184faee3;hpb=4fa75196ce7a5eee85d2a4e607f9bef3a9c96d4a;p=flightgear.git diff --git a/src/AIModel/AIManager.cxx b/src/AIModel/AIManager.cxx index e0ef64813..820368727 100644 --- a/src/AIModel/AIManager.cxx +++ b/src/AIModel/AIManager.cxx @@ -18,6 +18,10 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#include +#include +#include + #include
#include @@ -33,9 +37,7 @@ #include "AIStatic.hxx" #include "AIMultiplayer.hxx" #include "AITanker.hxx" - -#include - +#include "AIWingman.hxx" FGAIManager::FGAIManager() { _dt = 0.0; @@ -73,6 +75,7 @@ FGAIManager::init() { user_heading_node = fgGetNode("/orientation/heading-deg", true); user_pitch_node = fgGetNode("/orientation/pitch-deg", true); user_yaw_node = fgGetNode("/orientation/side-slip-deg", true); + user_roll_node = fgGetNode("/orientation/roll-deg", true); user_speed_node = fgGetNode("/velocities/uBody-fps", true); } @@ -143,7 +146,7 @@ FGAIManager::update(double dt) { tmgr->release((*ai_list_itr)->getID()); --mNumAiModels; --(mNumAiTypeModels[(*ai_list_itr)->getType()]); - FGAIBase *base = *ai_list_itr; + FGAIBase *base = (*ai_list_itr).get(); SGPropertyNode *props = base->_getProps(); props->setBoolValue("valid", false); @@ -155,14 +158,12 @@ FGAIManager::update(double dt) { props->setIntValue("id", -1); props->setBoolValue("radar/in-range", false); props->setIntValue("refuel/tanker", false); - props->setStringValue("sim/multiplay/chat", ""); - props->setStringValue("sim/multiplay/transmission-freq-hz", ""); ai_list_itr = ai_list.erase(ai_list_itr); } else { fetchUserState(); if ((*ai_list_itr)->isa(FGAIBase::otThermal)) { - FGAIBase *base = *ai_list_itr; + FGAIBase *base = (*ai_list_itr).get(); processThermal((FGAIThermal*)base); } else { (*ai_list_itr)->update(_dt); @@ -175,7 +176,7 @@ FGAIManager::update(double dt) { } void -FGAIManager::attach(SGSharedPtr model) +FGAIManager::attach(FGAIBase *model) { //unsigned idx = mNumAiTypeModels[model->getType()]; const char* typeString = model->getTypeString(); @@ -240,6 +241,7 @@ FGAIManager::fetchUserState( void ) { user_pitch = user_pitch_node->getDoubleValue(); user_yaw = user_yaw_node->getDoubleValue(); user_speed = user_speed_node->getDoubleValue() * 0.592484; + user_roll = user_roll_node->getDoubleValue(); wind_from_east = wind_from_east_node->getDoubleValue(); wind_from_north = wind_from_north_node->getDoubleValue(); } @@ -280,6 +282,12 @@ FGAIManager::processScenario( const string &filename ) { FGAITanker* tanker = new FGAITanker; tanker->readFromScenario(scEntry); attach(tanker); + + } else if (type == "wingman") { + FGAIWingman* wingman = new FGAIWingman; + wingman->readFromScenario(scEntry); + attach(wingman); + } else if (type == "aircraft") { FGAIAircraft* aircraft = new FGAIAircraft; aircraft->readFromScenario(scEntry); @@ -328,7 +336,7 @@ FGAIManager::loadScenarioFile(const std::string& filename) SGPropertyNode_ptr root = new SGPropertyNode; readProperties(path.str(), root); return root; - } catch (const sg_exception &e) { + } catch (const sg_exception &) { SG_LOG(SG_GENERAL, SG_DEBUG, "Incorrect path specified for AI " "scenario: \"" << path.str() << "\""); return 0; @@ -358,7 +366,7 @@ FGAIManager::getStartPosition(const string& id, const string& pid, std::string pnumber = scEntry->getStringValue("pennant-number"); std::string name = scEntry->getStringValue("name"); if (type == "carrier" && (pnumber == id || name == id)) { - SGSharedPtr carrier = new FGAICarrier; + osg::ref_ptr carrier = new FGAICarrier; carrier->readFromScenario(scEntry); if (carrier->getParkPosition(pid, geodPos, hdng, uvw)) { @@ -424,7 +432,7 @@ FGAIManager::calcCollision(double alt, double lat, double lon, double fuse_range << " range " << range << " alt " << tgt_alt ); - return *ai_list_itr; + return (*ai_list_itr).get(); } ++ai_list_itr; }