-
Notifications
You must be signed in to change notification settings - Fork 22
/
formgps_sim.cpp
76 lines (65 loc) · 2.5 KB
/
formgps_sim.cpp
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 "formgps.h"
#include "classes/csim.h"
#include "qmlutil.h"
#include "aogproperty.h"
/* Callback for Simulator new position */
void FormGPS::simConnectSlots()
{
connect(&sim,SIGNAL(setActualSteerAngle(double)),this,SLOT(onSimNewSteerAngle(double)));
connect(&sim,SIGNAL(newPosition(double,double,double,double,double,double,double)),
this,SLOT(onSimNewPosition(double,double,double,double,double,double,double)),
Qt::UniqueConnection);
connect(&timerSim,SIGNAL(timeout()),this,SLOT(onSimTimerTimeout()),Qt::UniqueConnection);
connect(&timerSim,SIGNAL(timeout()),this,SLOT(onSimTimerTimeout()),Qt::UniqueConnection);
if (property_setMenu_isSimulatorOn) {
pn.latitude = sim.latitude;
pn.longitude = sim.longitude;
pn.headingTrue = 0;
timerSim.start(100); //fire simulator every 100 ms.
gpsHz = 10;
}
}
void FormGPS::onSimNewPosition(double vtgSpeed,
double headingTrue,
double latitude,
double longitude, double hdop,
double altitude,
double satellitesTracked)
{
pn.vtgSpeed = vtgSpeed;
vehicle.AverageTheSpeed(vtgSpeed);
pn.headingTrue = pn.headingTrueDual = headingTrue;
//ahrs.imuHeading = pn.headingTrue;
//if (ahrs.imuHeading > 360) ahrs.imuHeading -= 360;
ahrs.imuHeading = 99999;
pn.ConvertWGS84ToLocal(latitude,longitude,pn.fix.northing,pn.fix.easting);
pn.latitude = latitude;
pn.longitude = longitude;
pn.hdop = hdop;
pn.altitude = altitude;
pn.satellitesTracked = satellitesTracked;
sentenceCounter = 0;
//qWarning() << "Acted on new position.";
UpdateFixPosition();
}
void FormGPS::onSimNewSteerAngle(double steerAngleAve)
{
mc.actualSteerAngleDegrees = steerAngleAve;
}
/* iterate the simulator on a timer */
void FormGPS::onSimTimerTimeout()
{
//qWarning() << "sim tick.";
QObject *qmlobject;
//double stepDistance = qmlobject->property("value").toReal() / 10.0 /gpsHz;
//sim.setSimStepDistance(stepDistance);
if (recPath.isDrivingRecordedPath || (isAutoSteerBtnOn && (vehicle.guidanceLineDistanceOff !=32000)))
{
sim.DoSimTick(vehicle.guidanceLineSteerAngle * 0.01);
} else {
//TODO redirect through AOGInterface
qmlobject = qmlItem(qml_root, "simSteer");
double steerAngle = (qmlobject->property("value").toReal() - 300) * 0.1;
sim.DoSimTick(steerAngle); //drive straight for now until UI
}
}