-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomponents.lua
184 lines (160 loc) · 5.25 KB
/
components.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
-- Note components
local components = {}
local util = scripts.util
local config = require("config")
local function getMarkerOffset(entity) -- generates marker offsets with some crazy math
local pos, boundingBox, selectionBox = entity.position, entity.bounding_box, entity.prototype.selection_box
local width = boundingBox.right_bottom.x - boundingBox.left_top.x
local offX, offY = boundingBox.right_bottom.x - width / 3.35 - pos.x
if boundingBox.right_bottom.x - pos.x > boundingBox.right_bottom.y - pos.y then
offY = math.min(selectionBox.right_bottom.x, selectionBox.right_bottom.y)
else
offY = math.max(selectionBox.right_bottom.x, selectionBox.right_bottom.y)
end
return { x = offX, y = offY - 0.25 }
end
local function getFlyingTextOffset(entity)
local offset = { x = 0, y = 0 }
local boundingBox = entity.bounding_box
if boundingBox.right_bottom.y - boundingBox.left_top.y <= 1.1 then -- avoid marker overlap
offset.y = getMarkerOffset(entity).y - 0.7
end
return offset
end
components.marker = {
create = function (entity)
local pos = entity.position
local offset = config.markerOffsets[entity.name] or getMarkerOffset(entity)
return entity.surface.create_entity{
name = "note-marker",
position = { x = pos.x + offset.x, y = pos.y + offset.y },
force = entity.force
}
end,
isDisabledForEntity = function (entity)
return config.disableMarker[entity.type] or config.disableMarker[entity.name]
end,
showByDefault = function (note)
return not note.text
end
}
components.mapTag = {
create = function (entity, note)
local tag = entity.force.add_chart_tag(entity.surface, {
icon = note.icon,
position = entity.position,
text = note.title and #note.title > 0 and note.title or " ",
target = entity
})
tag.last_user = entity.last_user
return tag
end,
update = function (entity, note)
if util.isValid(note.mapTag) then
note.mapTag.text = note.title or " "
local icon = note.icon
if icon then
note.mapTag.icon = icon
else
note.mapTag.destroy()
note.mapTag = components.mapTag.create(entity, note)
end
end
end,
isDisabledForEntity = function (entity)
return entity.name ~= "signpost"
end,
showByDefault = function (note)
return not (note.icon or note.title)
end
}
components.flyingText = {
create = function (entity, note, player)
local pos = entity.position
local offset = config.titleOffsets[entity.name] or getFlyingTextOffset(entity)
local title = note.title and util.fullTrim(note.title) or " "
if #title == 0 then title = " " end
local created = entity.surface.create_entity{
name = "title-flying-text",
position = { x = pos.x + offset.x, y = pos.y + offset.y },
force = entity.force,
text = title,
color = util.getColorOrDefault("title", player and player.mod_settings, note) --{black = "white"}
}
created.active = false
return created
end,
update = function (entity, note, player)
if util.isValid(note.flyingText) then
note.flyingText.text = util.fullTrim(note.title) or " "
note.flyingText.color = util.getColorOrDefault("title", player and player.mod_settings, note) --{black = "white"}
end
end,
isDisabledForEntity = function (entity)
return config.disableTitle[entity.type]
end,
showByDefault = function (note)
return not note.title
end
}
components.display = { -- signpost icon display
create = function (entity)
local pos = entity.position
local display = entity.surface.create_entity{
name = "signpost-display",
position = { x = pos.x, y = pos.y - 0.3 }
}
display.operable = false
display.rotatable = false
display.destructible = false
display.minable = false
return display
end,
update = function (entity, note)
local icon = note.icon
if icon then
if util.isValid(note.display) then
note.display.clear_items_inside()
else
note.display = components.display.create(entity)
end
if util.iconHasItem(icon) then note.display.insert(icon.name) end
else
util.destroyIfValid(note.display)
end
end,
isDisabledForEntity = function (entity)
return entity.name ~= "signpost"
end,
showByDefault = true
}
components.bpInterface = { -- blueprintable representation of the note (programmable speakers alert message can hold arbitrary blueprintable data)
create = function (entity)
local bpInterface = entity.surface.create_entity{
name = "blueprint-note-interface",
force = entity.force,
position = {1000000, 1000000}
}
bpInterface.teleport(entity.position)
bpInterface.active = false
bpInterface.operable = false
bpInterface.rotatable = false
bpInterface.destructible = false
bpInterface.minable = false
-- save unit number in blueprint note interface for entity identification when a blueprint is created of an entity with a note attached
bpInterface.get_or_create_control_behavior().set_signal(1, { signal = { type = "virtual", name = "signal-0" }, count = entity.unit_number })
return bpInterface
end,
getUnitNumber = function (interface)
return interface.get_control_behavior().get_signal(1).count
end,
update = function (entity, note)
util.destroyIfValid(note.bpInterface)
note.bpInterface = components.bpInterface.create(entity)
end,
isDisabledForEntity = function (entity)
return config.disableTitle[entity.type]
end,
showByDefault = true
}
return components