2015-04-28 78 views

回答

1

有類TraCICommandInterface它提供了像這樣getRoadId()數據訪問方法。

在類TraCIDemo11p中,您可以找到如何獲取此信息的示例。它基本上是執行以下步驟:

TraCIMobility* mobility = TraCIMobilityAccess().get(getParentModule()); 
TraCICommandInterface* traci = mobility->getCommandInterface(); 
TraCICommandInterface::Vehicle* traciVehicle = mobility->getVehicleCommandInterface(); 
traciVehicle->getRoadId(); 
+0

非常感謝您的時間,我有一個老版本的VEINS,現在我使用最新的,所有工作正常。 最好, –