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
|
--[[
A library to facilitate image primitive creation and manipulation.
]]
local table = require('table')
local math = require('math')
local images = {}
local meta = {}
saved_images = {}
local dragged
local events = {
reload = true,
left_click = true,
double_left_click = true,
right_click = true,
double_right_click = true,
middle_click = true,
scroll_up = true,
scroll_down = true,
hover = true,
drag = true,
right_drag = true
}
_libs = _libs or {}
_libs.images = images
_meta = _meta or {}
_meta.Image = _meta.Image or {}
_meta.Image.__class = 'Image'
_meta.Image.__index = images
local set_value = function(t, key, value)
local m = meta[t]
m.values[key] = value
m.images[key] = value ~= nil and (m.formats[key] and m.formats[key]:format(value) or tostring(value)) or m.defaults[key]
end
_meta.Image.__newindex = function(t, k, v)
set_value(t, k, v)
t:update()
end
--[[
Local variables
]]
local default_settings = {}
default_settings.pos = {}
default_settings.pos.x = 0
default_settings.pos.y = 0
default_settings.visible = true
default_settings.color = {}
default_settings.color.alpha = 255
default_settings.color.red = 255
default_settings.color.green = 255
default_settings.color.blue = 255
default_settings.size = {}
default_settings.size.width = 0
default_settings.size.height = 0
default_settings.texture = {}
default_settings.texture.path = ''
default_settings.texture.fit = true
default_settings.repeatable = {}
default_settings.repeatable.x = 1
default_settings.repeatable.y = 1
default_settings.draggable = true
math.randomseed(os.clock())
local amend
amend = function(settings, defaults)
for key, val in pairs(defaults) do
if type(val) == 'table' then
settings[key] = amend(settings[key] or {}, val)
elseif settings[key] == nil then
settings[key] = val
end
end
return settings
end
local call_events = function(t, event, ...)
if not meta[t].events[event] then
return
end
-- Trigger registered post-reload events
for _, event in ipairs(meta[t].events[event]) do
event(t, meta[t].root_settings)
end
end
local apply_settings = function(_, t, settings)
settings = settings or meta[t].settings
images.pos(t, settings.pos.x, settings.pos.y)
images.visible(t, meta[t].status.visible)
images.alpha(t, settings.color.alpha)
images.color(t, settings.color.red, settings.color.green, settings.color.blue)
images.size(t, settings.size.width, settings.size.height)
images.fit(t, settings.texture.fit)
images.path(t, settings.texture.path)
images.repeat_xy(t, settings.repeatable.x, settings.repeatable.y)
images.draggable(t, settings.draggable)
call_events(t, 'reload')
end
function images.new(str, settings, root_settings)
if type(str) ~= 'string' then
str, settings, root_settings = '', str, settings
end
-- Sets the settings table to the provided settings, if not separately provided and the settings are a valid settings table
if not _libs.config then
root_settings = nil
else
root_settings =
root_settings and class(root_settings) == 'settings' and
root_settings
or settings and class(settings) == 'settings' and
settings
or
nil
end
t = {}
local m = {}
meta[t] = m
m.name = (_addon and _addon.name or 'image') .. '_gensym_' .. tostring(t):sub(8) .. '_%.8x':format(16^8 * math.random()):sub(3)
m.settings = settings or {}
m.status = m.status or {visible = false, image = {}}
m.root_settings = root_settings
m.base_str = str
m.events = {}
m.keys = {}
m.values = {}
m.imageorder = {}
m.defaults = {}
m.formats = {}
m.images = {}
windower.prim.create(m.name)
amend(m.settings, default_settings)
if m.root_settings then
config.save(m.root_settings)
end
if _libs.config and m.root_settings and settings then
_libs.config.register(m.root_settings, apply_settings, t, settings)
else
apply_settings(_, t, settings)
end
-- Cache for deletion
table.insert(saved_images, 1, t)
return setmetatable(t, _meta.Image)
end
function images.update(t, attr)
attr = attr or {}
local m = meta[t]
-- Add possibly new keys
for key, value in pairs(attr) do
m.keys[key] = true
end
-- Update all image segments
for key in pairs(m.keys) do
set_value(t, key, attr[key] == nil and m.values[key] or attr[key])
end
end
function images.clear(t)
local m = meta[t]
m.keys = {}
m.values = {}
m.imageorder = {}
m.images = {}
m.defaults = {}
m.formats = {}
end
-- Makes the primitive visible
function images.show(t)
windower.prim.set_visibility(meta[t].name, true)
meta[t].status.visible = true
end
-- Makes the primitive invisible
function images.hide(t)
windower.prim.set_visibility(meta[t].name, false)
meta[t].status.visible = false
end
-- Returns whether or not the image object is visible
function images.visible(t, visible)
local m = meta[t]
if visible == nil then
return m.status.visible
end
windower.prim.set_visibility(m.name, visible)
m.status.visible = visible
end
--[[
The following methods all either set the respective values or return them, if no arguments to set them are provided.
]]
function images.pos(t, x, y)
local m = meta[t]
if x == nil then
return m.settings.pos.x, m.settings.pos.y
end
windower.prim.set_position(m.name, x, y)
m.settings.pos.x = x
m.settings.pos.y = y
end
function images.pos_x(t, x)
if x == nil then
return meta[t].settings.pos.x
end
t:pos(x, meta[t].settings.pos.y)
end
function images.pos_y(t, y)
if y == nil then
return meta[t].settings.pos.y
end
t:pos(meta[t].settings.pos.x, y)
end
function images.size(t, width, height)
local m = meta[t]
if width == nil then
return m.settings.size.width, m.settings.size.height
end
windower.prim.set_size(m.name, width, height)
m.settings.size.width = width
m.settings.size.height = height
end
function images.width(t, width)
if width == nil then
return meta[t].settings.size.width
end
t:size(width, meta[t].settings.size.height)
end
function images.height(t, height)
if height == nil then
return meta[t].settings.size.height
end
t:size(meta[t].settings.size.width, height)
end
function images.path(t, path)
if path == nil then
return meta[t].settings.texture.path
end
windower.prim.set_texture(meta[t].name, path)
meta[t].settings.texture.path = path
end
function images.fit(t, fit)
if fit == nil then
return meta[t].settings.texture.fit
end
windower.prim.set_fit_to_texture(meta[t].name, fit)
meta[t].settings.texture.fit = fit
end
function images.repeat_xy(t, x, y)
local m = meta[t]
if x == nil then
return m.settings.repeatable.x, m.settings.repeatable.y
end
windower.prim.set_repeat(m.name, x, y)
m.settings.repeatable.x = x
m.settings.repeatable.y = y
end
function images.draggable(t, drag)
if drag == nil then
return meta[t].settings.draggable
end
meta[t].settings.draggable = drag
end
function images.color(t, red, green, blue)
local m = meta[t]
if red == nil then
return m.settings.color.red, m.settings.color.green, m.settings.color.blue
end
windower.prim.set_color(m.name, m.settings.color.alpha, red, green, blue)
m.settings.color.red = red
m.settings.color.green = green
m.settings.color.blue = blue
end
function images.alpha(t, alpha)
local m = meta[t]
if alpha == nil then
return m.settings.color.alpha
end
windower.prim.set_color(m.name, alpha, m.settings.color.red, m.settings.color.green, m.settings.color.blue)
m.settings.color.alpha = alpha
end
-- Sets/returns image transparency. Based on percentage values, with 1 being fully transparent, while 0 is fully opaque.
function images.transparency(t, alpha)
local m = meta[t]
if alpha == nil then
return 1 - m.settings.color.alpha/255
end
alpha = math.floor(255*(1-alpha))
windower.prim.set_color(m.name, alpha, m.settings.color.red, m.settings.color.green, m.settings.color.blue)
m.settings.color.alpha = alpha
end
-- Returns true if the coordinates are currently over the image object
function images.hover(t, x, y)
if not t:visible() then
return false
end
local start_pos_x, start_pos_y = t:pos()
local end_pos_x, end_pos_y = t:get_extents()
return (start_pos_x <= x and x <= end_pos_x
or start_pos_x >= x and x >= end_pos_x)
and (start_pos_y <= y and y <= end_pos_y
or start_pos_y >= y and y >= end_pos_y)
end
function images.destroy(t)
for i, t_needle in ipairs(saved_images) do
if t == t_needle then
table.remove(saved_images, i)
break
end
end
windower.prim.delete(meta[t].name)
meta[t] = nil
end
function images.get_extents(t)
local m = meta[t]
local ext_x = m.settings.pos.x + m.settings.size.width
local ext_y = m.settings.pos.y + m.settings.size.height
return ext_x, ext_y
end
-- Handle drag and drop
windower.register_event('mouse', function(type, x, y, delta, blocked)
if blocked then
return
end
-- Mouse drag
if type == 0 then
if dragged then
dragged.image:pos(x - dragged.x, y - dragged.y)
return true
end
-- Mouse left click
elseif type == 1 then
for _, t in pairs(saved_images) do
local m = meta[t]
if m.settings.draggable and t:hover(x, y) then
local pos_x, pos_y = t:pos()
dragged = {image = t, x = x - pos_x, y = y - pos_y}
return true
end
end
-- Mouse left release
elseif type == 2 then
if dragged then
if meta[dragged.image].root_settings then
config.save(meta[dragged.image].root_settings)
end
dragged = nil
return true
end
end
return false
end)
-- Can define functions to execute every time the settings are reloaded
function images.register_event(t, key, fn)
if not events[key] then
error('Event %s not available for text objects.':format(key))
return
end
local m = meta[t]
m.events[key] = m.events[key] or {}
m.events[key][#m.events[key] + 1] = fn
return #m.events[key]
end
function images.unregister_event(t, key, fn)
if not (events[key] and meta[t].events[key]) then
return
end
if type(fn) == 'number' then
table.remove(meta[t].events[key], fn)
else
for index, event in ipairs(meta[t].events[key]) do
if event == fn then
table.remove(meta[t].events[key], index)
return
end
end
end
end
return images
--[[
Copyright © 2015, Windower
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of Windower nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Windower BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]
|