SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
MSDevice_BTsender.cpp
Go to the documentation of this file.
1 /****************************************************************************/
8 // A BT sender
9 /****************************************************************************/
10 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
11 // Copyright (C) 2013-2015 DLR (http://www.dlr.de/) and contributors
12 /****************************************************************************/
13 //
14 // This file is part of SUMO.
15 // SUMO is free software: you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation, either version 3 of the License, or
18 // (at your option) any later version.
19 //
20 /****************************************************************************/
21 
22 // ===========================================================================
23 // included modules
24 // ===========================================================================
25 #ifdef _MSC_VER
26 #include <windows_config.h>
27 #else
28 #include <config.h>
29 #endif
30 
35 #include <microsim/MSNet.h>
36 #include <microsim/MSLane.h>
37 #include <microsim/MSEdge.h>
38 #include <microsim/MSVehicle.h>
39 #include "MSDevice_Tripinfo.h"
40 #include "MSDevice_BTsender.h"
41 #include "MSDevice_BTreceiver.h"
42 
43 #ifdef CHECK_MEMORY_LEAKS
44 #include <foreign/nvwa/debug_new.h>
45 #endif // CHECK_MEMORY_LEAKS
46 
47 
48 // ===========================================================================
49 // static members
50 // ===========================================================================
51 std::map<std::string, MSDevice_BTsender::VehicleInformation*> MSDevice_BTsender::sVehicles;
52 
53 
54 // ===========================================================================
55 // method definitions
56 // ===========================================================================
57 // ---------------------------------------------------------------------------
58 // static initialisation methods
59 // ---------------------------------------------------------------------------
60 void
62  insertDefaultAssignmentOptions("btsender", "Communication", oc);
63 }
64 
65 
66 void
67 MSDevice_BTsender::buildVehicleDevices(SUMOVehicle& v, std::vector<MSDevice*>& into) {
69  MSDevice_BTsender* device = new MSDevice_BTsender(v, "btsender_" + v.getID());
70  into.push_back(device);
71  }
72 }
73 
74 
75 // ---------------------------------------------------------------------------
76 // MSDevice_BTsender-methods
77 // ---------------------------------------------------------------------------
78 MSDevice_BTsender::MSDevice_BTsender(SUMOVehicle& holder, const std::string& id)
79  : MSDevice(holder, id) {
80 }
81 
82 
84 }
85 
86 
87 bool
89  if (reason == MSMoveReminder::NOTIFICATION_DEPARTED && sVehicles.find(veh.getID()) == sVehicles.end()) {
90  sVehicles[veh.getID()] = new VehicleInformation(veh.getID());
91  sVehicles[veh.getID()]->route.push_back(veh.getEdge());
92  }
93  if (reason == MSMoveReminder::NOTIFICATION_TELEPORT && sVehicles.find(veh.getID()) != sVehicles.end()) {
94  sVehicles[veh.getID()]->amOnNet = true;
95  }
97  sVehicles[veh.getID()]->route.push_back(veh.getEdge());
98  }
99  const MSVehicle& v = static_cast<MSVehicle&>(veh);
100  sVehicles[veh.getID()]->updates.push_back(VehicleState(veh.getSpeed(), veh.getPosition(), v.getLane()->getID(), veh.getPositionOnLane(), v.getRoutePosition()));
101  return true;
102 }
103 
104 
105 bool
106 MSDevice_BTsender::notifyMove(SUMOVehicle& veh, SUMOReal /* oldPos */, SUMOReal newPos, SUMOReal newSpeed) {
107  if (sVehicles.find(veh.getID()) == sVehicles.end()) {
108  WRITE_WARNING("btsender: Can not update position of a vehicle that is not within the road network (" + veh.getID() + ").");
109  return true;
110  }
111  const MSVehicle& v = static_cast<MSVehicle&>(veh);
112  sVehicles[veh.getID()]->updates.push_back(VehicleState(newSpeed, veh.getPosition(), v.getLane()->getID(), newPos, v.getRoutePosition()));
113  return true;
114 }
115 
116 
117 bool
120  return true;
121  }
122  if (sVehicles.find(veh.getID()) == sVehicles.end()) {
123  WRITE_WARNING("btsender: Can not update position of a vehicle that is not within the road network (" + veh.getID() + ").");
124  return true;
125  }
126  const MSVehicle& v = static_cast<MSVehicle&>(veh);
127  sVehicles[veh.getID()]->updates.push_back(VehicleState(veh.getSpeed(), veh.getPosition(), v.getLane()->getID(), veh.getPositionOnLane(), v.getRoutePosition()));
129  sVehicles[veh.getID()]->amOnNet = false;
130  }
131  if (reason >= MSMoveReminder::NOTIFICATION_ARRIVED) {
132  sVehicles[veh.getID()]->amOnNet = false;
133  sVehicles[veh.getID()]->haveArrived = true;
134  }
135  return true;
136 }
137 
138 
139 /****************************************************************************/
140 
Representation of a vehicle in the micro simulation.
Definition: MSVehicle.h:80
~MSDevice_BTsender()
Destructor.
The vehicle arrived at a junction.
bool notifyEnter(SUMOVehicle &veh, Notification reason)
Adds the vehicle to running vehicles if it (re-) enters the network.
virtual SUMOReal getPositionOnLane() const =0
Get the vehicle's position along the lane.
virtual const MSEdge * getEdge() const =0
Returns the edge the vehicle is currently at.
Notification
Definition of a vehicle state.
#define WRITE_WARNING(msg)
Definition: MsgHandler.h:200
static OptionsCont & getOptions()
Retrieves the options.
Definition: OptionsCont.cpp:67
const std::string & getID() const
Returns the id.
Definition: Named.h:60
Representation of a vehicle.
Definition: SUMOVehicle.h:65
A single movement state of the vehicle.
bool notifyLeave(SUMOVehicle &veh, SUMOReal lastPos, Notification reason)
Moves (the known) vehicle from running to arrived vehicles' list.
bool notifyMove(SUMOVehicle &veh, SUMOReal oldPos, SUMOReal newPos, SUMOReal newSpeed)
Checks whether the reminder still has to be notified about the vehicle moves.
The vehicle arrived at its destination (is deleted)
MSDevice_BTsender(SUMOVehicle &holder, const std::string &id)
Constructor.
static void insertDefaultAssignmentOptions(const std::string &deviceName, const std::string &optionsTopic, OptionsCont &oc)
Adds common command options that allow to assign devices to vehicles.
Definition: MSDevice.cpp:85
static void insertOptions(OptionsCont &oc)
Inserts MSDevice_BTsender-options.
Abstract in-vehicle device.
Definition: MSDevice.h:69
static bool equippedByDefaultAssignmentOptions(const OptionsCont &oc, const std::string &deviceName, SUMOVehicle &v)
Determines whether a vehicle should get a certain device.
Definition: MSDevice.cpp:99
The vehicle has departed (was inserted into the network)
virtual SUMOReal getSpeed() const =0
Returns the vehicle's current speed.
A storage for options typed value containers)
Definition: OptionsCont.h:108
virtual Position getPosition(const SUMOReal offset=0) const =0
Return current position (x/y, cartesian)
#define SUMOReal
Definition: config.h:218
Stores the information of a vehicle.
static std::map< std::string, VehicleInformation * > sVehicles
The list of arrived senders.
MSLane * getLane() const
Returns the lane the vehicle is on.
Definition: MSVehicle.h:331
unsigned int getRoutePosition() const
Definition: MSVehicle.cpp:511
virtual const std::string & getID() const =0
Get the vehicle's ID.
static void buildVehicleDevices(SUMOVehicle &v, std::vector< MSDevice * > &into)
Build devices for the given vehicle, if needed.
The vehicle is being teleported.