forked from Courseplay/courseplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recording.lua
347 lines (302 loc) · 15 KB
/
recording.lua
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
local curFile = 'recording.lua';
local abs, atan2, ceil, deg, floor, rad = math.abs, math.atan2, math.ceil, math.deg, math.floor, math.rad;
-- records waypoints for course
function courseplay:record(vehicle)
local cx, cy, cz = getWorldTranslation(vehicle.cp.DirectionNode);
local newAngle = courseplay:currentVehAngle(vehicle);
if vehicle.cp.waypointIndex < 2 then
vehicle.rotatedTime = 0
elseif not vehicle.cp.isRecordingTurnManeuver then
local prevPoint = vehicle.Waypoints[vehicle.cp.waypointIndex - 1];
local prevCx, prevCz, prevAngle = prevPoint.cx, prevPoint.cz, prevPoint.angle;
local dist = courseplay:distance(cx, cz, prevCx, prevCz);
if vehicle.cp.waypointIndex <= 3 then
vehicle.cp.recordingTimer = dist > (vehicle.cp.waypointIndex == 3 and 20 or 10) and 101 or 1;
else
local angleDiff = abs(newAngle - prevAngle);
if vehicle.cp.drivingDirReverse == true then
if dist > 2 and (angleDiff > 1.5 or dist > 10) then
vehicle.cp.recordingTimer = 101;
end;
else
if dist > 5 and (angleDiff > 5 or dist > 10) then
vehicle.cp.recordingTimer = 101;
end;
end;
end;
end;
vehicle.cp.curSpeed = ceil(vehicle.lastSpeedReal*3600)
if vehicle.cp.recordingTimer > 100 then
local rev = courseplay:trueOrNil(vehicle.cp.drivingDirReverse);
local crossing = courseplay:trueOrNil(vehicle.cp.waypointIndex == 1);
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, newAngle, nil, rev, crossing, vehicle.cp.curSpeed);
local signType = vehicle.cp.waypointIndex == 1 and "start" or nil;
courseplay.signs:addSign(vehicle, signType, cx, cz, nil, newAngle, nil, nil, 'regular');
vehicle.cp.recordingTimer = 1;
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
end;
end;
function courseplay:set_waitpoint(vehicle)
local cx, cy, cz = getWorldTranslation(vehicle.cp.DirectionNode);
local newAngle = courseplay:currentVehAngle(vehicle);
local wait = true;
local rev = courseplay:trueOrNil(vehicle.cp.drivingDirReverse);
local crossing = nil;
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, newAngle, wait, rev, crossing, 0);
vehicle.cp.recordingTimer = 1
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
vehicle.cp.numWaitPoints = vehicle.cp.numWaitPoints + 1;
courseplay.signs:addSign(vehicle, 'wait', cx, cz, nil, newAngle, nil, nil, 'regular');
end
function courseplay:set_crossing(vehicle, stop)
local cx, cy, cz = getWorldTranslation(vehicle.cp.DirectionNode);
local newAngle = courseplay:currentVehAngle(vehicle);
local wait = nil;
local rev = courseplay:trueOrNil(vehicle.cp.drivingDirReverse);
local crossing = true;
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, newAngle, wait, rev, crossing, vehicle.cp.curSpeed);
vehicle.cp.recordingTimer = 1
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
vehicle.cp.numCrossingPoints = vehicle.cp.numCrossingPoints + 1
if stop ~= nil then
courseplay.signs:addSign(vehicle, 'stop', cx, cz, nil, newAngle, nil, nil, 'regular');
else
courseplay.signs:addSign(vehicle, 'cross', cx, cz, nil, newAngle);
courseplay.signs:addSign(vehicle, 'normal', cx, cz, nil, newAngle, nil, nil, 'regular');
end
end
-- starts course recording -- just setting variables
function courseplay:start_record(vehicle)
-- courseplay:clearCurrentLoadedCourse(vehicle)
courseplay:setIsRecording(vehicle, true);
courseplay:setRecordingIsPaused(vehicle, false);
vehicle:setIsCourseplayDriving(false);
vehicle.cp.loadedCourses = {}
courseplay:setWaypointIndex(vehicle, 1);
vehicle.cp.numWaitPoints = 0;
vehicle.cp.numCrossingPoints = 0;
vehicle.cp.recordingTimer = 101;
vehicle.cp.drivingDirReverse = false;
courseplay.signs:updateWaypointSigns(vehicle, "current");
courseplay:validateCanSwitchMode(vehicle);
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
end
-- stops course recording -- just setting variables
function courseplay:stop_record(vehicle)
courseplay:set_crossing(vehicle, true);
courseplay:setIsRecording(vehicle, false);
courseplay:setRecordingIsPaused(vehicle, false);
vehicle:setIsCourseplayDriving(false);
vehicle.cp.distanceCheck = false;
vehicle:setCpVar('canDrive',true,courseplay.isClient);
vehicle:setCpVar('numWaypoints', vehicle.cp.waypointIndex - 1,courseplay.isClient);
courseplay:setWaypointIndex(vehicle, 1);
vehicle.cp.numCourses = 1;
courseplay:validateCourseGenerationData(vehicle);
courseplay:validateCanSwitchMode(vehicle);
courseplay.signs:updateWaypointSigns(vehicle);
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
-- SETUP 2D COURSE DRAW DATA
vehicle.cp.course2dUpdateDrawData = true;
end;
function courseplay:setRecordingPause(vehicle)
if vehicle.cp.waypointIndex > 3 then
courseplay:setIsRecording(vehicle, not vehicle.cp.isRecording);
courseplay:setRecordingIsPaused(vehicle, not vehicle.cp.recordingIsPaused);
if vehicle.cp.recordingIsPaused then
vehicle.cp.hud.recordingPauseButton:setToolTip(courseplay:loc('COURSEPLAY_RECORDING_PAUSE_RESUME'));
else
vehicle.cp.hud.recordingPauseButton:setToolTip(courseplay:loc('COURSEPLAY_RECORDING_PAUSE'));
end;
vehicle:setCpVar('distanceCheck',vehicle.cp.recordingIsPaused,courseplay.isClient);
local oldSignIndex = #vehicle.cp.signs.current;
local oldSignType = vehicle.cp.signs.current[oldSignIndex].type;
local newSignType = vehicle.cp.recordingIsPaused and 'stop' or 'normal'; --change last sign to "stop"/"normal"
courseplay.signs:changeSignType(vehicle, oldSignIndex, oldSignType, newSignType);
courseplay:validateCanSwitchMode(vehicle);
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
end;
end;
function courseplay:setRecordingTurnManeuver(vehicle)
vehicle.cp.isRecordingTurnManeuver = not vehicle.cp.isRecordingTurnManeuver;
if vehicle.cp.isRecordingTurnManeuver then
vehicle.cp.hud.recordingTurnManeuverButton:setToolTip(courseplay:loc('COURSEPLAY_RECORDING_TURN_END'));
else
vehicle.cp.hud.recordingTurnManeuverButton:setToolTip(courseplay:loc('COURSEPLAY_RECORDING_TURN_START'));
end;
courseplay:debug(string.format('%s: set "isRecordingTurnManeuver" to %s', nameNum(vehicle), tostring(vehicle.cp.isRecordingTurnManeuver)), 16);
local cx, cy, cz = getWorldTranslation(vehicle.cp.DirectionNode);
local newAngle = courseplay:currentVehAngle(vehicle);
local wait, rev, crossing = nil, nil, nil;
if vehicle.cp.isRecordingTurnManeuver then
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, newAngle, wait, rev, crossing, vehicle.cp.curSpeed, "noDirection", true, nil);
else
local preTurnStartPoint = vehicle.Waypoints[vehicle.cp.waypointIndex - 2];
local turnStartPoint = vehicle.Waypoints[vehicle.cp.waypointIndex - 1];
local vx1,vz1 = turnStartPoint.cx - preTurnStartPoint.cx, turnStartPoint.cz - preTurnStartPoint.cz;
local vx2,vz2 = cx - turnStartPoint.cx, cz - turnStartPoint.cz;
local vx3,vz3 = cx - preTurnStartPoint.cx, cz - preTurnStartPoint.cz;
local vl1,vl2,vl3 = Utils.vector2Length(vx1,vz1), Utils.vector2Length(vx2,vz2), Utils.vector2Length(vx3,vz3);
local dir1X, dir1Z = vx1/vl1, vz1/vl1;
local dir2X, dir2Z = vx2/vl2, vz2/vl2;
--local relativeDirX = (dir1Z * dir2X) - (dir1X * dir2Z); --usually: z: upwards positive, downwards negative
local relativeDirX = (dir1X * dir2Z) - (dir1Z * dir2X); --GIANTS: z: downwards positive, upwards negative --> inverse calcuation
local turnDirStr = 'noDirection';
if relativeDirX > 0 then
turnDirStr = 'right';
elseif relativeDirX < 0 then
turnDirStr = 'left';
end;
local minUpVerticalHypotenuse = Utils.vector2Length(vl1, vl2);
local turnVerticalDirStr = 'level';
if vl3 > minUpVerticalHypotenuse then
turnVerticalDirStr = 'up';
else
turnVerticalDirStr = 'down';
end;
vehicle.Waypoints[vehicle.cp.waypointIndex - 1].turn = turnDirStr; --set turnStart point's turn direction
if courseplay.debugChannels[16] then
local printStr = '';
printStr = printStr .. string.format('\tvx1,vz1=%.2f,%.2f\n', vx1,vz1);
printStr = printStr .. string.format('\tvx2,vz2=%.2f,%.2f\n', vx2,vz2);
printStr = printStr .. string.format('\tvl1,vl2=%.2f,%.2f\n', vl1,vl2);
printStr = printStr .. string.format('\tdir1X,dir1Z=%.3f,%.3f\n', dir1X,dir1Z);
printStr = printStr .. string.format('\tdir2X,dir2Z=%.3f,%.3f\n', dir2X,dir2Z);
printStr = printStr .. string.format('\trelativeDirX=%.3f -> turnDirStr=%q, turnVerticalDirStr=%q', relativeDirX, turnDirStr, turnVerticalDirStr);
print(printStr);
end;
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, newAngle, wait, rev, crossing, vehicle.cp.curSpeed, nil, nil, true);
end;
vehicle.cp.recordingTimer = 1
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
local diamondColor = vehicle.cp.isRecordingTurnManeuver and 'turnStart' or 'turnEnd';
courseplay.signs:addSign(vehicle, 'normal', cx, cz, nil, newAngle, nil, nil, diamondColor);
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
end;
-- set Waypoint before change direction
function courseplay:change_DriveDirection(vehicle)
local cx, cy, cz = getWorldTranslation(vehicle.cp.DirectionNode);
local newAngle = courseplay:currentVehAngle(vehicle);
local wait, crossing = nil, nil;
local rev = courseplay:trueOrNil(vehicle.cp.drivingDirReverse);
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, newAngle, wait, rev, crossing, 0);
vehicle.cp.drivingDirReverse = not vehicle.cp.drivingDirReverse
if vehicle.cp.drivingDirReverse then
vehicle.cp.hud.recordingDriveDirectionButton:setToolTip(courseplay:loc('COURSEPLAY_RECORDING_REVERSE_STOP'));
else
vehicle.cp.hud.recordingDriveDirectionButton:setToolTip(courseplay:loc('COURSEPLAY_RECORDING_REVERSE_START'));
end;
vehicle.cp.recordingTimer = 1
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
courseplay.signs:addSign(vehicle, 'normal', cx, cz, nil, newAngle, nil, nil, 'regular');
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
end
-- delete last waypoint
function courseplay:delete_waypoint(vehicle)
if vehicle.cp.waypointIndex > 3 then
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex - 1);
vehicle.cp.recordingTimer = 1;
--delete last sign
local lastSignIndex = #vehicle.cp.signs.current;
courseplay.signs:moveToBuffer(vehicle, lastSignIndex, vehicle.cp.signs.current[lastSignIndex])
--change new last sign to "stop"
local oldSignIndex = lastSignIndex - 1;
local oldSignType = vehicle.cp.signs.current[oldSignIndex].type;
courseplay.signs:changeSignType(vehicle, oldSignIndex, oldSignType, "stop");
vehicle.Waypoints[vehicle.cp.waypointIndex] = nil
vehicle.cp.numWaypoints = vehicle.cp.waypointIndex
end;
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
end;
-- clears current course -- just setting variables
function courseplay:clearCurrentLoadedCourse(vehicle)
courseplay.courses:resetMerged();
courseplay:setWaypointIndex(vehicle, 1);
vehicle.cp.curTarget.x, vehicle.cp.curTarget.y, vehicle.cp.curTarget.z = nil, nil, nil;
vehicle.cp.nextTargets = {};
if vehicle.cp.activeCombine ~= nil then
courseplay:unregisterFromCombine(vehicle, vehicle.cp.activeCombine)
end
vehicle.cp.loadedCourses = {}
vehicle:setCpVar('currentCourseName',nil,courseplay.isClient)
courseplay:setModeState(vehicle, 1);
if vehicle.cp.mode == courseplay.MODE_COMBI or vehicle.cp.mode == courseplay.MODE_OVERLOADER then
courseplay:setModeState(vehicle, 0);
end;
vehicle.cp.recordingTimer = 1
vehicle.Waypoints = {}
vehicle:setCpVar('canDrive',false,courseplay.isClient);
vehicle.cp.abortWork = nil
courseplay:resetTipTrigger(vehicle);
vehicle.cp.lastMergedWP = 1;
vehicle.cp.numCourses = 0;
vehicle.cp.numWaypoints = 0;
vehicle.cp.numWaitPoints = 0;
vehicle.cp.waitPoints = {};
vehicle.cp.hasGeneratedCourse = false;
courseplay:validateCourseGenerationData(vehicle);
courseplay:validateCanSwitchMode(vehicle);
courseplay.signs:updateWaypointSigns(vehicle, "current");
vehicle.cp.hud.clearCurrentCourseButton1:setHovered(false);
vehicle.cp.hud.clearCurrentCourseButton2:setHovered(false);
vehicle.cp.hud.clearCurrentCourseButton8:setHovered(false);
-- remove 2D course data
vehicle.cp.course2dDimensions = nil;
vehicle.cp.course2dDrawData = nil;
vehicle.cp.course2dBackground = nil;
end;
function courseplay:currentVehAngle(vehicle)
local x, y, z = localDirectionToWorld(vehicle.cp.DirectionNode, 0, 0, 1);
local length = Utils.vector2Length(x, z);
local dx, dz = x/length, z/length;
local angleRad = Utils.getYRotationFromDirection(dx, dz);
local angleDeg = deg(angleRad);
return angleDeg, angleRad;
end;
function courseplay:setIsRecording(vehicle, isRecording)
if vehicle.cp.isRecording ~= isRecording then
vehicle.cp.isRecording = isRecording;
end;
end;
function courseplay:setRecordingIsPaused(vehicle, pause)
if vehicle.cp.recordingIsPaused ~= pause then
vehicle.cp.recordingIsPaused = pause;
end;
end;
function courseplay:setNewWaypointFromRecording(vehicle, cx, cz, angle, wait, rev, crossing, speed, turn, turnStart, turnEnd)
vehicle.Waypoints[vehicle.cp.waypointIndex] = { cx = cx, cz = cz, angle = angle, wait = wait, rev = rev, crossing = crossing, speed = speed, turn = turn, turnStart = turnStart, turnEnd = turnEnd };
courseplay:debug(string.format('%s: recording: set new waypoint (#%d): cx,cz=%.1f,%.1f, angle=%.1f, wait=%s, rev=%s, crossing=%s, speed=%.5f, turn=%s, turnStart=%s, turnEnd=%s', nameNum(vehicle), vehicle.cp.waypointIndex, cx, cz, angle, tostring(wait), tostring(rev), tostring(crossing), speed, tostring(turn), tostring(turnStart), tostring(turnEnd)), 16);
vehicle.cp.numWaypoints = vehicle.cp.waypointIndex
end;
function courseplay:addSplitRecordingPoints(vehicle)
local cx, cy, cz = getWorldTranslation(vehicle.cp.DirectionNode);
local prevPoint = vehicle.Waypoints[vehicle.cp.waypointIndex - 1];
local prevCx, prevCz = prevPoint.cx, prevPoint.cz;
local dist = courseplay:distance(cx, cz, prevCx, prevCz);
local numPointsNeeded = ceil(dist / 5) - 1;
local dx, dz = (cx - prevCx) / dist, (cz - prevCz) / dist;
local angle = deg(Utils.getYRotationFromDirection(dx, dz));
local speed = prevPoint.speed;
courseplay:debug(('%s: addSplitRecordingPoints: dist=%.1f, numPointsNeeded=%d, angle=%.1f, speed=%.1f'):format(nameNum(vehicle), dist, numPointsNeeded, angle, speed), 16);
-- change previous point sign from 'stop' to 'normal'
local oldSignIndex = #vehicle.cp.signs.current;
local oldSignType = vehicle.cp.signs.current[oldSignIndex].type;
local newSignType = 'normal';
courseplay.signs:changeSignType(vehicle, oldSignIndex, oldSignType, newSignType);
if numPointsNeeded > 0 then
local x, z;
for i=1, numPointsNeeded do
x = prevCx + (i * 5 * dx);
z = prevCz + (i * 5 * dz);
courseplay:setNewWaypointFromRecording(vehicle, x, z, angle, nil, nil, nil, speed);
courseplay.signs:addSign(vehicle, nil, x, z, nil, angle, nil, nil, 'regular');
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
end;
end;
-- add current position as last new point
courseplay:setNewWaypointFromRecording(vehicle, cx, cz, angle, nil, nil, nil, speed);
courseplay.signs:addSign(vehicle, 'stop', cx, cz, nil, angle);
vehicle.cp.recordingTimer = 1;
courseplay:setWaypointIndex(vehicle, vehicle.cp.waypointIndex + 1);
courseplay.buttons:setActiveEnabled(vehicle, 'recording');
end;