fix two exceptions when using ns2 scripted mobility along with SDT3D
(Boeing r1813)
This commit is contained in:
parent
9e955d22f0
commit
c635c54a3a
2 changed files with 2 additions and 2 deletions
|
@ -689,7 +689,7 @@ class WayPointMobility(WirelessModel):
|
||||||
node.position.set(x, y, z)
|
node.position.set(x, y, z)
|
||||||
msg = node.tonodemsg(flags=0)
|
msg = node.tonodemsg(flags=0)
|
||||||
self.session.broadcastraw(None, msg)
|
self.session.broadcastraw(None, msg)
|
||||||
self.session.sdt.updatenode(node, flags=0, x=x, y=y, z=z)
|
self.session.sdt.updatenode(node.objid, flags=0, x=x, y=y, z=z)
|
||||||
|
|
||||||
def setendtime(self):
|
def setendtime(self):
|
||||||
''' Set self.endtime to the time of the last waypoint in the queue of
|
''' Set self.endtime to the time of the last waypoint in the queue of
|
||||||
|
|
|
@ -331,6 +331,6 @@ class Sdt(object):
|
||||||
n = self.session.obj(nodenum)
|
n = self.session.obj(nodenum)
|
||||||
except KeyError:
|
except KeyError:
|
||||||
return False
|
return False
|
||||||
if isinstance(n, (pycore.nodes.WlanNode, pycore.nodes.EmaneNode)):
|
if isinstance(n, (nodes.WlanNode, nodes.EmaneNode)):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Add table
Reference in a new issue