Remove unused variables.
Modified Files: src/ATCDCL/AIEntity.cxx src/ATCDCL/AIEntity.hxx src/ATCDCL/AIGAVFRTraffic.hxx src/ATCDCL/AILocalTraffic.cxx
This commit is contained in:
parent
4a9484ac25
commit
6ac5dd61e9
4 changed files with 1 additions and 16 deletions
|
@ -53,8 +53,7 @@ FGAIEntity::~FGAIEntity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGAIEntity::SetModel(osg::Node* model) {
|
void FGAIEntity::SetModel(osg::Node* model) {
|
||||||
_model = model;
|
_aip.init(model);
|
||||||
_aip.init(_model.get());
|
|
||||||
_aip.setVisible(false);
|
_aip.setVisible(false);
|
||||||
globals->get_scenery()->get_scene_graph()->addChild(_aip.getSceneGraph());
|
globals->get_scenery()->get_scene_graph()->addChild(_aip.getSceneGraph());
|
||||||
|
|
||||||
|
|
|
@ -61,8 +61,6 @@ protected:
|
||||||
double _roll; //degrees
|
double _roll; //degrees
|
||||||
double _pitch; //degrees
|
double _pitch; //degrees
|
||||||
|
|
||||||
char* _model_path; //Path to the 3D model
|
|
||||||
osg::ref_ptr<osg::Node> _model; // Pointer to the model
|
|
||||||
SGModelPlacement _aip;
|
SGModelPlacement _aip;
|
||||||
double _ground_elevation_m;
|
double _ground_elevation_m;
|
||||||
|
|
||||||
|
|
|
@ -111,8 +111,6 @@ private:
|
||||||
bool _entering;
|
bool _entering;
|
||||||
bool _turning;
|
bool _turning;
|
||||||
|
|
||||||
//ssgBranch* _model;
|
|
||||||
|
|
||||||
int GetQuadrangleAltitude(int dir, int des_alt);
|
int GetQuadrangleAltitude(int dir, int des_alt);
|
||||||
|
|
||||||
Point3D GetPatternApproachPos();
|
Point3D GetPatternApproachPos();
|
||||||
|
|
|
@ -53,16 +53,6 @@ using std::string;
|
||||||
#include "AIMgr.hxx"
|
#include "AIMgr.hxx"
|
||||||
|
|
||||||
FGAILocalTraffic::FGAILocalTraffic() {
|
FGAILocalTraffic::FGAILocalTraffic() {
|
||||||
/*ssgBranch *model = sgLoad3DModel( globals->get_fg_root(),
|
|
||||||
planepath.c_str(),
|
|
||||||
globals->get_props(),
|
|
||||||
globals->get_sim_time_sec() );
|
|
||||||
*//*
|
|
||||||
_model = model;
|
|
||||||
_aip.init(_model);
|
|
||||||
*/
|
|
||||||
//SetModel(model);
|
|
||||||
|
|
||||||
ATC = globals->get_ATC_mgr();
|
ATC = globals->get_ATC_mgr();
|
||||||
|
|
||||||
// TODO - unhardwire this
|
// TODO - unhardwire this
|
||||||
|
|
Loading…
Add table
Reference in a new issue