forked from Courseplay/courseplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mode1.lua
58 lines (50 loc) · 2.81 KB
/
mode1.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
local max = math.max;
-- handles "mode1" : waiting at start until tippers full - driving course and unloading on trigger
function courseplay:handle_mode1(vehicle, allowedToDrive)
-- done tipping
if vehicle.cp.currentTipTrigger and vehicle.cp.tipperFillLevel == 0 then
courseplay:resetTipTrigger(vehicle, true);
end
-- tippers are not full
if vehicle.cp.isLoaded ~= true and ((vehicle.cp.waypointIndex == 2 and vehicle.cp.tipperFillLevel < vehicle.cp.tipperCapacity and vehicle.cp.isUnloaded == false) or vehicle.cp.trailerFillDistance) then
allowedToDrive = courseplay:load_tippers(vehicle, allowedToDrive);
courseplay:setInfoText(vehicle, string.format("COURSEPLAY_LOADING_AMOUNT;%d;%d",courseplay.utils:roundToLowerInterval(vehicle.cp.tipperFillLevel, 100),vehicle.cp.tipperCapacity));
end
-- damn, I missed the trigger!
if vehicle.cp.currentTipTrigger ~= nil then
local t = vehicle.cp.currentTipTrigger;
local trigger_id = t.triggerId;
if t.specialTriggerId ~= nil then
trigger_id = t.specialTriggerId;
end;
if t.isPlaceableHeapTrigger then
trigger_id = t.rootNode;
end;
if trigger_id ~= nil then
local trigger_x, trigger_y, trigger_z = getWorldTranslation(trigger_id)
local ctx, cty, ctz = getWorldTranslation(vehicle.cp.DirectionNode);
local distToTrigger = courseplay:distance(ctx, ctz, trigger_x, trigger_z);
-- Start reversing value is to check if we have started to reverse
-- This is used in case we already registered a tipTrigger but changed the direction and might not be in that tipTrigger when unloading. (Bug Fix)
local startReversing = vehicle.Waypoints[vehicle.cp.waypointIndex].rev and not vehicle.Waypoints[vehicle.cp.previousWaypointIndex].rev;
if startReversing then
courseplay:debug(string.format("%s: Is starting to reverse. Tip trigger is reset.", nameNum(vehicle)), 13);
end;
local isBGA = t.bunkerSilo ~= nil and t.bunkerSilo.movingPlanes ~= nil
local triggerLength = Utils.getNoNil(vehicle.cp.currentTipTrigger.cpActualLength,20)
local maxDist = isBGA and (vehicle.cp.totalLength + 55) or (vehicle.cp.totalLength + triggerLength);
if distToTrigger > maxDist or startReversing then --it's a backup, so we don't need to care about +/-10m
courseplay:resetTipTrigger(vehicle);
courseplay:debug(string.format("%s: distance to currentTipTrigger = %d (> %d or start reversing) --> currentTipTrigger = nil", nameNum(vehicle), distToTrigger, maxDist), 1);
end
else
courseplay:resetTipTrigger(vehicle);
end;
end;
-- tipper is not empty and tractor reaches TipTrigger
if vehicle.cp.tipperFillLevel > 0 and vehicle.cp.currentTipTrigger ~= nil and vehicle.cp.waypointIndex > 3 then
allowedToDrive = courseplay:unload_tippers(vehicle, allowedToDrive);
courseplay:setInfoText(vehicle, "COURSEPLAY_TIPTRIGGER_REACHED");
end;
return allowedToDrive;
end;