forked from DFHack/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
idle-crafting.lua
674 lines (601 loc) · 20.3 KB
/
idle-crafting.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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
--@module = true
--@enable = true
local overlay = require('plugins.overlay')
local widgets = require('gui.widgets')
local repeatutil = require("repeat-util")
local orders = require('plugins.orders')
---iterate over input materials of workshop with stockpile links
---@param workshop df.building_workshopst
---@param action fun(item:df.item):any
local function for_inputs(workshop, action)
if #workshop.profile.links.take_from_pile == 0 then
dfhack.error('workshop has no links')
else
for _, stockpile in ipairs(workshop.profile.links.take_from_pile) do
for _, item in ipairs(dfhack.buildings.getStockpileContents(stockpile)) do
if item:isAssignedToThisStockpile(stockpile.id) then
for _, contained_item in ipairs(dfhack.items.getContainedItems(item)) do
action(contained_item)
end
else
action(item)
end
end
end
for _, contained_item in ipairs(workshop.contained_items) do
if contained_item.use_mode == df.building_item_role_type.TEMP then
action(contained_item.item)
end
end
end
end
---choose random value based on positive integer weights
---@generic T
---@param choices table<T,integer>
---@return T
function weightedChoice(choices)
local sum = 0
for _, weight in pairs(choices) do
sum = sum + weight
end
if sum <= 0 then
return nil
end
local random = math.random(sum)
for choice, weight in pairs(choices) do
if random > weight then
random = random - weight
else
return choice
end
end
return nil --never reached on well-formed input
end
---create a new linked job
---@return df.job
function make_job()
local job = df.job:new()
dfhack.job.linkIntoWorld(job, true)
return job
end
function assignToWorkshop(job, workshop)
job.pos = xyz2pos(workshop.centerx, workshop.centery, workshop.z)
dfhack.job.addGeneralRef(job, df.general_ref_type.BUILDING_HOLDER, workshop.id)
workshop.jobs:insert("#", job)
end
---make totem at specified workshop
---@param unit df.unit
---@param workshop df.building_workshopst
---@return boolean
function makeTotem(unit, workshop)
local job = make_job()
job.job_type = df.job_type.MakeTotem
job.mat_type = -1
local jitem = df.job_item:new()
jitem.item_type = df.item_type.NONE --the game seems to leave this uninitialized
jitem.mat_type = -1
jitem.mat_index = -1
jitem.quantity = 1
jitem.vector_id = df.job_item_vector_id.ANY_REFUSE
jitem.flags1.unrotten = true
jitem.flags2.totemable = true
jitem.flags2.body_part = true
job.job_items.elements:insert('#', jitem)
assignToWorkshop(job, workshop)
return dfhack.job.addWorker(job, unit)
end
---make totem at specified workshop
---@param unit df.unit
---@param workshop df.building_workshopst
---@return boolean
function makeHornCrafts(unit, workshop)
local job = make_job()
job.job_type = df.job_type.MakeCrafts
job.mat_type = -1
job.material_category.horn = true
local jitem = df.job_item:new()
jitem.item_type = df.item_type.NONE --the game seems to leave this uninitialized
jitem.mat_type = -1
jitem.mat_index = -1
jitem.quantity = 1
jitem.vector_id = df.job_item_vector_id.ANY_REFUSE
jitem.flags1.unrotten = true
jitem.flags2.horn = true
jitem.flags2.body_part = true
job.job_items.elements:insert('#', jitem)
assignToWorkshop(job, workshop)
return dfhack.job.addWorker(job, unit)
end
---make bone crafts at specified workshop
---@param unit df.unit
---@param workshop df.building_workshopst
---@return boolean
function makeBoneCraft(unit, workshop)
local job = make_job()
job.job_type = df.job_type.MakeCrafts
job.mat_type = -1
job.material_category.bone = true
local jitem = df.job_item:new()
jitem.item_type = df.item_type.NONE
jitem.mat_type = -1
jitem.mat_index = -1
jitem.quantity = 1
jitem.vector_id = df.job_item_vector_id.ANY_REFUSE
jitem.flags1.unrotten = true
jitem.flags2.bone = true
jitem.flags2.body_part = true
job.job_items.elements:insert('#', jitem)
assignToWorkshop(job, workshop)
return dfhack.job.addWorker(job, unit)
end
---make shell crafts at specified workshop
---@param unit df.unit
---@param workshop df.building_workshopst
---@return boolean
function makeShellCraft(unit, workshop)
local job = make_job()
job.job_type = df.job_type.MakeCrafts
job.mat_type = -1
job.material_category.shell = true
local jitem = df.job_item:new()
jitem.item_type = df.item_type.NONE
jitem.mat_type = -1
jitem.mat_index = -1
jitem.quantity = 1
jitem.vector_id = df.job_item_vector_id.ANY_REFUSE
jitem.flags1.unrotten = true
jitem.flags2.shell = true
jitem.flags2.body_part = true
job.job_items.elements:insert('#', jitem)
assignToWorkshop(job, workshop)
return dfhack.job.addWorker(job, unit)
end
---make rock crafts at specified workshop
---@param unit df.unit
---@param workshop df.building_workshopst
---@return boolean ""
function makeRockCraft(unit, workshop)
local job = make_job()
job.job_type = df.job_type.MakeCrafts
job.mat_type = 0
local jitem = df.job_item:new()
jitem.item_type = df.item_type.BOULDER
jitem.mat_type = 0
jitem.mat_index = -1
jitem.quantity = 1
jitem.vector_id = df.job_item_vector_id.BOULDER
jitem.flags2.non_economic = true
jitem.flags3.hard = true
job.job_items.elements:insert('#', jitem)
assignToWorkshop(job, workshop)
return dfhack.job.addWorker(job, unit)
end
---categorize and count crafting materials (for Craftsdwarf's workshop)
---@param tab table<string,integer>
---@param item df.item
local function categorize_craft(tab,item)
if df.item_corpsepiecest:is_instance(item) then
if item.corpse_flags.bone then
tab['bone'] = (tab['bone'] or 0) + item.material_amount.Bone
elseif item.corpse_flags.skull then
tab['skull'] = (tab['skull'] or 0) + 1
elseif item.corpse_flags.horn then
tab['horn'] = (tab['horn'] or 0) + item.material_amount.Horn
elseif item.corpse_flags.shell then
tab['shell'] = (tab['shell'] or 0) + 1
end
elseif df.item_boulderst:is_instance(item) then
tab['boulder'] = (tab['boulder'] or 0) + 1
end
end
-- script logic
local GLOBAL_KEY = 'idle-crafting'
enabled = enabled or false
function isEnabled()
return enabled
end
---IDs of workshops where idle crafting is permitted
---@type table<integer,integer>
allowed = allowed or {}
---IDs of workshops that have encountered failures (e.g. missing materials)
---@type table<integer,boolean>
failing = failing or {}
---IDs of watched units in need of crafting items
---@type table<integer,boolean>[]
watched = watched or {}
---priority thresholds for crafting needs
---@type integer[]
thresholds = thresholds or { 10000, 1000, 500 }
local function persist_state()
dfhack.persistent.saveSiteData(GLOBAL_KEY, {
enabled = enabled,
allowed = allowed,
thresholds = thresholds
})
end
--- Load the saved state of the script
local function load_state()
-- load persistent data
local persisted_data = dfhack.persistent.getSiteData(GLOBAL_KEY, {})
enabled = persisted_data.enabled or false
allowed = persisted_data.allowed or {}
thresholds = persisted_data.thresholds or { 10000, 1000, 500 }
end
--frequently accessed values
local CraftObject = df.need_type['CraftObject']
local BONE_CARVE = df.unit_labor['BONE_CARVE']
local STONE_CRAFT = df.unit_labor['STONE_CRAFT']
---negative crafting focus penalty
---@param unit df.unit
---@return number
function getCraftingNeed(unit)
local needs = unit.status.current_soul.personality.needs
for _, need in ipairs(needs) do
if need.id == CraftObject then
return -need.focus_level
end
end
return 0
end
local function stop()
enabled = false
repeatutil.cancel(GLOBAL_KEY .. 'main')
repeatutil.cancel(GLOBAL_KEY .. 'unit')
end
local function checkForWorkshop()
if not next(allowed) then
-- print('no available workshops, disabling')
stop()
end
end
---retrieve workshop by id
---@param id integer
---@return df.building_workshopst|nil
local function locateWorkshop(id)
local workshop = df.building.find(id)
if df.building_workshopst:is_instance(workshop) and workshop.type == df.workshop_type.Craftsdwarfs then
return workshop
else
return nil
end
end
---checks that unit can path to workshop
---@param unit df.unit
---@param workshop df.building_workshopst
---@return boolean
function canAccessWorkshop(unit, workshop)
local workshop_position = xyz2pos(workshop.centerx, workshop.centery, workshop.z)
return dfhack.maps.canWalkBetween(unit.pos, workshop_position)
end
---unit is ready to take jobs
---@param unit df.unit
---@return boolean
function unitIsAvailable(unit)
if unit.job.current_job then
return false
elseif #unit.social_activities > 0 then
return false
elseif #unit.individual_drills > 0 then
return false
elseif unit.military.squad_id ~= -1 then
local squad = df.squad.find(unit.military.squad_id)
-- this lookup should never fail
---@diagnostic disable-next-line: need-check-nil
return #squad.orders == 0 and squad.activity == -1
end
return true
end
---select crafting job based on available resources
---@param workshop df.building_workshopst
---@return (fun(unit:df.unit, workshop:df.building_workshopst):boolean)?
function select_crafting_job(workshop)
local tab = {}
for_inputs(workshop, curry(categorize_craft,tab))
local blocked_labors = workshop.profile.blocked_labors
if blocked_labors[STONE_CRAFT] then
tab['boulder'] = nil
end
if blocked_labors[BONE_CARVE] then
tab['bone'] = nil
tab['skull'] = nil
tab['horn'] = nil
tab['shell'] = nil
end
local material = weightedChoice(tab)
if material == 'bone' then return makeBoneCraft
elseif material == 'skull' then return makeTotem
elseif material == 'horn' then return makeHornCrafts
elseif material == 'shell' then return makeShellCraft
elseif material == 'boulder' then return makeRockCraft
else
return nil
end
end
---check if unit is ready and try to create a crafting job for it
---@param workshop df.building_workshopst
---@param idx integer "index of the unit's group"
---@param unit_id integer
---@return boolean "proceed to next workshop"
local function processUnit(workshop, idx, unit_id)
local unit = df.unit.find(unit_id)
-- check that unit is still there and not caged or chained
if not unit or unit.flags1.caged or unit.flags1.chained then
watched[idx][unit_id] = nil
return false
elseif not canAccessWorkshop(unit, workshop) then
-- dfhack.print('-')
return false
elseif not unitIsAvailable(unit) then
-- dfhack.print('.')
return false
end
-- We have an available unit
local success = false
if #workshop.profile.links.take_from_pile == 0 then
-- can we do something smarter here?
if workshop.profile.blocked_labors[STONE_CRAFT] == false then
success = makeRockCraft(unit, workshop)
end
if not success and workshop.profile.blocked_labors[BONE_CARVE] == false then
success = makeBoneCraft(unit, workshop)
end
if not success then
dfhack.printerr('idle-crafting: profile allows neither bone carving nor stonecrafting')
end
else
local craftItem = select_crafting_job(workshop)
if craftItem then
success = craftItem(unit, workshop)
else
print('idle-crafting: workshop has no usable materials in linked stockpiles')
failing[workshop.id] = true
end
end
if success then
-- Why is the encoding still wrong, even when using df2console?
print('idle-crafting: assigned crafting job to ' .. dfhack.df2console(dfhack.units.getReadableName(unit)))
watched[idx][unit_id] = nil
allowed[workshop.id] = df.global.world.frame_counter
end
return true
end
---@param workshop df.building_workshopst
---@return boolean
local function invalidProfile(workshop)
local profile = workshop.profile
return (#profile.permitted_workers > 0) or
(profile.blocked_labors[BONE_CARVE] and profile.blocked_labors[STONE_CRAFT])
end
-- try to catch units that currently don't have a job and send them to satisfy
-- their crafting needs.
local function unit_loop()
local current_frame = df.global.world.frame_counter
for workshop_id, last_job_frame in pairs(allowed) do
-- skip workshops where jobs appear to have been cancelled (e.g. to missing materials)
if failing[workshop_id] then
goto next_workshop
end
local workshop = locateWorkshop(workshop_id)
-- workshop may have been destroyed, assigned a master, or does not allow crafting
if not workshop or invalidProfile(workshop) then
-- print('workshop destroyed or has invalid profile')
allowed[workshop_id] = nil --clearing during iteration is permitted
goto next_workshop
end
-- only consider workshop if not currently in use
if #workshop.jobs > 0 then
goto next_workshop
end
-- check that we didn't schedule a job on the last iteration
if (last_job_frame >= 0) and (current_frame < last_job_frame + 60) then
-- print(('idle-crafting: disabling failing workshop (%d) until the next run of main loop'):
-- format(workshop_id))
failing[workshop_id] = true
goto next_workshop
end
-- dfhack.print(('idle-crafting: locating crafter for %s (%d)'):
-- format(dfhack.buildings.getName(workshop), workshop_id))
-- workshop is free to use, try to find a unit
for idx, _ in ipairs(thresholds) do
for unit_id, _ in pairs(watched[idx]) do
if processUnit(workshop, idx, unit_id) then
goto next_workshop
end
end
-- dfhack.print('/')
end
-- print('no unit found')
::next_workshop::
end
-- disable loop if there are no more units
if not next(watched) then
repeatutil.cancel(GLOBAL_KEY .. 'unit')
end
-- disable tool if there are no more workshops
checkForWorkshop()
persist_state()
end
local function main_loop()
-- print('idle crafting: running main loop')
checkForWorkshop()
if not enabled then
return
end
-- put failing workshops back into the loop
failing = {}
for workshop_id, _ in pairs(allowed) do
allowed[workshop_id] = -1
end
local num_watched = {}
local watching = false
---@type table<integer,boolean>[]
watched = {}
for idx, _ in ipairs(thresholds) do
watched[idx] = {}
num_watched[idx] = 0
end
for _, unit in ipairs(dfhack.units.getCitizens(true, false)) do
for idx, threshold in ipairs(thresholds) do
if getCraftingNeed(unit) > threshold then
watched[idx][unit.id] = true
num_watched[idx] = num_watched[idx] + 1
watching = true
goto continue
end
end
::continue::
end
-- print(('watching %s dwarfs with crafting needs'):format(
-- table.concat(num_watched, '/')
-- ))
if watching then
repeatutil.scheduleUnlessAlreadyScheduled(GLOBAL_KEY .. 'unit', 53, 'ticks', unit_loop)
end
end
---enable main loop
---@param enable boolean|nil
local function start(enable)
enabled = enable or enabled
if enabled then
repeatutil.scheduleUnlessAlreadyScheduled(GLOBAL_KEY .. 'main', 8419, 'ticks', main_loop)
end
end
--- Handles automatic loading
dfhack.onStateChange[GLOBAL_KEY] = function(sc)
if sc == SC_MAP_UNLOADED then
enabled = false
return
end
if sc ~= SC_MAP_LOADED or df.global.gamemode ~= df.game_mode.DWARF then
return
end
load_state()
start()
end
--
-- Overlay to select workshops
--
IdleCraftingOverlay = defclass(IdleCraftingOverlay, overlay.OverlayWidget)
IdleCraftingOverlay.ATTRS {
desc = "Adds a toggle for recreational crafting to Craftdwarf's workshops.",
default_pos = { x = -39, y = 41 },
version = 2,
default_enabled = true,
viewscreens = {
'dwarfmode/ViewSheets/BUILDING/Workshop/Craftsdwarfs/Workers',
},
frame = { w = 58, h = 1 },
visible = orders.can_set_labors
}
function IdleCraftingOverlay:init()
self:addviews {
widgets.BannerPanel{
frame={l=0, w=54},
subviews={
widgets.CycleHotkeyLabel {
view_id = 'leisure_toggle',
frame = { t=0, l = 1, r = 1 },
label = 'Allow idle dwarves to satisfy crafting needs:',
key = 'CUSTOM_I',
options = {
{ label = 'yes', value = true, pen = COLOR_GREEN },
{ label = 'no', value = false },
},
initial_option = 'no',
on_change = self:callback('onClick'),
enabled = function()
local bld = dfhack.gui.getSelectedBuilding(true)
if not bld then return end
return not invalidProfile(bld)
end,
}
},
},
widgets.HelpButton{
frame={r=0},
command='idle-crafting',
},
}
end
function IdleCraftingOverlay:onClick(new, _)
local workshop = dfhack.gui.getSelectedBuilding(true)
allowed[workshop.id] = new and -1 or nil
if new and not enabled then
start(true)
end
if not next(allowed) then
stop()
end
persist_state()
end
function IdleCraftingOverlay:onRenderBody(painter)
local workshop = dfhack.gui.getSelectedBuilding(true)
if not workshop then
return
end
self.subviews.leisure_toggle:setOption(allowed[workshop.id] or false)
end
OVERLAY_WIDGETS = {
idlecrafting = IdleCraftingOverlay
}
--
-- commandline interface
--
if dfhack_flags.module then
return
end
if df.global.gamemode ~= df.game_mode.DWARF then
qerror('this tool requires a loaded fort')
end
if dfhack_flags.enable then
if dfhack_flags.enable_state then
qerror('This tool is enabled by permitting idle crafting at a Craftsdarf\'s workshop')
else
allowed = {}
stop()
persist_state()
return
end
end
local fulfillment_level =
{ 'unfettered', 'level-headed', 'untroubled', 'not distracted', 'unfocused', 'distracted', 'badly distracted' }
local fulfillment_threshold =
{ 300, 200, 100, -999, -9999, -99999, -500000 }
local argparse = require('argparse')
load_state()
local positionals = argparse.processArgsGetopt({ ... }, {})
if not positionals[1] or positionals[1] == 'status' then
---@type integer[]
stats = {}
for _, unit in ipairs(dfhack.units.getCitizens(true, false)) do
local fulfillment = -getCraftingNeed(unit)
for i = 1, 7 do
if fulfillment >= fulfillment_threshold[i] then
stats[i] = stats[i] and stats[i] + 1 or 1
goto continue
end
end
::continue::
end
print('Fulfillment levels for "craft item" needs')
for k, v in pairs(stats) do
print(('%4d %s'):format(v, fulfillment_level[k]))
end
local num_workshops = 0
for _, _ in pairs(allowed) do
num_workshops = num_workshops + 1
end
print(('Script is %s with %d workshops configured for idle crafting'):
format(enabled and 'enabled' or 'disabled', num_workshops))
print(('The thresholds for "craft item" needs are %s'):
format(table.concat(thresholds, ',')))
elseif positionals[1] == 'thresholds' then
thresholds = argparse.numberList(positionals[2], 'thresholds')
table.sort(thresholds, function (a, b) return a > b end)
print(('Thresholds for "craft item" needs set to %s'):
format(table.concat(thresholds, ',')))
elseif positionals[1] == 'disable' then
allowed = {}
stop()
end
persist_state()