-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathCloudLocation.h
103 lines (90 loc) · 3.15 KB
/
CloudLocation.h
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
//
// This file is part of ArduinoCloudThing
//
// Copyright 2019 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of ArduinoCloudThing.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to modify or
// otherwise use the software for commercial activities involving the Arduino
// software without disclosing the source code of your own applications. To purchase
// a commercial license, send an email to license@arduino.cc.
//
#ifndef CLOUDLOCATION_H_
#define CLOUDLOCATION_H_
/******************************************************************************
INCLUDE
******************************************************************************/
#include <math.h>
#include <Arduino.h>
#include "../Property.h"
/******************************************************************************
CLASS DECLARATION
******************************************************************************/
class Location {
public:
float lat,
lon;
Location(float lat, float lon) : lat(lat), lon(lon) {}
Location& operator=(Location& aLocation) {
lat = aLocation.lat;
lon = aLocation.lon;
return *this;
}
Location operator-(Location& aLocation) {
return Location(lat - aLocation.lat, lon - aLocation.lon);
}
bool operator==(Location& aLocation) {
return lat == aLocation.lat && lon == aLocation.lon;
}
bool operator!=(Location& aLocation) {
return !(operator==(aLocation));
}
static float distance(Location& loc1, Location& loc2) {
return sqrt(pow(loc1.lat - loc2.lat, 2) + pow(loc1.lon - loc2.lon, 2));
}
};
class CloudLocation : public Property {
private:
Location _value,
_cloud_value;
public:
CloudLocation() : _value(0, 0), _cloud_value(0, 0) {}
CloudLocation(float lat, float lon) : _value(lat, lon), _cloud_value(lat, lon) {}
virtual bool isDifferentFromCloud() {
float const distance = Location::distance(_value, _cloud_value);
return _value != _cloud_value && (abs(distance) >= Property::_min_delta_property);
}
CloudLocation& operator=(Location aLocation) {
_value.lat = aLocation.lat;
_value.lon = aLocation.lon;
updateLocalTimestamp();
return *this;
}
Location getCloudValue() {
return _cloud_value;
}
Location getValue() {
return _value;
}
virtual void fromCloudToLocal() {
_value = _cloud_value;
}
virtual void fromLocalToCloud() {
_cloud_value = _value;
}
virtual CborError appendAttributesToCloud(CborEncoder *encoder) {
CHECK_CBOR_MULTI(appendAttribute(_value.lat, "lat", encoder));
CHECK_CBOR_MULTI(appendAttribute(_value.lon, "lon", encoder));
return CborNoError;
}
virtual void setAttributesFromCloud() {
setAttribute(_cloud_value.lat, "lat");
setAttribute(_cloud_value.lon, "lon");
}
};
#endif /* CLOUDLOCATION_H_ */