/usr/include/ns3.27/ns3/waypoint-mobility-model.h is in libns3-dev 3.27+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2009 Phillip Sitbon
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Phillip Sitbon <phillip@sitbon.net>
*/
#ifndef WAYPOINT_MOBILITY_MODEL_H
#define WAYPOINT_MOBILITY_MODEL_H
#include <stdint.h>
#include <deque>
#include "mobility-model.h"
#include "ns3/vector.h"
#include "waypoint.h"
class WaypointMobilityModelNotifyTest;
namespace ns3 {
/**
* \ingroup mobility
* \brief Waypoint-based mobility model.
*
* Each object determines its velocity and position at a given time
* from a set of ns3::Waypoint objects. Past waypoints are discarded
* after the current simulation time greater than their time value.
*
* By default, the initial position of each object corresponds to the
* position of the first waypoint, and the initial velocity of each
* object is zero. Upon reaching the last waypoint, object position
* becomes static and velocity is zero.
*
* When a node is in between waypoint times, it moves with a constant
* velocity between the position at the previous waypoint and the position
* at the current waypoint. To make a node hold a certain position for a
* time interval, two waypoints with the same position (but different times)
* should be inserted sequentially.
*
* Waypoints can be added at any time, and setting the current position
* of an object will set its velocity to zero until the next waypoint time
* (at which time the object jumps to the next waypoint), unless there are
* no more waypoints in which case it will not change without user
* intervention.
*
* The model has two attributes with methods that allow clients to get
* the next waypoint value (NextWaypoint) and the number of waypoints left
* (WaypointsLeft) beyond (but not including) the next waypoint.
*
* In addition, there are two attributes that govern model behavior. The
* first, LazyNotify, governs how the model calls the CourseChange trace.
* By default, LazyNotify is false, which means that each time that a
* waypoint time is hit, an Update() is forced and the CourseChange
* callback will be called. When LazyNotify is true, Update() is suppressed
* at waypoint times, and CourseChange callbacks will only occur when
* there later are actual calls to Update () (typically when calling
* GetPosition ()). This option may be enabled for execution run-time
* performance improvements, but when enabled, users should note that
* course change listeners will in general not be notified at waypoint
* times but instead at the next Update() following a waypoint time,
* and some waypoints may not be notified to course change listeners.
*
* The second, InitialPositionIsWaypoint, is false by default. Recall
* that the first waypoint will set the initial position and set velocity
* equal to 0 until the first waypoint time. In such a case, the
* call to SetPosition(), such as from a PositionAllocator, will be
* ignored. However, if InitialPositionIsWaypoint is set to true
* and SetPosition() is called before any waypoints have been added,
* the SetPosition() call is treated as an initial waypoint at time zero.
* In such a case, when SetPosition() is treated as an initial waypoint,
* it should be noted that attempts to add a waypoint at the same time
* will cause the program to fail.
*/
class WaypointMobilityModel : public MobilityModel
{
public:
/**
* Register this type with the TypeId system.
* \return the object TypeId
*/
static TypeId GetTypeId (void);
/**
* Create a path with no waypoints at location (0,0,0).
*/
WaypointMobilityModel ();
virtual ~WaypointMobilityModel ();
/**
* \param waypoint waypoint to append to the object path.
*
* Add a waypoint to the path of the object. The time must
* be greater than the previous waypoint added, otherwise
* a fatal error occurs. The first waypoint is set as the
* current position with a velocity of zero.
*
*/
void AddWaypoint (const Waypoint &waypoint);
/**
* Get the waypoint that this object is traveling towards.
*/
Waypoint GetNextWaypoint (void) const;
/**
* Get the number of waypoints left for this object, excluding
* the next one.
*/
uint32_t WaypointsLeft (void) const;
/**
* Clear any existing waypoints and set the current waypoint
* time to infinity. Calling this is only an optimization and
* not required. After calling this function, adding waypoints
* behaves as it would for a new object.
*/
void EndMobility (void);
private:
friend class ::WaypointMobilityModelNotifyTest; // To allow Update() calls and access to m_current
/**
* Update the underlying state corresponding to the stored waypoints
*/
virtual void Update (void) const;
/**
* \brief The dispose method.
*
* Subclasses must override this method.
*/
virtual void DoDispose (void);
/**
* \brief Get current position.
* \return A vector with the current position of the node.
*/
virtual Vector DoGetPosition (void) const;
/**
* \brief Sets a new position for the node
* \param position A vector to be added as the new position
*/
virtual void DoSetPosition (const Vector &position);
/**
* \brief Returns the current velocity of a node
* \return The velocity vector of a node.
*/
virtual Vector DoGetVelocity (void) const;
protected:
/**
* \brief This variable is set to true if there are no waypoints in the std::deque
*/
bool m_first;
/**
* \brief If true, course change updates are only notified when position
* is calculated.
*/
bool m_lazyNotify;
/**
* \brief If true, calling SetPosition with no waypoints creates a waypoint
*/
bool m_initialPositionIsWaypoint;
/**
* \brief The double ended queue containing the ns3::Waypoint objects
*/
mutable std::deque<Waypoint> m_waypoints;
/**
* \brief The ns3::Waypoint currently being used
*/
mutable Waypoint m_current;
/**
* \brief The next ns3::Waypoint in the deque
*/
mutable Waypoint m_next;
/**
* \brief The current velocity vector
*/
mutable Vector m_velocity;
};
} // namespace ns3
#endif /* WAYPOINT_MOBILITY_MODEL_H */
|