-
Notifications
You must be signed in to change notification settings - Fork 0
/
decor.lua
1088 lines (1008 loc) · 20.9 KB
/
decor.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 "sprite"
require "theme"
require "click"
loadmod "color2rgb"
local function utf_ff(b, pos)
if type(b) ~= 'string' or b:len() == 0 then
return 0
end
local utf8 = (std.game.codepage == 'UTF-8' or std.game.codepage == 'utf-8')
if not utf8 then return 1 end
local i = pos or 1
local l = 0
if b:byte(i) < 0x80 then
return 1
end
i = i + 1
l = l + 1
while b:byte(i) >= 0x80 and b:byte(i) <= 0xbf do
i = i + 1
l = l + 1
if i > b:len() then
break
end
end
return l
end
local cache = {
}
function cache:new(max, ttl)
local c = {
cache = {};
list = {};
ttl = ttl or 4;
max = max or 16;
}
self.__index = self
return std.setmt(c, self)
end
function cache:add(name, value)
local v = self.cache[name]
if v then
v.value = value
v.use = v.use + 1
return v.value
end
v = { name = name, value = value, use = 1 }
self.cache[name] = v
table.insert(self.list, 1, v)
return v.value
end
function cache:get(name)
local v = self.cache[name]
if not v then
return
end
v.use = v.use + 1
return v.value
end
function cache:clear()
local nr = #self.list
local list = {}
if nr <= self.max then
return
end
local todel = nr - self.max
for k, v in ipairs(self.list) do
if v.use == 0 and todel > 0 then
v.ttl = v.ttl - 1
if v.ttl <= 0 then
self.cache[v.name] = nil
if DEBUG then
dprint("cache purge: "..v.name)
end
todel = todel - 1
else
table.insert(list, v)
end
else
table.insert(list, v)
end
end
self.list = list
end
function cache:put(name)
local v = self.cache[name]
if not v then
return
end
v.use = v.use - 1
if v.use <= 0 then v.use = 0; v.ttl = self.ttl; end
-- for k, vv in ipairs(self.list) do
-- if vv == v then
-- table.remove(self.list, k)
-- table.insert(self.list, #self.list, v)
-- break
-- end
-- end
return v.value
end
local img = {
cache = cache:new();
}
function img:delete(v)
end
function img:clear()
self.cache:clear()
end
function img:render(v)
if v.frames and v.w and v.h then
local delay = v.delay or 25
local w, h = v.sprite:size()
local width = math.floor(w / v.w)
local height = math.floor(h / v.h)
local frame = v.frame_nr or 0
local yy = math.floor(frame / width)
local xx = math.floor(frame % width)
v.fx = xx * v.w
v.fy = yy * v.h
if instead.ticks() - (v.__delay or 0) >= delay then
if frame < v.frames - 1 then
frame = frame + 1
else
frame = 0
end
v.frame_nr = frame
v.__delay = instead.ticks()
end
end
if v.background then
if v.fx and v.fy and v.w and v.h then
v.sprite:copy(v.fx, v.fy, v.w, v.h, sprite.scr(), v.x - v.xc, v.y - v.yc)
else
v.sprite:copy(sprite.scr(), v.x - v.xc, v.y - v.yc)
end
return
end
if type(v.render) == 'function' then
v.render(v)
return
end
if v.fx and v.fy and v.w and v.h then
v.sprite:draw(v.fx, v.fy, v.w, v.h, sprite.scr(), v.x - v.xc, v.y - v.yc, v.alpha)
else
v.sprite:draw(sprite.scr(), v.x - v.xc, v.y - v.yc, v.alpha)
end
end
function img:new_spr(v, s)
v.xc = v.xc or 0
v.yc = v.yc or 0
v.x = v.x or 0
v.y = v.y or 0
v.sprite = s
if not s then
return v
end
local w, h = s:size()
if v.w then w = v.w end
if v.h then h = v.h end
if v.xc == true then
v.xc = math.floor(w / 2)
end
if v.yc == true then
v.yc = math.floor(h / 2)
end
v.w, v.h = w, h
return v
end
function img:new(v)
local fname = v[3]
if type(fname) == 'function' then
if not std.functions[fname] then
std.err("Non declared function", 2)
end
local s = fname(v)
if not s then
std.err("Can not construct sprite", 2)
end
return self:new_spr(v, s)
elseif type(fname) ~= 'string' then
std.err("Wrong filename in image")
end
local s = self.cache:get(fname)
if not s then
local sp = sprite.new(fname)
if not sp then
std.err("Can not load sprite: "..fname, 2)
end
s = self.cache:add(fname, sp)
end
self.cache:put(fname)
return self:new_spr(v, s)
end
local raw = {
}
function raw:delete(v)
end
function raw:clear()
end
function raw:render(v)
if type(v.render) ~= 'function' then
return
end
v.render(v)
return
end
function raw:new(v)
if type(v[3]) == 'function' then
v[3](v)
return v
end
return v
end
local fnt = {
cache = cache:new();
}
function fnt:key(name, size)
return name .. std.tostr(size)
end
function fnt:clear()
self.cache:clear()
for k, v in ipairs(self.cache.list) do
v.value.cache:clear()
end
end
function fnt:_get(name, size)
local f = self.cache:get(self:key(name, size))
if not f then
local fnt = sprite.fnt(name, size)
if not fnt then
std.err("Can not load font", 2)
end
f = { fnt = fnt, cache = cache:new(256, 16) }
self.cache:add(self:key(name, size), f)
end
return f
end
function fnt:get(name, size)
return self:_get(name, size).fnt
end
function fnt:text_key(text, color, style)
local key = std.tostr(color)..'#'..std.tostr(style or "")..'#'..tostring(text)
return key
end
function fnt:text(name, size, text, color, style)
local fn = self:_get(name, size);
local key = self:text_key(text, color, style)
local sp = fn.cache:get(key)
if not sp then
sp = fn.fnt:text(text, color, style)
fn.cache:add(key, sp)
end
fn.cache:put(key)
self:put(name, size)
return sp
end
function fnt:put(name, size)
self.cache:put(self:key(name, size))
end
local txt_mt = {
}
local txt = {
}
function txt_mt:pages()
return #self.__pages
end
function txt_mt:page(nr)
if nr == nil then
return self.page_nr
end
if nr > self:pages() then
return false
end
if nr < 1 then
return false
end
if self.typewriter then
self.finished = false
end
txt:make_page(self, nr)
return true
end
function txt_mt:next_page()
if self.typewriter and self.started then
self.typewriter = false
txt:make_page(self, self.page_nr or 1)
self.typewriter = true
self.started = false
self.finished = true
return
end
return self:page((self.page_nr or 1) + 1)
end
local function make_align(l, width, t)
if t == 'left' then
return
end
if t == 'center' then
local delta = math.floor((width - l.w) / 2)
for _, v in ipairs(l) do
v.x = v.x + delta
end
return
end
if t == 'right' then
local delta = math.floor(width - l.w)
for _, v in ipairs(l) do
v.x = v.x + delta
end
return
end
if t == 'justify' then
local n = 0
for _, v in ipairs(l) do
if not v.unbreak then
n = n + 1
end
end
n = n - 1
if n == 0 then
return
end
local delta = math.floor((width - l.w) / n)
local ldelta = (width - l.w) % n
local xx = 0
for k, v in ipairs(l) do
if k > 1 then
if not v.unbreak then
if k == 2 then
xx = xx + ldelta
end
xx = xx + delta
end
v.x = v.x + xx
end
end
return
end
end
local function parse_xref(str)
str = str:gsub("^{", ""):gsub("}$", "")
local h = str:find("|", 1, true)
if not h then
return false, str
end
local l = str:sub(h + 1)
h = str:sub(1, h - 1)
return h, l
end
local function preparse_links(text, links)
local links = {}
local link_id = 0
local s = std.for_each_xref(text,
function(str)
local h, l = parse_xref(str)
if not h then
std.err("Wrong xref: "..str, 2)
end
local o = ""
link_id = link_id + 1
for w in l:gmatch("[^ \t]+") do
if o ~= '' then o = o ..' ' end
table.insert(links, {h, w, link_id})
o = o .. "\3".. std.tostr(#links) .."\4"
end
return o
end)
s = s:gsub('\\?'..'[{}]', { ['\\{'] = '{', ['\\}'] = '}' })
return s, links
end
function txt:make_page(v, nr)
local page = nr or v.page_nr or 1
local lines = v.__lines
local spr = v.sprite
local size = v.size or std.tonum(theme.get 'win.fnt.size')
local color = v.color or theme.get('win.col.fg')
local link_color = v.color_link or theme.get('win.col.link')
local alink_color = v.color_alink or theme.get('win.col.alink')
local font = v.font or theme.get('win.fnt.name')
v.page_nr = page
if v.w == 0 or v.h == 0 then
return
end
if not v.__spr_blank then
v.__spr_blank = sprite.new(v.w, v.h)
end
local lnr = v.__pages[page]
v.__spr_blank:copy(v.sprite)
if #lines == 0 then return end
local off = lines[lnr].y
v.__offset = off
for _ = lnr, #lines do
local l = lines[_]
if l.y + l.h - off > v.h or l.pgbrk then
break
end
for _, w in ipairs(l) do
if not w.spr and w.w > 0 then
w.spr = fnt:text(font, size, w.txt,
w.id and link_color or color, w.style)
end
if w.id then -- link
if not w.link then
w.link = fnt:text(font, size, w.txt, alink_color, w.style)
end
else
w.link = nil
end
if w.spr then
w.spr:copy(v.sprite, w.x, w.y - off)
end
end
end
if v.typewriter then
v.step = 0; -- typewriter effect
if not v.__spr_blank then
v.__spr_blank = sprite.new(v.w, v.h)
end
if not v.finished then
v.started = true
v.finished = false
v.__spr_blank:copy(v.sprite)
end
end
end
function txt:new(v)
local text = v[3]
if type(text) == 'function' then
if not std.functions[text] then
std.err("Non declared function", 2)
end
text = text(v)
end
if type(text) ~= 'string' then
std.err("Wrong text in txt decorator")
end
local align = v.align or 'left'
local style = v.style or 0
local font = v.font or theme.get('win.fnt.name')
local intvl = v.interval or std.tonum(theme.get 'win.fnt.height')
local size = v.size or std.tonum(theme.get 'win.fnt.size')
local x, y = 0, 0
v.fnt = fnt:get(font, size)
local spw, _ = v.fnt:size(" ")
local next = pixels.new(_, _)
local r, g, b = color2rgb(v.color or theme.get('win.col.fg'))
next:fill_poly({0, 0, _ - 1, 0, _ / 2, _ / 2 - 1}, r, g, b)
next:polyAA({0, 0, _ - 1, 0, _ / 2, _ / 2 - 1}, r, g, b)
v.btn = next:sprite()
local lines = {}
local line = { h = v.fnt:height() }
local link_list = {}
local maxw = v.w
local maxh = v.h
local W = 0
local H = 0
local function newline()
line.y = y
line.w = 0
if #line > 0 then
line.w = line[#line].x + line[#line].w
end
local h = v.fnt:height()
for _, w in ipairs(line) do
if w.h > h then
h = w.h
end
end
y = y + h * intvl
if y > H then
H = y
end
if #line > 0 then
if #line == 1 and line[1].txt == '[break]' then line.pgbrk = true end
table.insert(lines, line)
end
line = { h = v.fnt:height() }
x = 0
if maxh and y > maxh then
return true
end
end
local links
text, links = preparse_links(text)
local styles = {}
local ww
for w in text:gmatch("[^ \t]+") do
while w and w ~= '' do
local s, _ = w:find("\n", 1, true)
if not s then
ww = w
w = false
elseif s > 1 then
ww = w:sub(1, s - 1)
w = w:sub(s)
else -- s == 1
ww = '\n'
w = w:sub(2)
end
if ww == '\n' then
newline()
else
local t, act
local applist = {}
local xx = 0
while ww and ww ~= '' do
s, _ = ww:find("\3[0-9]+\4", 1)
local id
if s == 1 then
local n = std.tonum(ww:sub(s + 1, _ - 1))
local ll = links[n]
act, t, id = ll[1], ll[2], ll[3]
ww = ww:sub(_ + 1)
elseif s then
t = ww:sub(1, s - 1)
ww = ww:sub(s)
else
t = ww
ww = false
end
while t:find("^%[[ibu]%]") do
table.insert(styles, t:sub(2, 2))
t = t:gsub("^%[[ibu]%]", "")
end
local st = style
local m = { b = 1, i = 2, u = 4 }
for i = 1, #styles do
st = st + m[styles[i]]
end
while t:find("%[/[ibu]%]$") do
table.remove(styles, #styles)
t = t:gsub("%[/[ibu]%]$", "")
end
local width, height = v.fnt:size(t, st)
if height > line.h then
line.h = height
end
if t == '[pause]' then
width = 0
end
local witem = { style = st,
action = act, id = id, x = xx, y = y,
w = width, h = height, txt = t }
if id then
table.insert(link_list, witem)
end
table.insert(applist, witem)
xx = xx + width
end
local sx = 0;
if maxw and x + xx + spw > maxw and #line > 0 then
newline()
else
sx = x
end
for k, v in ipairs(applist) do
v.y = y
v.x = v.x + sx
x = v.x + v.w
if k ~= 1 then
v.unbreak = true
end
v.line = line
table.insert(line, v)
end
if #applist > 0 then
for i = #applist, 1, -1 do
if applist[i].w > 0 then
x = x + spw
break
end
end
end
if x > W then
W = x
end
end
end
end
if #line > 0 then
newline()
end
if (maxw or W) ~= 0 and (maxh or H) ~= 0 then
v.sprite = sprite.new(maxw or W, maxh or H)
end
local pages = {}
local off = 0;
if #lines >= 1 then
table.insert(pages, 1)
end
local brk
for _, l in ipairs(lines) do
l.page = #pages
if l.pgbrk then
brk = true
elseif (l.y + l.h - off > (maxh or H)) or brk then
off = l.y
table.insert(pages, _)
brk = false
else
make_align(l, maxw or W, align)
brk = false
end
end
v.__pages = pages
v.__lines = lines
v.__link_list = link_list
if v.sprite then
v.w, v.h = v.sprite:size()
else
v.w, v.h = 0, 0
end
if #link_list > 0 or #pages > 1 then
v.click = true
end
std.setmt(v, txt_mt)
txt_mt.__index = txt_mt
self:make_page(v)
return img:new_spr(v, v.sprite)
end
function txt:make_tw(v, step)
local n = 0
local spr = v.sprite
local lnr = v.__pages[v.page_nr]
for _ = lnr, #v.__lines do
if n >= step then
break
end
local l = v.__lines[_]
if l.y + l.h - v.__offset > v.h or l.pgbrk then
v.started = false
v.finished = true
break
end
for _, w in ipairs(l) do
if n >= step then
break
end
if w.txt:len() + n <= step then
n = n + w.txt:len()
n = n + 1
if n >= step and w.spr then
w.spr:copy(spr, w.x, w.y - v.__offset)
end
else
local nm = step - n
local i = 1
while i < nm do
i = i + utf_ff(w.txt, i)
end
step = step + i - nm
local txt = w.txt:sub(1, i - 1)
local ww, hh = v.fnt:size(txt)
if w.spr then
if type(decor.beep) == 'function' then
decor.beep(v)
end
w.spr:copy(0, 0, ww, hh, spr, w.x, w.y - v.__offset)
end
n = step
end
end
end
v.step = n
if n < step then
v.started = false
v.finished = true
end
return step > n
end
function txt:link(v, x, y)
if v.typewriter and v.started then
return
end
local off = v.__offset or 0
y = y + off
for _, w in ipairs(v.__link_list) do
if w.line.page == (v.page_nr or 1) then
if x >= w.x and y >= w.y then
if x < w.x + w.w and y < w.y + w.h then
return w, _
end
local next = v.__link_list[_ + 1]
if next and next.id == w.id and
x < next.x and y < next.y + next.h then
return w, _
end
end
end
end
end
function txt:click(v, press, x, y)
local w = self:link(v, x, y)
if w then
return std.cmd_parse(w.action)
end
return {}
end
function txt:render(v)
if v.w == 0 or v.h == 0 then
return
end
if v.typewriter and v.started then
local d = instead.ticks() - (v.__last_tw or 0)
decor.dirty = true
if d > (v.delay or 25) then
v.__last_tw = instead.ticks()
v.step = (v.step or 0) + (v.speed or 1)
txt:make_tw(v, v.step)
end
img:render(v)
return
end
local x, y = instead.mouse_pos()
x = x - v.x + v.xc
y = y - v.y + v.yc
local w = txt:link(v, x, y)
local action = w and w.action or false
local id = w and w.id or false
for _, w in ipairs(v.__link_list) do
if w.line.page == (v.page_nr or 1) then
if w.id == id then
if not w.__active then
w.__active = true
w.link:copy(v.sprite, w.x, w.y - v.__offset)
end
else
if w.__active then
w.__active = false
w.spr:copy(v.sprite, w.x, w.y - v.__offset)
end
end
end
end
img:render(v)
if v:page() < v:pages() and v.btn then
local w, h = v.btn:size()
v.btn:draw(sprite.scr(), v.x + v.w - v.xc - w, v.y + v.h - v.yc - h)
end
end
function txt:delete(v)
if v.sprite then
fnt:put(v.font or theme.get('win.fnt.name'), v.size)
end
end
decor = obj {
nam = '@decor';
{
img = img;
fnt = fnt;
txt = txt;
raw = raw;
dirty = false;
objects = {
}
};
bgcol = 'black';
}
--[[
decor:img{ 'hello', 'img' }
]]--
function decor:zap()
local l = {}
for k, v in pairs(self.objects) do
table.insert(l, k)
end
for _, name in ipairs(l) do
local tt = self.objects[name].type
self[tt]:delete(self.objects[name])
self.objects[name] = nil
end
end
function decor:new(v)
if type(v) == 'string' then
v = self.objects[v]
end
local name = v[1]
local t = v[2]
if not v.z then
v.z = 0
end
if type(name) ~= 'string' then
std.err("Wrong parameter to decor:new(): name", 2)
end
if self.objects[name] then
local tt = self.objects[name].type
self[tt]:delete(self.objects[name])
end
if t == nil then
self.objects[name] = nil
return
end
if type(t) ~= 'string' then
std.err("Wrong parameter to decor:new(): type", 2)
end
if not self[t] or type(self[t].new) ~= 'function' then
std.err("Wrong type decorator: "..t, 2)
end
v.name = name
v.type = t
self.objects[name] = self[t]:new(v)
return v
end;
function decor:get(n)
if type(n) ~= 'string' then
std.err("Wrong parameter to decor:get(): name", 2)
end
return self.objects[n]
end
local after_list = {}
function decor:process()
local t = instead.ticks()
for _, v in pairs(self.objects) do
if not v.hidden and type(v.process) == 'function' then
decor.dirty = true
if t - (v.__last_time or 0) > (v.speed or 25) then
v:process()
v.__last_time = t
end
end
if v.frames then decor.dirty = true end
end
end
function decor:render()
local list = {}
if not decor.dirty then
return
end
decor.dirty = false
after_list = {}
for _, v in pairs(self.objects) do
local z = v.z or 0
if not v.hidden then
if z >= 0 then
table.insert(list, v)
else
table.insert(after_list, v)
end
end
end
table.sort(list, function(a, b)
if a.z == b.z then return a.name < b.name end
return a.z > b.z
end)
table.sort(after_list, function(a, b)
if a.z == b.z then return a.name < b.name end
return a.z > b.z
end)
sprite.scr():fill(self.bgcol)
for _, v in ipairs(list) do
self[v.type]:render(v)
end
end
std.mod_init(function(s)
local oldrender = sprite.render_callback()
sprite.render_callback(
function()
for _, v in ipairs(after_list) do
decor[v.type]:render(v)
end
if oldrender then
oldrender()
end
end)
end)
function decor:click_filter(press, x, y)
local c = {}
for _, v in pairs(self.objects) do
if v.click and x >= v.x - v.xc and y >= v.y - v.yc and
x < v.x - v.xc + v.w and y < v.y - v.yc + v.h then
if v[2] == 'txt' then
if not press then
table.insert(c, v)
end
else
table.insert(c, v)
end
end
end
if #c == 0 then
return false
end
local e = c[1]
for _, v in ipairs(c) do
if v.z == e.z then
if v.name > e.name then
e = v
end
elseif v.z < e.z then
e = v
end
end
return e
end
function decor:cache_clear()
self.img:clear();
self.fnt:clear();
end
function decor:load()
-- for _, v in pairs(self.fonts) do
-- self:fnt(v)
-- end
-- for _, v in pairs(self.sprites) do
-- self:spr(v)
-- end
for _, v in pairs(self.objects) do
self:new(v)
end
end
std.mod_cmd(
function(cmd)
if cmd[1] ~= '@decor_click' then
return
end
local nam = cmd[2]
local e = decor.objects[nam]
local t = e[2]
local press, x, y, btn = cmd[3], cmd[4], cmd[5], cmd[6]
local r, v
local a
if type(decor[t].click) == 'function' then
a = decor[t]:click(e, press, x, y, btn)
else
a = { }
end
table.insert(a, 1, nam)
table.insert(a, 2, press)
table.insert(a, 3, x - e.xc)