1
0
Fork 0
fgdata/Nasal/canvas/map/traffic.model
Gijs de Rooy 2b6964911f Boeing ND:
- add VOR, APP, PLAN and CTR modes.
- add true/mag switch
- display waypoint altitudes
2013-12-28 16:18:35 +01:00

40 lines
No EOL
1.3 KiB
Text

var MPTrafficModel = {};
MPTrafficModel.new = func make(LayerModel, MPTrafficModel);
MPTrafficModel.init = func {
var pos = geo.Coord.new(); # FIXME: all of these should be instance variables
var myPosition = geo.Coord.new();
var myPositionVec = me._controller['get_position']();
myPosition.set_latlon( myPositionVec[0], myPositionVec[1]);
var max_dist_nm = me._controller['query_range']();
me._view.reset(); # hides: removeAllChildren()
# AI traffic
var traffic = props.globals.initNode("/ai/models/").getChildren( "aircraft" );
foreach(var t; traffic) {
pos.set_latlon( t.getNode("position/latitude-deg").getValue(),
t.getNode("position/longitude-deg").getValue()
);
if (pos.distance_to( myPosition ) <= max_dist_nm*NM2M )
me.push(t);
}
# Multiplayer traffic
var traffic = props.globals.initNode("/ai/models/").getChildren( "multiplayer" );
foreach(var t; traffic) {
pos.set_latlon( t.getNode("position/latitude-deg").getValue(),
t.getNode("position/longitude-deg").getValue()
);
if (pos.distance_to( myPosition ) <= max_dist_nm*NM2M )
me.push(t);
}
me.notifyView();
# update itself FIXME: this needs to be killed by the controller (e.g. when tcas layer is disabled)
# and the interval needs to be configurable via the controller
# so better use maketimer() here
settimer(func me.init(), 2);
}