-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathuavmission.cpp
More file actions
76 lines (60 loc) · 2.23 KB
/
Copy pathuavmission.cpp
File metadata and controls
76 lines (60 loc) · 2.23 KB
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
#include "uavmission.h"
#include "DroneClass.h"
// ── Constructor ──────────────────────────────────────────────────────
UAVMission::UAVMission(DroneClass* uav, MissionType type)
: m_uav(uav)
, m_missionType(type)
, m_numWaypoints(0)
, m_creationTime(QDateTime::currentDateTime())
{
}
// ── Drone getters ────────────────────────────────────────────────────
DroneClass* UAVMission::getUAV() const
{
return m_uav;
}
// Returns the xbeeAddress of the associated drone, used as the mission key
QString UAVMission::getUAVID() const
{
if (!m_uav)
return QString();
return m_uav->getXbeeAddress();
}
// ── Mission type ─────────────────────────────────────────────────────
MissionType UAVMission::getMissionType() const
{
return m_missionType;
}
// ── Waypoint getters ─────────────────────────────────────────────────
int UAVMission::getNumWaypoints() const
{
return m_numWaypoints;
}
QList<Waypoint> UAVMission::getWaypoints() const
{
return m_waypoints;
}
// ── Waypoint mutators ────────────────────────────────────────────────
void UAVMission::addWaypoint(const Waypoint& wp)
{
m_waypoints.append(wp);
m_numWaypoints++;
}
void UAVMission::removeFirst()
{
if (!m_waypoints.isEmpty()) {
m_waypoints.removeFirst();
m_numWaypoints--;
}
}
void UAVMission::clearWaypoints()
{
m_waypoints.clear();
m_numWaypoints = 0;
}
// ── Mission timing ───────────────────────────────────────────────────
// Elapsed seconds since mission creation
float UAVMission::getRuntime() const
{
return m_creationTime.msecsTo(QDateTime::currentDateTime()) / 1000.0f;
}