This repository has been archived by the owner on May 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 528
/
CombineUnloadManager.lua
607 lines (537 loc) · 21.5 KB
/
CombineUnloadManager.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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
--[[
This file is part of Courseplay (https://github.com/Courseplay/courseplay)
Copyright (C) 2020 Thomas Gärtner, Peter Vaiko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
]]
--[[
The CombineUnloadManager dispatches idle unloaders to unload combines.
The combine-unloader association is a many to many association, a combine
can have any number of unloaders, an unloader can have any number of
combines associated with it.
Association is driven by the unloader's HUD where the user selects one or
multiple combines.
When an unloader is done with unloading a combine and has free capacity,
or just returned from the unload course, it asks the CombineUnloadManager
for a combine to unload.
Based on the current situation the CombineUnloadManager may assign a combine
to the unloader but also may just tell it there's nothing to unload
at the moment.
]]--
---@class CombineUnloadmanager
CombineUnloadManager = CpObject()
-- Constructor
function CombineUnloadManager:init()
self.combines = {}
self.unloadersOnFields ={}
self:addNewCombines()
end
function CombineUnloadManager:addNewCombines()
if g_currentMission then
-- this isn't needed as combines will be added when an CombineAIDriver is created for them
-- but we want to be able to reload this file on the fly when developing/troubleshooting
for _, vehicle in pairs(g_currentMission.vehicles) do
if vehicle.cp and vehicle.cp.driver and vehicle.cp.driver.isACombineAIDriver and not self.combines[vehicle] then
self:addCombineToList(vehicle, vehicle.cp.driver)
end
end
end
end
--- Debug is enabled in mode 2 and 3
function CombineUnloadManager:debugEnabled()
return courseplay.debugChannels[courseplay.DBG_MODE_2] or courseplay.debugChannels[courseplay.DBG_MODE_3]
end
function CombineUnloadManager:debug(...)
if self:debugEnabled() then
courseplay.debugFormat(courseplay.DBG_MODE_2, 'CombineUnloadManager: ' .. string.format( ... ))
end
end
function CombineUnloadManager:debugSparse(...)
if g_updateLoopIndex % 110 == 0 then
self:debug(...)
end
end
function CombineUnloadManager:addCombineToList(vehicle, driver)
if vehicle:getPropertyState() == Vehicle.PROPERTY_STATE_SHOP_CONFIG then
return
end
-- the object with the combine specialization, this is the same as the vehicle for choppers and combines
-- but will point to the implement if it is a towed/mounted harvester
local combineObject = driver:getCombine()
-- overloaders also use the CombineAIDriver, but they don't have a combine object
if not combineObject then return end
self:debug('added %s to list (combine object %s)', vehicle.name, combineObject.name)
self.combines[vehicle]= {
driver = driver,
combineObject = combineObject,
isChopper = courseplay:isChopper(combineObject),
isCombine = (courseplay:isCombine(combineObject) or combineObject.isPremos) and not courseplay:isChopper(combineObject),
isOnFieldNumber = 0;
fillLevel = 0;
fillLevelPct = 0;
capacity = combineObject:getFillUnitCapacity(1);
leftOkToDrive = false;
rightOKToDrive = false;
pipeOffset = 0;
fillLitersPerSecond = 0;
lastCheckedFillLevel = 0;
lastCheckedTime = 0;
unloaders = {};
}
end
function CombineUnloadManager:printStatus()
for combine,attributes in pairs (self.combines) do
self:debug('%s unloaders:', nameNum(combine))
for _, unloader in ipairs(attributes.unloaders) do
self:debug(' %s', nameNum(unloader))
end
end
end
function CombineUnloadManager:removeCombineFromList(combine)
if self.combines[combine] then
self:debug("removed %s from list", tostring(combine.name))
self.combines[combine] = nil
end
end
function CombineUnloadManager:getUnloaderIndex(unloader, combine)
for i=1, #self.combines[combine].unloaders do
if self.combines[combine].unloaders[i] == unloader then
return i
end
end
end
function CombineUnloadManager:releaseUnloaderFromCombine(unloader, combine, noEventSend)
if self.combines[combine] then
local ix = self:getUnloaderIndex(unloader, combine)
if ix then
self:debug('Released unloader %s from %s', nameNum(unloader), nameNum(combine))
table.remove(self.combines[combine].unloaders, ix)
if not noEventSend then
UnloaderEvents:sendReleaseUnloaderEvent(unloader,combine)
end
end
end
end
function CombineUnloadManager:addUnloaderToCombine(unloader,combine,noEventSend)
if not self:getUnloaderIndex(unloader, combine) then
table.insert(self.combines[combine].unloaders, unloader)
self:debug('assigned %s to combine %s as #%d', nameNum(unloader), nameNum(combine), #self.combines[combine].unloaders)
if not noEventSend then
UnloaderEvents:sendAddUnloaderToCombine(unloader,combine)
end
combine.cp.driver:refreshHUD()
else
self:debug('%s is already assigned to combine %s as number %d', nameNum(unloader), nameNum(combine), #self.combines[combine].unloaders)
end
end
function CombineUnloadManager:giveMeACombineToUnload(unloader)
--first try to find a chopper
local chopper = self:getChopperWithLeastUnloaders(unloader)
if chopper ~= nil and chopper.cp.driver:getFieldworkCourse() then
local nUnloaders = self:getNumUnloaders(chopper)
if nUnloaders == 0 then
-- chopper has no unloader yet
self:addUnloaderToCombine(unloader, chopper)
return chopper
else
local num = self:getUnloadersNumber(unloader, chopper)
if num then
-- awesome, we are on the list already.
self:debug('%s already assigned to %s as #%d', nameNum(unloader), nameNum(chopper), num)
return chopper
end
if nUnloaders == 1 then
local otherUnloader = self:getUnloaderByNumber(nUnloaders, chopper)
-- when unloading choppers, the 'start at fill level' settings for the second unloader is the fill
-- level of the currently active unloader must reach before we start driving to the chopper
if otherUnloader.cp.driver:getFillLevelPercent() > unloader.cp.driver:getFillLevelThreshold() then
-- other unloader has already reached the fill level needed
self:addUnloaderToCombine(unloader, chopper)
return chopper
else
self:debug('Other unloader %s fill level not reached, not assigning %s as second unloader to %s',
nameNum(otherUnloader), nameNum(unloader), nameNum(chopper))
end
else
-- we only allow 2 unloaders for a chopper, one actively unloading and a second one ready to take
-- over.
self:debug('%s has already 2 unloaders, not adding %s', nameNum(chopper), nameNum(unloader))
end
end
end
--then try to find a combine
local combine = self:getCombineWithMostFillLevel(unloader)
self:debug('Combine with most fill level is %s', nameNum(combine))
local bestUnloader
if combine ~= nil and combine.cp.driver:getFieldworkCourse() then
if combine.cp.settings.requestUnloader:is(true) then
self:addUnloaderToCombine(unloader,combine)
combine.cp.settings.requestUnloader:set(false)
combine.cp.driver:refreshHUD()
return combine
end
local num = self:getUnloadersNumber(unloader, combine)
if num then
-- awesome, we are on the list already.
self:debug('%s already assigned to %s as #%d', nameNum(unloader), nameNum(combine), num)
return combine
end
local unloaders = self:getIdleUnloaders(combine)
if combine.cp.settings.driverPriorityUseFillLevel:is(true) then
bestUnloader = self:getFullestUnloader(combine, unloaders)
self:debug('Priority fill level, best unloader %s', bestUnloader and nameNum(bestUnloader) or 'N/A')
else
bestUnloader = self:getClosestUnloader(combine, unloaders)
self:debug('Priority closest, best unloader %s', bestUnloader and nameNum(bestUnloader) or 'N/A')
end
if bestUnloader == unloader then
local combineFillLevelPercent = self:getCombinesFillLevelPercent(combine)
local willWait = combine.cp.driver:willWaitForUnloadToFinish()
if combineFillLevelPercent > unloader.cp.driver:getFillLevelThreshold() or willWait then
self:debug("%s: fill level %.1f (unloader threshold %.1f), waiting for unload", nameNum(combine),
combineFillLevelPercent, unloader.cp.driver:getFillLevelThreshold())
self:addUnloaderToCombine(unloader, combine)
return combine
else
self:debug("%s: fill level %.1f (unloader threshold %.1f), combine will wait %s (no unloader assigned)",
nameNum(combine), combineFillLevelPercent, unloader.cp.driver:getFillLevelThreshold(), tostring(willWait))
return nil, combine
end
else
self:debug('Best unloader %s is not the one requesting (%s)', nameNum(bestUnloader), nameNum(unloader))
end
end
end
function CombineUnloadManager:getChopperWithLeastUnloaders(unloader)
local chopperToReturn
local amountUnloaders = math.huge
for chopper,_ in pairs(unloader.cp.driver:getAssignedCombines()) do
local data = self.combines[chopper]
if data and data.isChopper then
if amountUnloaders > #data.unloaders or #data.unloaders == 0 then
chopperToReturn = chopper
amountUnloaders = #data.unloaders
end
end
end
return chopperToReturn
end
function CombineUnloadManager:getCombineWithMostFillLevel(unloader)
local mostFillLevel = 0
local combineToReturn
for combine, _ in pairs(unloader.cp.driver:getAssignedCombines()) do
local data = self.combines[combine]
-- if there is no unloader assigned or this unloader is already assigned as the first
local numUnloaders = self:getNumUnloaders(combine)
local unloaderIndex = self:getUnloaderIndex(unloader, combine)
local fillLevelPct = combine.cp.driver:getFillLevelPercentage()
local combineReadyToUnload = combine.cp.driver:isReadyToUnload(unloader.cp.settings.useRealisticDriving:is(true))
self:debug('For unloader %s: %s (fill level %.1f, ready to unload: %s) has %d unloaders, this unloader is # %d',
nameNum(unloader), nameNum(combine), fillLevelPct, tostring(combineReadyToUnload), numUnloaders, unloaderIndex or -1)
if data and data.isCombine and (numUnloaders == 0 or unloaderIndex == 1) and combineReadyToUnload then
if combine.cp.settings.requestUnloader:is(true) then
return combine
end
if mostFillLevel < fillLevelPct then
mostFillLevel = fillLevelPct
combineToReturn = combine
end
end
end
return combineToReturn
end
function CombineUnloadManager:getIdleUnloaders(combine)
local unloaders = {}
if g_currentMission then
for _, vehicle in pairs(g_currentMission.vehicles) do
if vehicle.cp.driver and vehicle.cp.driver.isACombineUnloadAIDriver and
vehicle.cp.driver:isWaitingForAssignment() then
-- TODO: refactor and move assignedCombines into the CombineUnloadAIDriver
local assignedCombines = vehicle.cp.driver:getAssignedCombines()
if assignedCombines[combine] then
table.insert(unloaders, vehicle)
end
end
end
end
return unloaders
end
function CombineUnloadManager:getClosestUnloader(combine, unloaders)
local closestDistance = math.huge
local unloaderToReturn
for _, unloader in pairs(unloaders) do
local distance = courseplay:distanceToObject(unloader, combine)
if distance < closestDistance then
closestDistance = distance
unloaderToReturn = unloader
end
end
return unloaderToReturn
end
function CombineUnloadManager:getClosestCombine(unloader)
local closestDistance = math.huge
local combineToReturn
for combine, _ in pairs(self.combines) do
local distance = courseplay:distanceToObject(unloader, combine)
if distance < closestDistance then
closestDistance = distance
combineToReturn = combine
end
end
return combineToReturn
end
function CombineUnloadManager:getFullestUnloader(combine, unloaders)
local highestFillLevel = - math.huge
local unloaderToReturn
for _, unloader in pairs(unloaders) do
local fillLevelPct = unloader.cp.driver:getFillLevelPercent()
if highestFillLevel < fillLevelPct and not self:isAssignedToOtherCombine(unloader, combine) then
highestFillLevel = fillLevelPct
unloaderToReturn = unloader
end
end
return unloaderToReturn
end
function CombineUnloadManager:onUpdate(dt)
self:addNewCombines()
self:removeInactiveCombines()
self:updateCombinesAttributes()
end
--- Remove everyone from the list who does not have a CombineAIDriver (for instance because the mode was changed)
function CombineUnloadManager:removeInactiveCombines()
local vehiclesToRemove = {}
for vehicle, _ in pairs (self.combines) do
if not vehicle.cp.driver or not vehicle.cp.driver.isACombineAIDriver then
table.insert(vehiclesToRemove, vehicle)
end
end
for _, vehicle in ipairs(vehiclesToRemove) do
self:removeCombineFromList(vehicle)
end
end
function CombineUnloadManager:updateCombinesAttributes()
--update attributes
local number =1
for combine,attributes in pairs (self.combines) do
attributes.isOnFieldNumber = self:getFieldNumberByCurrentPosition(combine)
attributes.leftOkToDrive, attributes.rightOKToDrive = self:getOnFieldSituation(combine)
attributes.pipeOffset = self:getPipeOffset(combine)
attributes.fillLevelPct = self:getCombinesFillLevelPercent(combine)
attributes.fillLevel = self:getCombinesFillLevel(combine)
self:updateFillSpeed(combine,attributes)
if self:debugEnabled() then
renderText(0.1,0.175+(0.02*number) ,0.015,
string.format("%s: leftOK: %s; rightOK:%s numUnloaders:%d",
nameNum(combine), tostring(attributes.leftOkToDrive), tostring(attributes.rightOKToDrive),
#attributes.unloaders))
end
number = number + 1
end
end
function CombineUnloadManager:updateFillSpeed(combine,data)
if data.isCombine then
if g_updateLoopIndex % 500 == 0 then
local timeDiff = combine.timer - data.lastCheckedTime
data.lastCheckedTime = combine.timer
local fillDiff = data.fillLevel - data.lastCheckedFillLevel
data.lastCheckedFillLevel = data.fillLevel
data.fillLitersPerSecond = fillDiff/timeDiff*1000 or 0
end
else
data.fillLitersPerSecond = 0
end
end
function CombineUnloadManager:getSecondsTillFull(combine)
local data = self.combines[combine]
local fillDiff = data.capacity -data.fillLevel
local time = fillDiff/ data.fillLitersPerSecond
return time >0 and time or 999
end
function CombineUnloadManager:getIsChopper(chopper)
return self.combines[chopper].isChopper
end
function CombineUnloadManager:getIsCombine(combine)
return self.combines[combine].isCombine
end
function CombineUnloadManager:getCombinesPipeOffset(combine)
return self.combines[combine].pipeOffset
end
function CombineUnloadManager:getPossibleSidesToDrive(combine)
return self.combines[combine].leftOkToDrive, self.combines[combine].rightOKToDrive;
end
function CombineUnloadManager:getFieldNumberByCurrentPosition(vehicle)
local x, _, z = getWorldTranslation(vehicle.rootNode);
return PathfinderUtil.getFieldIdAtWorldPosition(x, z)
end
function CombineUnloadManager:getFieldNumber(vehicle)
if self.combines[vehicle] then
return self.combines[vehicle].isOnFieldNumber
else
return 0
end
end
function CombineUnloadManager:getNumUnloaders(combine)
return self.combines[combine] and #self.combines[combine].unloaders or 0
end
function CombineUnloadManager:getUnloadersNumber(unloader, combine)
for i = 1, #self.combines[combine].unloaders do
if self.combines[combine].unloaders[i] == unloader then
return i
end
end
end
function CombineUnloadManager:getUnloaderByNumber(number, combine)
return self.combines[combine] and self.combines[combine].unloaders[number]
end
function CombineUnloadManager:getHasUnloaders(combine)
return self:getNumUnloaders(combine) > 0
end
--- Is this unloader assigned to a combine other than thisCombine
function CombineUnloadManager:isAssignedToOtherCombine(unloader, thisCombine)
for combine, _ in pairs(self.combines) do
for i = 1, #self.combines[combine].unloaders do
local unloaderToCheck = self.combines[combine].unloaders[i]
if unloader == unloaderToCheck and combine ~= thisCombine then
return true
end
end
end
return false
end
function CombineUnloadManager:getPipeOffset(combine)
if self:getIsChopper(combine) then
return (combine.cp.driver:getWorkWidth() / 2) + 3
elseif self:getIsCombine(combine) then
local pipeOffsetX, _ = combine.cp.driver:getPipeOffset()
return pipeOffsetX
end
return 0
end
function CombineUnloadManager:getPipesBaseNode(combine)
if self:getIsChopper(combine) then
for i=1,#combine.spec_pipe.nodes do
local node = combine.spec_pipe.nodes[i]
if node.autoAimYRotation then
return node.node
end
end
elseif self:getIsCombine(combine) then
if not combine.getCurrentDischargeNode then
-- TODO: cotton harvesters for example don't have one...
return combine.rootNode
end
--TODO find a cleaner way to figure out the getPipesBaseNode
local dischargeNode = combine:getCurrentDischargeNode().node
local lastParent = dischargeNode
while entityExists(lastParent) do
if getName(lastParent) == 'pipe' then
return lastParent
end
lastParent = getParent(lastParent)
end
end
-- if nothing found, use the root node
return combine.rootNode
end
function CombineUnloadManager:getCombinesFillLevelPercent(combine)
local combine = combine.cp.driver:getCombine()
if combine then
if not combine.getCurrentDischargeNode then
-- TODO: cotton harvesters for example don't have one...
return 0
end
local dischargeNode = combine:getCurrentDischargeNode()
return combine:getFillUnitFillLevelPercentage(dischargeNode.fillUnitIndex)*100
else
return 0
end
end
function CombineUnloadManager:getCombinesFillLevel(combine)
local combine = combine.cp.driver:getCombine()
if combine then
if not combine.getCurrentDischargeNode then
-- TODO: cotton harvesters for example don't have one...
return 0
end
local dischargeNode = combine:getCurrentDischargeNode()
return combine:getFillUnitFillLevel(dischargeNode.fillUnitIndex)
else
return 0
end
end
function CombineUnloadManager:getOnFieldSituation(combine)
local offset = self:getPipeOffset(combine)
local node = combine.cp.directionNode or combine.rootNode;
local straightDirX,_,straightDirZ = localDirectionToWorld(node, 0, 0, 1);
local leftDirX,_,leftDirZ = localDirectionToWorld(node, 1, 0, 0);
local rightDirX,_,rightDirZ = localDirectionToWorld(node, -1, 0, 0);
--set measurements of the box to check
local boxWidth = 3;
local boxLength = 6 + combine.cp.driver:getWorkWidth()/2;
--to get the box centered divide the measurements by 2
local boxWidthCenter = boxWidth/2
--get the coords of the 3 left box points
local x, y, z = localToWorld(node, 0, 0, 0)-- -boxLengthCenter+);
local lStartX = x + (leftDirX * (math.abs(offset)-boxWidthCenter))
local lStartZ = z + (leftDirZ * (math.abs(offset)-boxWidthCenter))
local lWidthX = lStartX + (leftDirX*boxWidth);
local lWidthZ = lStartZ + (leftDirZ*boxWidth);
local lHeightX = lStartX + (straightDirX*boxLength);
local lHeightZ = lStartZ + (straightDirZ*boxLength);
--get the coords of the 3 right box points
local rStartX = x + (rightDirX * (math.abs(offset)-boxWidthCenter))
local rStartZ = z + (rightDirZ * (math.abs(offset)-boxWidthCenter))
local rWidthX = rStartX + (rightDirX*boxWidth);
local rWidthZ = rStartZ + (rightDirZ*boxWidth);
local rHeightX = rStartX + (straightDirX*boxLength);
local rHeightZ = rStartZ + (straightDirZ*boxLength);
--fruitType
local fruitType = combine.cp.driver.combine.lastValidInputFruitType
local hasFruit = false
if fruitType == nil or fruitType == 0 then
hasFruit,fruitType = courseplay:areaHasFruit(x, z, nil, math.abs(offset), math.abs(offset))
end
local noFruitOnLeft, noFruitOnRight = true, true
if fruitType ~= 0 and fruitType ~= nil then
local minHarvestable, maxHarvestable = 1, 1
maxHarvestable = g_fruitTypeManager.fruitTypes[fruitType].numGrowthStates
--cpDebug:drawLine(lStartX,y+1,lStartZ, 100, 0, 0, lWidthX,y+1,lWidthZ)
--cpDebug:drawLine(lWidthX,y+1,lWidthZ, 100, 0, 0, lHeightX,y+1,lHeightZ)
--cpDebug:drawLine(lHeightX,y+1,lHeightZ, 100, 0, 0, lStartX,y+1,lStartZ)
--cpDebug:drawLine(rStartX,y+1,rStartZ, 0, 100, 0, rWidthX,y+1,rWidthZ)
--cpDebug:drawLine(rWidthX,y+1,rWidthZ, 0, 100, 0, rHeightX,y+1,rHeightZ)
--cpDebug:drawLine(rHeightX,y+1,rHeightZ, 0, 100, 0, rStartX,y+1,rStartZ)
local leftFruit, totalAreaLeft = FieldUtil.getFruitArea(lStartX, lStartZ, lWidthX, lWidthZ, lHeightX, lHeightZ, {}, {}, fruitType, minHarvestable , maxHarvestable, 0, 0, 0,false);
noFruitOnLeft = leftFruit < totalAreaLeft * 0.05
local rightFruit, totalAreaRight = FieldUtil.getFruitArea(rStartX, rStartZ, rWidthX, rWidthZ, rHeightX, rHeightZ, {}, {}, fruitType, minHarvestable , maxHarvestable, 0, 0, 0,false);
noFruitOnRight = rightFruit < totalAreaRight * 0.05
end
local leftField = courseplay:isField(lWidthX, lWidthZ,0.1,0.1)
local rightField = courseplay:isField(rWidthX, rWidthZ,0.1,0.1)
-- TODO: for now, it isn't ok to drive off the field when following a chopper.
if not self:getIsChopper(combine) then
leftField, rightField = true, true
end
local leftOK = leftField and noFruitOnLeft
local rightOK = rightField and noFruitOnRight
return leftOK, rightOK
end
function CombineUnloadManager:getPossibleCombines(vehicle)
local possibleCombines = {}
for combine,data in pairs (g_combineUnloadManager.combines) do
local selectedField = vehicle.cp.settings.searchCombineOnField:get()
if data.isOnFieldNumber == selectedField or data.isOnFieldNumber == 0 or selectedField ==0 then
table.insert(possibleCombines, combine)
end
end
return possibleCombines
end
g_combineUnloadManager = CombineUnloadManager()