forked from Choumiko/Foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol.lua
1680 lines (1530 loc) · 63.1 KB
/
control.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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
require "util"
require 'stdlib.string'
require 'stdlib.area.position'
require 'stdlib.game'
BlueprintString = require 'blueprintstring.blueprintstring'
serpent = require 'blueprintstring.serpent0272'
GUI = {}
function debugLog(message, force)
if false or force then -- set for debug
for _,player in pairs(game.players) do
player.print(message)
end
end
end
local function init_global()
global.blueprints = global.blueprints or {}
global.books = global.books or {}
global.guiSettings = global.guiSettings or {}
global.unlocked = global.unlocked or {}
end
local function init_player(player)
local i = player.index
global.guiSettings[i] = global.guiSettings[i] or {page = 1, displayCount = 10, overwrite = false, overwriteBooks = false, hotkey = false, setCursor = false, virutalBlueprints = 0}
local guiSettings = global.guiSettings[i]
if guiSettings.overwrite == nil then
guiSettings.overwrite = false
end
if guiSettings.overwriteBooks == nil then
guiSettings.overwriteBooks = false
end
if guiSettings.hotkey == nil then
guiSettings.hotkey = false
end
if guiSettings.setCursor == nil then
guiSettings.setCursor = false
end
if guiSettings.closeGui == nil then
guiSettings.closeGui = false
end
if guiSettings.hideButton == nil then
guiSettings.hideButton = false
end
if not guiSettings.buttonOrder then
guiSettings.buttonOrder = {"D", "L", "E", "R"}
end
if guiSettings.useVirtual == nil then
guiSettings.useVirtual = false
end
if not guiSettings.virtualBlueprints then
guiSettings.virtualBlueprints = 9999
end
end
function createBlueprintButton(player)
if player.valid then
local topGui = player.gui.top
if not topGui.foremanFlow then
topGui.add{
type = "flow",
name = "foremanFlow",
direction = "horizontal",
style = "blueprint_thin_flow"
}
if not topGui.foremanFlow.blueprintTools then
topGui.foremanFlow.add({type="sprite-button", name="blueprintTools", sprite="main_button_sprite", style="blueprint_main_button"})
end
if topGui.blueprintTools and topGui.blueprintTools.valid then
topGui.blueprintTools.destroy()
end
end
end
end
local function init_players(recreate_gui)
for i,player in pairs(game.players) do
init_player(player)
if recreate_gui then
if global.unlocked[player.force.name] then
createBlueprintButton(player,global.guiSettings[i])
end
end
end
end
local function init_force(force)
if not global.unlocked then
init_global()
end
local name = force.name
global.unlocked[name] = true
global.blueprints[name] = global.blueprints[name] or {}
global.books[name] = global.books[name] or {}
end
local function init_forces()
for _, force in pairs(game.forces) do
init_force(force)
end
end
local function on_init()
init_global()
init_forces()
end
addNametoBlueprintString = function(blueprintString, name)
local tmp = BlueprintString.fromString(blueprintString)
tmp.name = name
return BlueprintString.toString(tmp)
end
--removeNameFromBlueprintString = function(blueprintString)
-- local tmp = BlueprintString.fromString(blueprintString)
-- local name = tmp.name
-- tmp.name = nil
-- return BlueprintString.toString(tmp), name
--end
saveToFile = function(player, blueprintIndex, book)
if not blueprintIndex then
player.print({"msg-problem-blueprint"})
return
end
local blueprintData, stringOutput, extension
if book then
--log("save book")
blueprintData = util.table.deepcopy(global.books[player.force.name][blueprintIndex])
-- for _, blueprint in pairs(blueprintData.blueprints) do
-- blueprint.data = addNametoBlueprintString(blueprintData.data, blueprint.name)
-- end
--stringOutput = serpent.dump(blueprintData, {comment=false, name="s"})
stringOutput = serpent.dump(blueprintData, {comment=false})
extension = ".book"
else
--log("save blueprint")
blueprintData = global.blueprints[player.force.name][blueprintIndex]
stringOutput = addNametoBlueprintString(blueprintData.data, cleanupName(blueprintData.name))
extension = ".blueprint"
end
if not stringOutput or not blueprintData then
player.print({"msg-problem-blueprint"})
return
end
local filename = blueprintData.name
if filename == nil or filename == "" then
filename = "export"
end
local folder = player.name ~= "" and player.name:gsub("[/\\:*?\"<>|];", "_") .."/"
folder = (folder and folder ~= "/") and folder or ""
filename = "blueprint-string/" .. folder .. filename .. extension
game.write_file(filename , stringOutput, false, player.index)
player.print({"", player.name, " ", {"msg-export-blueprint"}})
player.print("File: script-output/".. filename)
end
function contains_entities(bp, entities)
if bp.entities then
for _, ent in pairs(bp.entities) do
if entities[ent.name] then
return true
end
end
end
return false
end
function fix_positions(bp)
local offset = {x=-0.5,y=-0.5}
local rail_entities = {["straight-rail"] = true, ["curved-rail"]=true, ["rail-signal"]=true, ["rail-chain-signal"]=true, ["train-stop"]=true, ["smart-train-stop"]=true}
if contains_entities(bp,rail_entities) then
offset = { x = -1, y = -1 }
end
if bp.entities then
for _, ent in pairs(bp.entities) do
ent.position = Position.add(ent.position,offset)
end
end
if bp.tiles then
for _, tile in pairs(bp.tiles) do
tile.position = Position.add(tile.position,offset)
end
end
return bp
end
function saveVar(var, name,sparse)
var = var or global
local n = name or "foreman"
game.write_file(n..".lua", serpent.block(var, {name="global", sparse=sparse, comment=false}), false)
end
-- run once
local function on_configuration_changed(changes)
if not changes.mod_changes then
return
end
if changes.mod_changes.Foreman then
local newVersion = changes.mod_changes.Foreman.new_version
local oldVersion = changes.mod_changes.Foreman.old_version
-- mod was added to existing save
init_global()
if not oldVersion then
init_global()
init_forces()
init_players(true)
else
--mod was updated
if oldVersion < "0.1.1" then
local tmp = util.table.deepcopy(global.blueprints)
global.blueprints = {}
global.unlocked = {}
init_global()
init_forces()
init_players()
for i, _ in pairs(game.players) do
global.guiSettings[i].blueprintCount = nil
end
if oldVersion < "0.1.0" then
global.blueprints.player = util.table.deepcopy(tmp)
elseif oldVersion == "0.1.0" then
for i,p in pairs(game.players) do
local f = p.force.name
for _, bp in pairs(tmp[i]) do
table.insert(global.blueprints[f], util.table.deepcopy(bp))
end
end
end
end
if oldVersion < "0.1.25" then
local status, err = pcall(function()
local tmp = {}
for force, force_blueprints in pairs(global.blueprints) do
tmp[force] = {}
for i, blueprint in pairs(force_blueprints) do
local data = serpent.dump(blueprint)
local name = blueprint.name
tmp[force][i] = {data = BlueprintString.toString(BlueprintString.fromString(data)), name = name}
end
end
global.blueprints = tmp
end)
if not status then
debugLog("Error converting blueprints")
debugLog(err, true)
end
end
if oldVersion < "0.1.26" then
init_players()
end
if oldVersion < "0.2.1" then
init_global()
init_forces()
init_players(true)
end
if oldVersion < "0.2.3" then
global.bpVersion = nil
for i, player in pairs(game.players) do
init_player(player)
if player.gui.center.blueprintSettingsWindow then
player.gui.center.blueprintSettingsWindow.destroy()
global.guiSettings[i].windows = false
end
end
end
if oldVersion < "1.1.3" then
init_players()
end
if oldVersion < "2.0.1" then
init_global()
init_forces()
init_players(true)
for _, settings in pairs(global.guiSettings) do
settings.buttonOrder = {"D", "L", "R"}
settings.virtualBlueprints = 9999
end
end
Game.print_all("Updated Foreman from ".. oldVersion .. " to " .. newVersion)
end
if newVersion == "2.0.1" or newVersion == "2.0.2" or newVersion == "2.0.3" then
for _, player in pairs(game.players) do
GUI.createUpdateWindow(player)
end
end
global.version = newVersion
end
--check for other mods
end
function on_player_created(event)
local player = game.players[event.player_index]
init_player(player)
if global.unlocked[player.force.name] then
createBlueprintButton(player,global.guiSettings[player.index])
end
end
script.on_init(on_init)
script.on_configuration_changed(on_configuration_changed)
script.on_event(defines.events.on_player_created, on_player_created)
script.on_event(defines.events.on_force_created, function(event) init_force(event.force) end)
--script.on_event(defines.events.on_forces_merging, on_forces_merging)
isValidSlot = function(slot, state)
if not slot or not slot.valid_for_read then return false end
--if state then
if state == "empty" then
return not slot.is_blueprint_setup()
elseif state == "setup" then
return slot.is_blueprint_setup()
end
--end
return true
end
getBlueprintOnCursor = function (player)
local stack = player.cursor_stack
if stack.valid_for_read then
if (stack.type == "blueprint" and isValidSlot(stack, 'setup')) then
return stack
elseif stack.type == "blueprint-book" then
local active = stack.get_inventory(defines.inventory.item_main)[stack.active_index]
if isValidSlot(active, 'setup') then
return active
end
end
end
return false
end
local function clearBlueprintBook(book)
local main = book.get_inventory(defines.inventory.item_main)
local bp
book.label = ""
for i = 1, #main do
bp = main[i]
if isValidSlot(bp, 'setup') then
bp.blueprint_icons = {{index=1, signal={type="item"}}}
bp.set_blueprint_entities({})
bp.set_blueprint_tiles({})
bp.label = ""
end
end
end
local function deleteBlueprintBook(event_)
local _, err = pcall(function(event)
local player = game.players[event.player_index]
if not global.guiSettings[player.index].hotkey then
return
end
local cursor_stack = (player.cursor_stack.valid_for_read and player.cursor_stack.type == "blueprint-book") and player.cursor_stack or false
if cursor_stack then
clearBlueprintBook(cursor_stack)
end
end, event_)
if err then game.players[event_.player_index].print(err) end
end
script.on_event("blueprint_delete_book", deleteBlueprintBook)
function split(stringA, sep)
sep = sep or ":"
local fields = {}
local pattern = string.format("([^%s]+)", sep)
string.gsub(stringA, pattern, function(c) fields[#fields+1] = c end)
return fields
end
function sortBlueprint(blueprintA, blueprintB)
if blueprintA.name < blueprintB.name then
return true
end
end
function sortAllBlueprints(forceName)
table.sort(global.blueprints[forceName], sortBlueprint)
table.sort(global.books[forceName], sortBlueprint)
end
function cleanupName(name)
return string.gsub(name:trim(), "[\\.\"';\\:]", "_")
end
function countBlueprints(book, state)
local main = book.get_inventory(defines.inventory.item_main)
local count = 0
for i=1, #main do
if isValidSlot(main[i], state) then
count = count + 1
end
end
return count
end
function findBlueprint(player, state)
local inventories = {player.get_inventory(defines.inventory.player_quickbar), player.get_inventory(defines.inventory.player_main)}
for _, inv in pairs(inventories) do
for i=1,#inv do
local itemStack = inv[i]
if itemStack.valid_for_read and itemStack.type == "blueprint" then
local setup = itemStack.is_blueprint_setup()
if (state == "empty" and not setup) or
(state == "setup" and setup) or
(state == "whatever")
then
return itemStack
end
end
end
end
end
function findEmptyBlueprints(player)
local inventories = {player.get_inventory(defines.inventory.player_main), player.get_inventory(defines.inventory.player_quickbar)}
local blueprints = {}
for _, inv in pairs(inventories) do
for i=1,#inv do
local itemStack = inv[i]
if itemStack.valid_for_read and itemStack.type == "blueprint" and not itemStack.is_blueprint_setup() then
table.insert(blueprints,itemStack)
end
end
end
return #blueprints > 0 and blueprints or false
end
function countEmptyBlueprints(player)
local inventories = {player.get_inventory(defines.inventory.player_main), player.get_inventory(defines.inventory.player_quickbar)}
local count = 0
for _, inv in pairs(inventories) do
for i=1,#inv do
local itemStack = inv[i]
if itemStack.valid_for_read and itemStack.type == "blueprint" and not itemStack.is_blueprint_setup() then
count = count + 1
end
end
end
return count
end
function findBlueprintBook(player, requiredBlueprints, state)
local inventories = {player.get_inventory(defines.inventory.player_quickbar), player.get_inventory(defines.inventory.player_main)}
local totalCount = 0
local available = countEmptyBlueprints(player) + global.guiSettings[player.index].virtualBlueprints
for _, inv in pairs(inventories) do
for i=1,#inv do
local itemStack = inv[i]
if itemStack.valid_for_read and itemStack.type == "blueprint-book" then
local count = countBlueprints(itemStack, state)
totalCount = available + count
if count >= requiredBlueprints or totalCount >= requiredBlueprints then
return itemStack, totalCount
end
end
end
end
return nil, totalCount + available
end
function GUI.createSettingsWindow(player, guiSettings)
if not player.gui.center.blueprintSettingsWindow then
local frame = player.gui.center.add{
type="frame",
name="blueprintSettingsWindow",
direction="vertical",
caption={"window-blueprint-settings"}
}
local hotkey = frame.add{type="checkbox", name="blueprintSettingHotkey", caption={"lbl-blueprint-hotkey"}, state = guiSettings.hotkey}
hotkey.tooltip = {"tooltip-blueprint-hotkey"}
local overwrite = frame.add{type="checkbox", name="blueprintSettingOverwrite", caption={"lbl-blueprint-overwrite"}, state = guiSettings.overwrite}
overwrite.tooltip = {"tooltip-blueprint-overwrite"}
local overwriteBooks = frame.add{type="checkbox", name="blueprintSettingOverwriteBooks", caption={"lbl-blueprint-overwriteBooks"}, state = guiSettings.overwriteBooks}
overwriteBooks.tooltip = {"tooltip-blueprint-overwriteBooks"}
local setCursor = frame.add{type = "checkbox", name = "blueprintSettingSetCursor", caption={"lbl-blueprint-setCursor"}, state = guiSettings.setCursor}
setCursor.tooltip = {"tooltip-blueprint-setCursor"}
local closeGui = frame.add{type = "checkbox", name = "blueprintSettingsCloseGui", caption = {"lbl-blueprint-closeGui"}, state = guiSettings.closeGui}
closeGui.tooltip = {"tooltip-blueprint-closeGui"}
local hideButton = frame.add{type = "checkbox", name = "blueprintSettingsHideButton", caption = {"lbl-blueprint-hideButton"}, state = guiSettings.hideButton}
hideButton.tooltip = {"tooltip-blueprint-hideButton"}
local order = ""
for _, button in pairs(guiSettings.buttonOrder) do
order = order .. button
end
local buttonOrderFlow = frame.add{type = "flow", direction = "horizontal"}
buttonOrderFlow.add{type = "label", caption = {"window-blueprint-buttonOrder"}, {"tooltip-blueprint-buttonOrder"}}
local buttonOrder = frame.add{type = "textfield", name = "blueprintSettingsButtonOrder", text = order}
buttonOrder.style.minimal_width = 50
buttonOrder.tooltip = {"tooltip-blueprint-buttonOrder"}
local displayCountFlow = frame.add{type="flow", direction="horizontal"}
displayCountFlow.add{type="label", caption={"window-blueprint-displaycount"}, tooltip = {"tooltip-blueprint-displayCount"}}
local displayCount = displayCountFlow.add{type="textfield", name="blueprintDisplayCountText", text=guiSettings.displayCount .. ""}
displayCount.style.minimal_width = 50
displayCount.tooltip = {"tooltip-blueprint-displayCount"}
local buttonFlow = frame.add{type="flow", direction="horizontal"}
buttonFlow.add{type="button", name="blueprintSettingsOk", caption={"btn-ok"}, style = "blueprint_button_style"}
buttonFlow.add{type="button", name="blueprintSettingsCancel", caption={"btn-cancel"}, style = "blueprint_button_style"}
return {overwrite = overwrite, displayCount = displayCount, hotkey = hotkey, setCursor = setCursor, closeGui = closeGui,
hideButton = hideButton, buttonOrder = buttonOrder, overwriteBooks = overwriteBooks}
else
player.gui.center.blueprintSettingsWindow.destroy()
end
end
function GUI.createUpdateWindow(player, _)
if not player.gui.center.blueprintUpdateWindow then
local frame = player.gui.center.add{
type="frame",
name="blueprintUpdateWindow",
direction="vertical",
caption="Foreman Update"
}
local message = frame.add{type="label", name = "updateLabel", single_line = false, caption = ""}
local caption1 = "This is one of the last updates where Foreman will be able to import blueprintstrings. Use the new vanilla blueprint Library (press B by default) to store your blueprints and create strings\n"
local caption2 = "You can no longer export blueprints, only import them from the old BlueprintString/Foreman format. The new vanilla format will not be supported\n"
local caption2a = "Depending on how the modding API for the library turns out i might keep up the ability to store blueprints in Foreman.\n\n"
local caption3 = "Foreman will (given time) turn into a blueprint manipulation tool."
message.caption = caption1 .. caption2 .. caption2a .. caption3
frame.add{type="button", name="blueprintUpdateRead", caption = "Close", style = "blueprint_button_style"}
else
player.gui.center.blueprintUpdateWindow.destroy()
end
end
function GUI.getBookButton(type, index)
if type == "D" then
return {type="sprite-button", name=index .. "_blueprintInfoBookDelete", tooltip={"tooltip-blueprint-delete"}, sprite="utility/remove", style="blueprint_sprite_button"}
end
if type == "L" then
return {type="sprite-button", name=index .. "_blueprintInfoBookLoad", tooltip={"tooltip-blueprint-load"}, sprite="load_book_sprite", style="blueprint_sprite_button"}
end
if type == "R" then
return {type="sprite-button", name=index .. "_blueprintInfoRenameBook", tooltip={"tooltip-blueprint-rename"}, sprite="utility/rename_icon_normal", style="blueprint_sprite_button"}
end
end
function GUI.createBlueprintFrameBook(gui, index, caption, countBP, guiSettings)
if not gui then
return
end
local frame = gui.add({type="frame", direction="horizontal", style="blueprint_thin_frame"})
local buttonFlow = frame.add({type="flow", direction="horizontal", style="blueprint_button_flow"})
for _, type in pairs(guiSettings.buttonOrder) do
if type ~= "E" then
buttonFlow.add(GUI.getBookButton(type,index))
end
end
frame.add{type="label", caption=caption, style="blueprint_label_style", tooltip = {"", countBP, " ", {"item-name.blueprint"}}}
end
function GUI.getButton(type, index)
if type == "D" then
return {type="sprite-button", name=index .. "_blueprintInfoDelete", tooltip={"tooltip-blueprint-delete"}, sprite="utility/remove", style="blueprint_sprite_button"}
end
if type == "L" then
return {type="sprite-button", name=index .. "_blueprintInfoLoad", tooltip={"tooltip-blueprint-load"}, sprite="load_sprite", style="blueprint_sprite_button"}
end
if type == "R" then
return {type="sprite-button", name=index .. "_blueprintInfoRename", tooltip={"tooltip-blueprint-rename"}, sprite="utility/rename_icon_normal", style="blueprint_sprite_button"}
end
end
function GUI.createBlueprintFrame(gui, index, caption, guiSettings)
if not gui then
return
end
local frame = gui.add({type="frame", direction="horizontal", style="blueprint_thin_frame"})
local buttonFlow = frame.add({type="flow", direction="horizontal", style="blueprint_button_flow"})
for _, type in pairs(guiSettings.buttonOrder) do
if type ~= "E" then
buttonFlow.add(GUI.getButton(type,index))
end
end
frame.add({type="label", caption=caption, style="blueprint_label_style"})
end
function GUI.createBlueprintWindow(player, guiSettings)
if not player or not guiSettings then
return
end
local gui = player.gui.left
if gui.blueprintWindow ~= nil then
gui.blueprintWindow.destroy()
end
if remote.interfaces.YARM then
guiSettings.YARM_old_expando = remote.call("YARM", "hide_expando", player.index)
end
local window = gui.add({type="flow", name="blueprintWindow", direction="vertical", style="blueprint_thin_flow"}) --style="fatcontroller_thin_frame"}) ,caption={"msg-blueprint-window"}
guiSettings.window = window
local buttons = window.add({type="frame", direction="horizontal", style="blueprint_thin_frame"})
buttons.add({type="sprite-button", name="blueprintNew", tooltip={"tooltip-blueprint-import"}, sprite="utility/add", style="blueprint_sprite_button"})
buttons.add({type="sprite-button", name="blueprintFixPositions", tooltip={"tooltip-blueprint-fix"}, style="blueprint_sprite_button", sprite="item/repair-pack"})
buttons.add({type="button", name="blueprintImportAll", tooltip={"tooltip-blueprint-import-all"}, caption="L", style="blueprint_button_style"})
buttons.add({type="sprite-button", name="blueprintSettings", tooltip={"window-blueprint-settings"}, sprite="settings_sprite", style="blueprint_sprite_button"})
local tools = window.add({type="frame", direction="horizontal", style="blueprint_thin_frame"})
tools.add({type = "sprite-button", name="blueprintToolMirror", tooltip = {"tooltip-blueprint-mirror"}, sprite = "mirror_sprite", style = "blueprint_sprite_button"})
tools.add({type = "label", caption = "Replace"})
local search = tools.add({type = "sprite-button", name = "blueprintToolSearch", tooltip = {"tooltip-blueprint-search"}, style = "blueprint_sprite_button"})
search.sprite = guiSettings.search and "entity/"..guiSettings.search or ""
tools.add({type = "label", caption = "with"})
local replace = tools.add({type = "sprite-button", name = "blueprintToolReplace", tooltip = {"tooltip-blueprint-replace"}, style = "blueprint_sprite_button"})
replace.sprite = guiSettings.replace and "entity/" .. guiSettings.replace or ""
tools.add({type = "button", name = "blueprintToolReplaceOk", caption = {"btn-ok"}, style = "blueprint_button_style"})
--tools.add({type = "button", name = "blueprintToolMoveUp", caption = "U", tooltip = "Move up 2 tiles", style = "blueprint_button_style"})
--tools.add({type = "button", name = "blueprintToolMoveRight", caption = "R", tooltip = "Move right 2 tiles", style = "blueprint_button_style"})
local frame = window.add({type="frame", direction="vertical"})
frame.style.left_padding = 0
frame.style.right_padding = 0
frame.style.top_padding = 0
frame.style.bottom_padding = 0
frame.style.resize_row_to_width=true
local pane = frame.add{
type = "scroll-pane",
style = "blueprint_scroll_style"
}
pane.style.maximal_height = math.ceil(41.5*guiSettings.displayCount)
pane.horizontal_scroll_policy = "never"
pane.vertical_scroll_policy = "auto"
local flow = pane.add{
type="flow",
direction="vertical",
style="blueprint_thin_flow"
}
local books = global.books[player.force.name]
for i, bookData in pairs(books) do
GUI.createBlueprintFrameBook(flow, i, bookData.name, #bookData.blueprints, guiSettings)
end
local blueprints = global.blueprints[player.force.name]
for i,blueprintData in pairs(blueprints) do
GUI.createBlueprintFrame(flow, i, blueprintData.name, guiSettings)
end
guiSettings.windowVisable = true
return window
end
function GUI.createRenameWindow(player, index, oldName, book)
local gui = game.players[player.index].gui.center
if oldName == nil then
oldName = ""
end
local frame = gui.add({type="frame", name="blueprintRenameWindow", direction="vertical", caption={"window-blueprint-rename"}})
local name = frame.add({type="textfield", name="blueprintRenameText"})
frame.blueprintRenameText.text = oldName
local flow = frame.add({type="flow", name="blueprintRenameFlow", direction="horizontal"})
flow.add({type="button", name="blueprintRenameCancel", caption={"btn-cancel"}})
flow.add({type="button", name=index .. "_blueprintRenameOk" , caption={"btn-ok"}})
return {window = frame, name = name, book = book}
end
function GUI.createImportWindow(player)
local gui = player.gui.center
local frame = gui.add{type="frame", direction="vertical", caption={"window-blueprint-new"}}
local flow = frame.add{type="flow", direction="horizontal"}
flow.add{type="label", caption={"lbl-blueprint-new-name"}}
local name = flow.add{type="textfield", name="blueprintNewNameText"}
flow = frame.add{type="flow", direction="horizontal"}
flow.add{type="label", caption={"lbl-blueprint-new-import"}}
local importString = flow.add{type="textfield", name="blueprintImportText"}
flow = frame.add{type="flow", direction="horizontal"}
flow.add{type="button", name="blueprintImportCancel", caption={"btn-cancel"}}
flow.add{type="button", name="blueprintImportOk", caption={"btn-import"}}
return {window = frame, name = name, importString = importString}
end
function GUI.destroyImportWindow(guiSettings)
if guiSettings.import and guiSettings.import.window.valid then
guiSettings.import.window.destroy()
end
guiSettings.import = false
end
function GUI.destroyMainWindow(player, guiSettings)
if player.gui.left.blueprintWindow and player.gui.left.blueprintWindow.valid then
player.gui.left.blueprintWindow.destroy()
end
guiSettings.windowVisable = false
end
function GUI.refreshOpened(force)
sortAllBlueprints(force.name)
for _, p in pairs(force.players) do
local guiSettings = global.guiSettings[p.index]
if guiSettings and guiSettings.windowVisable then
GUI.createBlueprintWindow(p, guiSettings)
end
end
end
addBlueprintFromCursor = function(player, stack)
local blueprintData = getBlueprintData(stack)
if blueprintData then
blueprintData.name = stack.label and cleanupName(stack.label) or nil
local blueprintString = BlueprintString.toString(blueprintData)
return addBlueprintToTable(player, blueprintString, blueprintData.name)
end
end
addBookFromCursor = function(player, cursor_stack)
local blueprints = {}
local main = cursor_stack.get_inventory(defines.inventory.item_main)
local data
local numBooks = #global.books[player.force.name]
numBooks = numBooks < 10 and "0" .. numBooks or numBooks
local bookName = cursor_stack.label and cleanupName(cursor_stack.label) or "Book_" .. numBooks
local num = 0
for i=1, #main do
if isValidSlot(main[i], "setup") then
data = getBlueprintData(main[i])
data.name = main[i].label or bookName .. "_" .. num
data.name = cleanupName(data.name)
table.insert(blueprints, {name = data.name, data = BlueprintString.toString(data)})
num = num + 1
end
end
if #blueprints > 0 then
table.insert(global.books[player.force.name], {blueprints = blueprints, name = bookName})
Game.print_force(player.force, {"", player.name, ": ",{"msg-blueprint-imported"}})
Game.print_force(player.force, "Name: " .. bookName) --TODO localisation
return true
end
end
--write to blueprint
function setBlueprintData(force, blueprintStack, blueprintData)
return pcall(function()
if not blueprintStack or not blueprintStack.valid_for_read or blueprintStack.type ~= "blueprint" then
return false
end
local data = BlueprintString.fromString(blueprintData.data)
--remove unresearched/invalid recipes
local entities = util.table.deepcopy(data.entities)
local tiles = data.tiles
for _, entity in pairs(entities) do
if entity.recipe then
if not force.recipes[entity.recipe] or not force.recipes[entity.recipe].enabled then
entity.recipe = nil
end
end
end
local name = cleanupName(blueprintData.name) or "new_" .. (#global.blueprints[force.name] + 1)
blueprintStack.label = name
blueprintStack.set_blueprint_entities(entities)
blueprintStack.set_blueprint_tiles(tiles)
local newTable = {}
for i = 0, #data.icons do
if data.icons[i] then
table.insert(newTable, data.icons[i])
end
end
if #entities > 0 then
blueprintStack.blueprint_icons = newTable
end
return true
end)
end
function getBlueprintData(blueprintStack)
if not blueprintStack or not blueprintStack.is_blueprint_setup() then
return
end
local data = {}
data.icons = blueprintStack.blueprint_icons
data.entities = blueprintStack.get_blueprint_entities()
data.tiles = blueprintStack.get_blueprint_tiles()
return data
end
function debugDump(var, force)
if false or force then
for _,player in pairs(game.players) do
local msg
if type(var) == "string" then
msg = var
else
msg = serpent.dump(var, {name="var", comment=false, sparse=false, sortkeys=true})
end
player.print(msg)
end
end
end
isDuplicate = function(player, data, name)
local num = #global.blueprints[player.force.name] + 1
local fixedName = name or "new_"
local names = {}
for _, bp in pairs(global.blueprints[player.force.name]) do
names[bp.name] = true
if bp.data == data then
return bp.name, fixedName
end
end
if names[name] then
fixedName = name .. "_1"
end
if fixedName == "new_" then fixedName = fixedName .. num end
return false, fixedName
end
isDuplicateBook = function(player, book)
--TODO properly check duplicates, for now just compare the names
for _, storedBook in pairs(global.books[player.force.name]) do
if storedBook.name == book.name then
player.print("Book with name '" .. storedBook.name .."' already exists" ) --TODO localisation
return true
end
end
return false
end
addBlueprintToTable = function(player, blueprintString, name)
local duplicate, fixedName = isDuplicate(player, blueprintString, name)
if not duplicate then
table.insert(global.blueprints[player.force.name], {data = blueprintString, name = fixedName})
Game.print_force(player.force, {"", player.name, ": ",{"msg-blueprint-imported"}}) --TODO localisation
Game.print_force(player.force, "Name: " .. fixedName) --TODO localisation
return true
else
player.print({"msg-blueprint-exists", duplicate})
return false
end
end
addBookToTable = function(player, book)
if not book or not book.blueprints then
player.print({"msg-problem-string"})
return
end
if #book.blueprints > 0 and not isDuplicateBook(player,book) then
book.name = book.name or "newBook_" .. (#global.books[player.force.name] + 1)
table.insert(global.books[player.force.name], {blueprints = book.blueprints, name = book.name})
Game.print_force(player.force, {"", player.name, ": ",{"msg-blueprint-imported"}})
Game.print_force(player.force, "Name: " .. book.name) --TODO localisation
return true
end
return
end
importBlueprintString = function(player, importString, name)
--log("importBlueprintString")
-- log(importString)
-- local data, name = removeNameFromBlueprintString(importString)
-- log(data)
local data = BlueprintString.fromString(importString)
if not name or name == "" then
name = data.name
end
if data.book then
log("Blueprintstring book")
log(serpent.block(data,{comment=false}))
local blueprints = {}
for _, page in pairs(data.book) do
table.insert(blueprints, {data = BlueprintString.toString(page), name = page.name})
end
local tmp = {}
tmp.name = cleanupName(data.name) or name
tmp.blueprints = blueprints
return addBookToTable(player, tmp)
else
return addBlueprintToTable(player, importString, name)
end
end
importBookFromString = function(player, data, name)
if data.blueprints and #data.blueprints > 0 then
return addBookToTable(player, data, name)
end
end
importAll = function(player, data)
local inserted = false
for _, blueprint in pairs(data.blueprints) do
inserted = importBlueprintString(player, blueprint.data, blueprint.name) or inserted
end
for _, book in pairs(data.books) do
inserted = importBookFromString(player, book, book.name) or inserted
end
end
deleteBlueprint = function(player, blueprintIndex, book)
if blueprintIndex then
local table_
if book then
table_ = global.books[player.force.name]
else
table_ = global.blueprints[player.force.name]
end
if table_[blueprintIndex] then
Game.print_force(player.force, player.name.." deleted ".. table_[blueprintIndex].name) --TODO localisation
table.remove(table_, blueprintIndex)
return true
end
end
end
setButtonOrder = function(player, orderString)
local order = {}
if not string.len(orderString) == 3 then
player.print("Invalid order string") --TODO localisation
else
for c in orderString:gmatch"." do
table.insert(order, c)
end
global.guiSettings[player.index].buttonOrder = order
end
end
function mirror(blueprint)
local curves, others, stops, signals, tanks = 9, 0, 4, 4, 2
local smartTrains = remote.interfaces.st and remote.interfaces.st.getProxyPositions
local smartStops = {["smart-train-stop-proxy"] = {}, ["smart-train-stop-proxy-cargo"] = {}}
local smartSignal = {}
local smartCargo = {}
local proxyKeys = function(trainStop)
local proxies = remote.call("st", "getProxyPositions", trainStop)
local signal = proxies.signalProxy.x .. ":" .. proxies.signalProxy.y
local cargo = proxies.cargo.x .. ":" .. proxies.cargo.y
return {signal = signal, cargo = cargo}
end
local entities = blueprint.get_blueprint_entities()
local tiles = blueprint.get_blueprint_tiles()
if entities then
for i, ent in pairs(entities) do
local entType = game.entity_prototypes[ent.name] and game.entity_prototypes[ent.name].type
ent.direction = ent.direction or 0
if entType == "curved-rail" then
ent.direction = (curves - ent.direction) % 8
elseif entType == "rail-signal" or entType == "rail-chain-signal" then
ent.direction = (signals - ent.direction) % 8
elseif entType == "train-stop" then
if ent.name == "smart-train-stop" and smartTrains then
local proxies = proxyKeys(ent)
smartStops["smart-train-stop-proxy"][proxies.signal] = {old = {direction = ent.direction, position = Position.copy(ent.position)}}
smartStops["smart-train-stop-proxy-cargo"][proxies.cargo] = {old = {direction = ent.direction, position = Position.copy(ent.position)}}
ent.direction = (stops - ent.direction) % 8
smartStops["smart-train-stop-proxy"][proxies.signal].new = ent
smartStops["smart-train-stop-proxy-cargo"][proxies.cargo].new = ent
else
ent.direction = (stops - ent.direction) % 8
end
elseif entType == "storage-tank" then
ent.direction = (tanks + ent.direction) % 8
elseif entType == "lamp" and ent.name == "smart-train-stop-proxy" then
ent.direction = 0
table.insert(smartSignal, {entity = {name=ent.name, position = Position.copy(ent.position)}, i = i})
elseif entType == "constant-combinator" and ent.name == "smart-train-stop-proxy-cargo" then
ent.direction = 0
table.insert(smartCargo, {entity = {name=ent.name, position = Position.copy(ent.position)}, i = i})
else
ent.direction = (others - ent.direction) % 8
end
ent.position.x = -1 * ent.position.x