forked from Refactorio/RedMew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaint.lua
More file actions
226 lines (186 loc) · 5.88 KB
/
paint.lua
File metadata and controls
226 lines (186 loc) · 5.88 KB
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
local Event = require 'utils.event'
local Gui = require 'utils.gui'
local Game = require 'utils.game'
local brush_tool = 'refined-hazard-concrete'
local valid_filters = {
'dirt-1',
'dirt-2',
'dirt-3',
'dirt-4',
'dirt-5',
'dirt-6',
'dirt-7',
'dry-dirt',
'grass-1',
'grass-2',
'grass-3',
'grass-4',
'lab-dark-1',
'lab-dark-2',
'lab-white',
'red-desert-0',
'red-desert-1',
'red-desert-2',
'red-desert-3',
'sand-1',
'sand-2',
'sand-3',
'tutorial-grid'
}
local main_button_name = Gui.uid_name()
local main_frame_name = Gui.uid_name()
local filter_button_name = Gui.uid_name()
local filter_clear_name = Gui.uid_name()
local filter_element_name = Gui.uid_name()
local filters_table_name = Gui.uid_name()
local filter_table_close_button_name = Gui.uid_name()
global.paint_brushes_by_player = {}
local function player_build_tile(event)
if not global.scenario.config.paint.enable then
return
end
if event.item.name ~= brush_tool then
return
end
local replace_tile = global.paint_brushes_by_player[event.player_index]
if not replace_tile then
return
end
local player = Game.get_player_by_index(event.player_index)
if not player.gui.left[main_frame_name] then
return
end
local tiles = event.tiles
local count = 0
for _, tile_data in ipairs(tiles) do
tile_data.name = replace_tile
if tile_data.old_tile.name == replace_tile then
count = count + 1
end
end
game.surfaces[event.surface_index].set_tiles(tiles)
if count > 0 then
player.insert {name = brush_tool, count = count}
end
end
local function player_joined(event)
if not global.scenario.config.paint.enable then
return
end
local player = Game.get_player_by_index(event.player_index)
if not player or not player.valid then
return
end
if player.gui.top[main_button_name] ~= nil then
return
end
player.gui.top.add {name = main_button_name, type = 'sprite-button', sprite = 'utility/spray_icon'}
end
local function draw_filters_table(event)
local center = event.player.gui.center
if center[filters_table_name] then
return
end
local frame = center.add {type = 'frame', name = filters_table_name, direction = 'vertical', caption = 'Palette'}
local t = frame.add {type = 'table', column_count = 10}
t.style.horizontal_spacing = 0
t.style.vertical_spacing = 0
for _, v in ipairs(valid_filters) do
local flow = t.add {type = 'flow'}
local b = flow.add {type = 'sprite-button', name = filter_element_name, sprite = 'tile/' .. v, tooltip = v}
Gui.set_data(b, frame)
b.style = 'slot_button'
end
local flow = frame.add {type = 'flow'}
local close = flow.add {type = 'button', name = filter_table_close_button_name, caption = 'Close'}
Gui.set_data(close, frame)
event.player.opened = frame
Gui.set_data(frame, event.element)
end
local function toggle(event)
local left = event.player.gui.left
local main_frame = left[main_frame_name]
if main_frame and main_frame.valid then
Gui.remove_data_recursivly(main_frame)
main_frame.destroy()
else
main_frame =
left.add {
type = 'frame',
name = main_frame_name,
direction = 'vertical',
caption = 'Paint Brush'
}
main_frame.add {
type = 'label',
caption = 'Choose a replacement tile for Refined hazard concrete'
}
local tooltip = global.paint_brushes_by_player[event.player_index] or ''
local brush =
main_frame.add({type = 'flow'}).add {
type = 'sprite-button',
name = filter_button_name,
tooltip = tooltip,
sprite = tooltip ~= '' and 'tile/' .. tooltip or nil
}
brush.style = 'slot_button'
local buttons_flow = main_frame.add {type = 'flow', direction = 'horizontal'}
buttons_flow.add {type = 'button', name = main_button_name, caption = 'Close'}
local clear_bursh = buttons_flow.add {type = 'button', name = filter_clear_name, caption = 'Clear Brush'}
Gui.set_data(clear_bursh, brush)
end
end
Gui.on_click(main_button_name, toggle)
Gui.on_click(
filter_button_name,
function(event)
if event.button == defines.mouse_button_type.right then
global.paint_brushes_by_player[event.player_index] = nil
local element = event.element
element.sprite = 'utility/pump_cannot_connect_icon'
element.tooltip = ''
else
draw_filters_table(event)
end
end
)
Gui.on_click(
filter_clear_name,
function(event)
local brush = Gui.get_data(event.element)
brush.sprite = 'utility/pump_cannot_connect_icon'
brush.tooltip = ''
global.paint_brushes_by_player[event.player_index] = nil
end
)
Gui.on_click(
filter_element_name,
function(event)
local element = event.element
local frame = Gui.get_data(element)
local filter_button = Gui.get_data(frame)
global.paint_brushes_by_player[event.player_index] = element.tooltip
filter_button.sprite = element.sprite
filter_button.tooltip = element.tooltip
Gui.remove_data_recursivly(frame)
frame.destroy()
end
)
Gui.on_click(
filter_table_close_button_name,
function(event)
local frame = Gui.get_data(event.element)
Gui.remove_data_recursivly(frame)
frame.destroy()
end
)
Gui.on_custom_close(
filters_table_name,
function(event)
local element = event.element
Gui.remove_data_recursivly(element)
element.destroy()
end
)
Event.add(defines.events.on_player_joined_game, player_joined)
Event.add(defines.events.on_player_built_tile, player_build_tile)