-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlily_single.lua
1009 lines (882 loc) · 27.1 KB
/
lily_single.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
-- LOVE Asset Async Loader
-- Copyright (c) 2021 Miku AuahDark
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
-- 3. This notice may not be removed or altered from any source distribution.
-- NOTICE: For custom `love.run` users.
-- 1. You have to explicitly pass event with name "lily_resp"
-- to `love.handlers.lily_resp` along with all of it's arguments.
-- 2. When you're handling "quit" event and you integrate Lily into
-- your `love.run` loop, call `lily.quit` before `return`.
-- Need love module
local love = require("love")
assert(love._version >= "11.0", "Lily v3.x require at least LOVE 11.0")
-- Need love.event and love.thread
assert(love.event, "Lily requires love.event. Enable it in conf.lua or require it manually!")
assert(love.thread, "Lily requires love.thread. Enable it in conf.lua or require it manually!")
local modulePath = select(1, ...):match("(.-)[^%.]+$")
local lily = {
_VERSION = "3.0.12",
-- Loaded modules
modules = {},
-- List of threads
threads = {},
-- Function handler
handlers = {},
-- Request list
request = {}
}
-- List of excluded modules to be loaded (doesn't make sense to be async)
-- PS: "event" module will be always loaded regardless.
local excludedModules = {
"event",
"joystick",
"keyboard",
"math",
"mouse",
"physics",
"system",
"timer",
"touch",
"window"
}
-- List all loaded LOVE modules using hidden "love._modules" table
for name in pairs(love._modules) do
local f = false
for i = 1, #excludedModules do
if excludedModules[i] == name then
-- Excluded
f = true
break
end
end
-- If not excluded, add it.
if not(f) then
lily.modules[#lily.modules + 1] = name
end
end
-- We have some ways to get processor count
local amountOfCPU = 1
if love.system then
-- love.system is loaded. We can use that.
amountOfCPU = love.system.getProcessorCount()
elseif love._os == "Windows" then
-- Windows. Use NUMBER_OF_PROCESSORS environment variable
amountOfCPU = tonumber(os.getenv("NUMBER_OF_PROCESSORS"))
-- We still have some workaround if that fails
if not(amountOfCPU) and os.execute("wmic exit") == 0 then
-- Use WMIC
local a = io.popen("wmic cpu get NumberOfLogicalProcessors")
a:read("*l")
amountOfCPU = a:read("*n")
a:close()
end
-- If it's fallback to 1, it's either very weird system configuration!
-- (except if the CPU only has 1 processor)
amountOfCPU = amountOfCPU or 1
elseif os.execute() == 1 then
-- Ok we have shell support
if os.execute("nproc") == 0 then
-- Use nproc
local a = io.popen("nproc", "r")
amountOfCPU = a:read("*n")
a:close()
end
-- Fallback to single core (discouraged, it will perform same as love-loader)
end
-- Limit CPU to 4. Imagine how many threads will be created when
-- someone runs this in threadripper.
amountOfCPU = math.min(amountOfCPU, 4)
-- Dummy channel used to signal main thread that there's error
local errorChannel = love.thread.newChannel()
-- Main channel used to push task
lily.taskChannel = love.thread.newChannel()
-- Main channel used to pull task
lily.dataPullChannel = love.thread.newChannel()
-- Main channel to determine how to push event
lily.updateModeChannel = love.thread.newChannel()
lily.updateModeChannel:push("automatic") -- Use LOVE event handling by default
-- Variable used to indicate that embedded code should be used
-- instead of loading file (lily_single)
local lilyThreadScript = nil
-- Function to initialize threads. Must be declared as local
-- then called later
local function initThreads()
for i = 1, amountOfCPU do
-- Create thread
local a = love.thread.newThread(
lilyThreadScript or
(modulePath:gsub("%.", "/").."lily_thread.lua")
)
-- Arguments are:
-- Loaded modules
-- errorChannel
-- taskChannel
-- dataPullChannel
-- updateModeChannel
a:start(lily.modules, errorChannel, lily.taskChannel, lily.dataPullChannel, lily.updateModeChannel)
lily.threads[i] = a
end
end
--luacheck: push no unused args
----------------
-- LilyObject --
----------------
local lilyObjectMethod = {}
local lilyObjectMeta = {__index = lilyObjectMethod}
-- Complete function
function lilyObjectMethod.complete(userdata, ...)
end
-- On error function
function lilyObjectMethod.error(userdata, errorMessage, source)
error(errorMessage.."\n"..source)
end
function lilyObjectMethod:onComplete(func)
self.complete = assert(
type(func) == "function" and func,
"bad argument #1 to 'lilyObject:onComplete' (function expected)"
)
return self
end
function lilyObjectMethod:onError(func)
self.error = assert(
type(func) == "function" and func,
"bad argument #1 to 'lilyObject:onError' (function expected)"
)
return self
end
function lilyObjectMethod:setUserData(userdata)
self.userdata = userdata
return self
end
function lilyObjectMethod:isComplete()
return not(not(self.values))
end
function lilyObjectMethod:getValues()
assert(self.values, "Incomplete request")
return unpack(self.values)
end
function lilyObjectMeta:__tostring()
return "LilyObject: "..self.requestType
end
---------------------
-- MultiLilyObject --
---------------------
local multiObjectMethod = {}
local multiObjectMeta = {__index = multiObjectMethod}
-- On loaded function (noop)
multiObjectMethod.loaded = lilyObjectMethod.complete
-- On error function
function multiObjectMethod.error(userdata, lilyIndex, errorMessage, source)
error(errorMessage.."\n"..source)
end
-- On complete function (noop)
multiObjectMethod.complete = lilyObjectMethod.complete
-- Internal function for child lilies error handler
local function multiObjectChildErrorHandler(userdata, errorMessage, source)
-- Userdata is {index, parentObject}
local multi = userdata[2]
multi.error(multi.userdata, userdata[1], errorMessage, source)
end
-- Internal function used for child lilies onComplete callback
local function multiObjectOnLoaded(info, ...)
-- Info is {index, parentObject}
local multiLily = info[2]
multiLily.completedRequest = multiLily.completedRequest + 1
multiLily.loaded(multiLily.userdata, info[1], select(1, ...))
-- If it's complete, then call onComplete callback of MultiLilyObject
if multiLily:isComplete() then
-- Process
local output = {}
for i = 1, #multiLily.lilies do
output[i] = multiLily.lilies[i].values
end
multiLily.complete(multiLily.userdata, output)
end
end
function multiObjectMethod:onLoaded(func)
self.loaded = assert(
type(func) == "function" and func,
"bad argument #1 to 'lilyObject:onLoaded' (function expected)"
)
return self
end
function multiObjectMethod:onComplete(func)
self.complete = assert(
type(func) == "function" and func,
"bad argument #1 to 'lilyObject:onComplete' (function expected)"
)
return self
end
function multiObjectMethod:onError(func)
self.error = assert(
type(func) == "function" and func,
"bad argument #1 to 'lilyObject:onError' (function expected)"
)
return self
end
function multiObjectMethod:setUserData(userdata)
self.userdata = userdata
return self
end
function multiObjectMethod:isComplete()
return self.completedRequest >= #self.lilies
end
function multiObjectMethod:getValues(index)
assert(self:isComplete(), "Incomplete request")
if index == nil then
local output = {}
for i = 1, #self.lilies do
output[i] = self.lilies[i].values
end
return output
end
return assert(self.lilies[index], "Invalid index"):getValues()
end
function multiObjectMethod:getCount()
return #self.lilies
end
function multiObjectMethod:getLoadedCount()
return self.completedRequest
end
multiObjectMeta.__len = multiObjectMethod.getCount
-- luacheck: pop
-- Lily global event handling function
local function lilyEventHandler(reqID, v1, v2)
-- Check if specified request exist
if lily.request[reqID] then
local lilyObject = lily.request[reqID]
lily.request[reqID] = nil
-- Check for error
if v1 == errorChannel then
-- Second argument is the error message
lilyObject.error(lilyObject.userdata, v2, lilyObject.trace)
else
-- "v2" is returned values
-- Call main thread handler for specified request type
local values = {pcall(lily.handlers[lilyObject.requestType], lilyObject, unpack(v2))}
-- If values[1] is false then there's error
if not(values[1]) then
lilyObject.error(lilyObject.userdata, values[2])
else
-- No error. Remove first value (pcall status)
table.remove(values, 1)
-- Set values table
lilyObject.values = values
lilyObject.complete(lilyObject.userdata, unpack(values))
end
end
end
end
-- Add Lily event handler to love.handlers (lily_resp)
love.handlers.lily_resp = lilyEventHandler
--- Get amount of thread for processing
-- In most cases, this is amount of logical CPU available.
-- @treturn number Amount of threads used by Lily.
function lily.getThreadCount()
return amountOfCPU
end
--- Uninitializes Lily and used threads.
-- Call this just before your game quit (inside `love.quit()`).
-- Not calling this function in iOS and Android can cause
-- strange crash when re-starting your game!
function lily.quit()
-- Clear up the task channel
while lily.taskChannel:getCount() > 0 do
lily.taskChannel:pop()
end
-- Push quit request in task channel
-- Anything that is not a table is considered as "exit"
for i = 1, amountOfCPU do
lily.taskChannel:push(i)
end
-- Clean up threads
for i = 1, amountOfCPU do
local t = lily.threads[i]
if t then
-- Wait
t:wait()
-- Clear
lily.threads[i] = nil
end
end
-- Reset package table
package.loaded.lily = nil
end
do
local function atomicSetUpdateMode(_, mode)
lily.updateModeChannel:pop()
lily.updateModeChannel:push(mode)
end
--- Set update mode.
-- tell Lily to pull data by using LOVE event handler or by
-- using `lily.update` function.
-- @tparam string mode Either `automatic` or `manual`.
function lily.setUpdateMode(mode)
if mode ~= "automatic" and mode ~= "manual" then
error("bad argument #1 to 'setUpdateMode' (\"automatic\" or \"manual\" expected)", 2)
end
-- Set update mode
lily.updateModeChannel:performAtomic(atomicSetUpdateMode, mode)
end
end -- do
local function manualProcessSingleData()
local count = lily.dataPullChannel:getCount()
local processed = false
if count > 0 then
-- Pop data
local data = lily.dataPullChannel:pop()
-- Pass to event handler
lilyEventHandler(data[1], data[2], data[3])
processed = true
end
return count, processed
end
--- Pull processed data from other threads.
-- Signals other loader object (calling their callback function) when necessary.
function lily.update(timeout)
timeout = timeout or -1
local left = -1
local count = 0
if love.timer and timeout >= 0 then
local t = love.timer.getTime() + timeout
while love.timer.getTime() < t and (left > 0 or left == -1) do
local processed
left, processed = manualProcessSingleData()
count = count + (processed and 1 or 0)
end
else
-- No love.timer (can't use timeout object) or timeout is negative.
while (left > 0 or left == -1) do
local processed
left, processed = manualProcessSingleData()
count = count + (processed and 1 or 0)
end
end
return count, math.max(left, 0)
end
----------------------------------------
-- Lily async asset loading functions --
----------------------------------------
local function dummyhandler(...)
return select(2, ...)
end
local function wraphandler(fname)
return function(...)
return fname(select(2, ...))
end
end
-- Internal function to create request ID
local function createReqID()
local t = {}
for _ = 1, 64 do
t[#t + 1] = string.char(math.random(0, 255))
end
return table.concat(t)
end
-- Internal function which return function to create LilyObject
-- with specified request type
local function newLilyFunction(requestType, handlerFunc)
local tracebackname = "Function is lily."..requestType
-- This function is the constructor
lily[requestType] = function(...)
-- Initialize
local this = setmetatable({}, lilyObjectMeta)
local reqID = createReqID()
local args = {...}
-- Values
this.requestType = requestType
this.done = false
this.values = nil
this.trace = debug.traceback(tracebackname)
-- Push task
-- See structure in lily_thread.lua
local treq = {reqID, requestType, #args}
-- Push arguments
for i = 1, #args do
treq[i + 3] = args[i]
end
-- Add to task channel
lily.taskChannel:push(treq)
-- Insert to request table (to prevent GC collecting it)
lily.request[reqID] = this
-- Return
return this
end
-- Handler function
lily.handlers[requestType] = handlerFunc and wraphandler(handlerFunc) or dummyhandler
end
-- love.audio
if love.audio then
newLilyFunction("newSource")
end
-- love.data (always exists)
if love.data then
local function dataGetString(value)
return value:getString()
end
newLilyFunction("compress", dataGetString)
newLilyFunction("decompress", dataGetString)
end
-- love.filesystem (always exists)
if love.filesystem then
newLilyFunction("append")
newLilyFunction("newFileData")
newLilyFunction("read")
newLilyFunction("readFile")
newLilyFunction("write")
newLilyFunction("writeFile")
end
-- Most love.graphics functions are not meant for multithread, but we can circumvent that.
if love.graphics then
-- Internal function
local function defMultiToSingleError(udata, _, msg)
udata[1].error(udata[1].userdata, msg)
end
-- Internal function to generate complete callback
local function defImageMultiGen(f)
return function(udata, values)
local this = udata[1]
local v = {}
for i = 1, #values do
v[i] = values[i][1]
end
this.values = {f(v, udata[2])}
this.complete(this.userdata, unpack(this.values))
end
end
-- Internal function to generate layering-based function
local function genLayerImage(name, handlerFunc)
local defCompleteFunction = defImageMultiGen(handlerFunc)
lily.handlers[name] = wraphandler(handlerFunc)
lily[name] = function(layers, setting)
local multiCount = {}
for _, v in ipairs(layers) do
if type(v) == "table" then
-- List of mipmaps
error("Nested table (mipmaps) is not supported at the moment")
else
multiCount[#multiCount + 1] = {lily.newImageData, v, setting}
end
end
-- Check count
if #multiCount == 0 then
error("Layers is empty", 2)
end
-- Initialize
local this = setmetatable({}, lilyObjectMeta)
-- Values
this.requestType = name
this.done = false
this.values = nil
this.multi = lily.loadMulti(multiCount)
:setUserData({this, setting})
:onComplete(defCompleteFunction)
:onError(defMultiToSingleError)
-- Return
return this
end
end
-- Basic function which is supported on all systems
newLilyFunction("newFont", love.graphics.newFont)
newLilyFunction("newImage", love.graphics.newImage)
newLilyFunction("newVideo", love.graphics.newVideo)
-- Get texture type
local texType = love.graphics.getTextureTypes()
-- Not all system support cube image. Make it unavailable in that case.
if texType.cube then
-- Another internal function
local defNewCubeImageMulti = defImageMultiGen(love.graphics.newCubeImage)
lily.newCubeImage = function(layers, setting)
local multiCount = {}
-- If it's table, that means it contains list of files
if type(layers) == "table" then
assert(#layers == 6, "Invalid list of files (must be exactly 6)")
for _, v in ipairs(layers) do
if type(v) == "table" then
-- List of mipmaps
error("Nested table (mipmaps) is not supported at the moment")
else
multiCount[#multiCount + 1] = {lily.newImage, v, setting}
end
end
-- Are you specify tons of "Image" objects?
if #multiCount == 0 then
error("Nothing to parallelize", 2)
end
end
-- Initialize
local this = setmetatable({}, lilyObjectMeta)
local reqID = createReqID()
-- Values
this.requestType = "newCubeImage"
this.done = false
this.values = nil
-- If multi count is 0, that means it's just single file
if #multiCount == 0 then
-- Insert to request table
lily.request[reqID] = this
-- Create and push new task
local treq = {reqID, "newImage", 2, layers, setting}
lily.taskChannel:push(treq)
else
this.multi = lily.loadMulti(multiCount)
:setUserData({this, setting})
:onComplete(defNewCubeImageMulti)
:onError(defMultiToSingleError)
end
-- Return
return this
end
lily.handlers.newCubeImage = wraphandler(love.graphics.newCubeImage)
end
-- Not all system support array image
if texType.array then
genLayerImage("newArrayImage", love.graphics.newArrayImage)
end
-- Not all system support volume image
if texType.volume then
genLayerImage("newVolumeImage", love.graphics.newVolumeImage)
end
end
if love.image then
newLilyFunction("encodeImageData")
newLilyFunction("newImageData")
newLilyFunction("newCompressedData")
newLilyFunction("pasteImageData")
end
if love.sound then
newLilyFunction("newSoundData")
end
if love.video then
newLilyFunction("newVideoStream")
end
function lily.loadMulti(tabdecl)
local this = setmetatable({
lilies = {},
completedRequest = 0
}, multiObjectMeta)
for i = 1, #tabdecl do
local tab = tabdecl[i]
-- tab[1] is lily name, the rest is arguments
local func
if type(tab[1]) == "string" then
if lily[tab[1]] and lily.handlers[tab[1]] then
func = lily[tab[1]]
else
error("Invalid lily function ("..tab[1]..") at index #"..i)
end
elseif type(tab[1]) == "function" then
-- Must be `lily[function]`
func = tab[1]
else
error("Invalid lily function at index #"..i)
end
local lilyobj = func(unpack(tab, 2))
:setUserData({i, this})
:onComplete(multiObjectOnLoaded)
:onError(multiObjectChildErrorHandler)
this.lilies[#this.lilies + 1] = lilyobj
end
return this
end
lilyThreadScript = [===[
-- LOVE Asset Async Loader (Thread Part)
-- Copyright (c) 2021 Miku AuahDark
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
-- 3. This notice may not be removed or altered from any source distribution.
-- Task channel structure (inside table)
-- request ID (string) or error channel to signal quit
-- Task name (string)
-- Amount of arguments (number)
-- n-amount of arguments (Variant)
-- Load LOVE module
local love = require("love")
require("love.event")
require("love.data")
-- Non-thread-safe modules
local ntsModules = {"graphics", "window"}
-- But love.graphics must be treated specially
local hasGraphics = false
-- See lily.lua initThreads() function for more information about
-- arguments passed
local modules, errorChannel, taskChannel, dataPullChannel, updateModeChannel = ...
-- Load modules
for _, v in pairs(modules) do
local f = false
if v == "graphics" then hasGraphics = true end
for i = 1, #ntsModules do
if ntsModules[i] == v then
f = true
break
end
end
if not(f) then
require("love."..v)
end
end
-- Handlers
local lilyProcessor = {}
local getUpdateMode
do
local function atomicFuncGetUpdateMode()
return updateModeChannel:peek()
end
function getUpdateMode()
return updateModeChannel:performAtomic(atomicFuncGetUpdateMode)
end
end
-- Function to push data
local function pushData(reqID, v1, v2)
local updateMode = getUpdateMode()
if updateMode == "automatic" then
-- Event push
love.event.push("lily_resp", reqID, v1, v2)
elseif updateMode == "manual" then
-- Channel push
dataPullChannel:push({reqID, v1, v2})
end
end
-- Macro function to create handler
local function lilyHandlerFunc(reqtype, minarg, handler)
lilyProcessor[reqtype] = {minarg = minarg, handler = handler}
end
if love.audio then
lilyHandlerFunc("newSource", 2, function(t)
return love.audio.newSource(t[1], t[2])
end)
end
-- Always exist
if love.data then
local function isCompressedData(t)
return type(t) == "userdata" and t:typeOf("CompressedData")
end
lilyHandlerFunc("compress", 1, function(t)
return love.data.compress("data", t[1] or "lz4", t[2], t[3])
end)
lilyHandlerFunc("decompress", 1, function(t)
if type(t[2]) == "userdata" and t[2]:typeOf("Data") and love._version < "11.2" then
-- Prior to LOVE 11.2, love.data.decompress can't decompress
-- Data object (not CompressedData) due to bug in the code
-- when handling this variant. So, convert it to string before
-- passing it.
t[2] = t[2]:getString()
end
return love.data.decompress("data", t[1], t[2])
end)
end
-- Always exist
if love.filesystem then
lilyHandlerFunc("append", 2, function(t)
return assert(love.filesystem.append(t[1], t[2], t[3]))
end)
lilyHandlerFunc("newFileData", 1, function(t)
return assert(love.filesystem.newFileData(t[1], t[2], t[3]))
end)
lilyHandlerFunc("read", 1, function(t)
return assert(love.filesystem.read(t[1], t[2]))
end)
lilyHandlerFunc("readFile", 1, function(t)
return t[1].read(t[1], t[2])
end)
lilyHandlerFunc("write", 2, function(t)
return assert(love.filesystem.write(t[1], t[2], t[3]))
end)
lilyHandlerFunc("writeFile", 2, function(t)
return t[1].write(t[1], t[2], t[3])
end)
end
if hasGraphics then
lilyHandlerFunc("newFont", 1, function(t)
return love.font.newRasterizer(t[1], t[2], t[3], t[4])
end)
lilyHandlerFunc("newImage", 1, function(t)
local s, x = pcall(love.image.newImageData, t[1])
return (s and x or love.image.newCompressedData(t[1])), select(2, unpack(t))
end)
lilyHandlerFunc("newVideo", 1, function(t)
return love.video.newVideoStream(t[1]), t[2]
end)
lilyHandlerFunc("newCubeImage", 1, function(t)
-- If it's not table, then it should be processed with
-- love.image.newCubeFaces (undocumented function)
if type(t[1]) ~= "table" then
local id = t[1]
if type(id) ~= "userdata" or id:type() ~= "ImageData" then
id = love.image.newImageData(id)
end
t[1] = {love.image.newCubeFaces(id)}
end
for i = 1, 6 do
local v = t[1][i]
local t = v:type()
if t ~= "userdata" or (t ~= "ImageData" and t ~= "CompressedImageData") then
t[1][i] = love.image.newImageData(v)
end
end
return t[1], t[2]
end)
end
if love.image then
lilyHandlerFunc("encodeImageData", 1, function(t)
return t[1].encode(t[1], t[2])
end)
lilyHandlerFunc("newImageData", 1, function(t)
return love.image.newImageData(t[1])
end)
lilyHandlerFunc("newCompressedData", 1, function(t)
return love.image.newCompressedData(t[1])
end)
lilyHandlerFunc("pasteImageData", 7, function(t)
return t[1].paste(t[1], t[2], t[3], t[4], t[5], t[6], t[7])
end)
end
if love.sound then
lilyHandlerFunc("newSoundData", 1, function(t)
return love.sound.newSoundData(t[1], t[2], t[3], t[4])
end)
end
if love.video then
lilyHandlerFunc("newVideoStream", 1, function(t)
return love.video.newVideoStream(t[1])
end)
end
local handlerFunc
local handlerArg
local function callHandler()
return handlerFunc(handlerArg)
end
-- Main loop
while true do
collectgarbage()
collectgarbage()
-- Get request (see the beginning of file for table format)
local request = taskChannel:demand()
-- If it's not table then quit signaled
if type(request) ~= "table" then return end
local tasktype = request[2]
-- If it's exist in lilyProcessor table that means it's valid event
if lilyProcessor[tasktype] then
local task = lilyProcessor[tasktype]
local argc = request[3]
-- Check minarg count
if argc < task.minarg then
-- Too few arguments
pushData(request[1], errorChannel, string.format(
"'%s': too few arguments (at least %d is required)",
tasktype,
task.minarg
))
else
local argv = {}
-- Get arguments
for i = 1, argc do
argv[i] = request[3 + i] -- 4th and later are arguments
end
-- Call
handlerFunc = task.handler
handlerArg = argv
local result = {xpcall(callHandler, debug.traceback)}
if result[1] == false then
-- Error
pushData(request[1], errorChannel, string.format("'%s': %s", tasktype, result[2]))
end
-- Push data (v1 is true, v2 is return values)
table.remove(result, 1)
pushData(request[1], true, result)
end
end
end
]===]
-- do not remove this comment!
initThreads()
return lily
--[[
Changelog:
v3.0.12: 23-11-2021
> Fixed lily.update count value always 1 if no timeout is specified and there are no pending queues.
v3.0.11: 01-10-2021
> Added timeout parameter to lily.update. Requires love.timer.
v3.0.10: 23-07-2021
> Fixed lily.newArrayImage and lily.newVolumeImage
v3.0.9: 14-06-2021
> Any lily request now saves the traceback of the caller and will be printed on error
v3.0.8: 11-03-2021
> Fixed `lily.setUpdateMode`
> Thread: call `collectgarbage()` twice before serving
v3.0.7: 15-06-2020
> Fixed `lily.newFont` ignores type hinting and DPI scale
v3.0.6: 08-04-2019
> Reorder lily.newImage image loading function
> Fixed lily.newCubeImage is missing
v3.0.5: 26-12-2018
> Limit threads to 4
v3.0.4: 25-11-2018
> Fixed `lily.decompress` error when passing Data object in LOVE 11.1 and earlier
> Fixed `lily.compress` error
> Make error message more comprehensive
v3.0.3: 12-09-2018
> Explicitly check for LOVE 11.0
> `lily.compress` and `lily.decompress` now follows v2.x API
> Fixed multi:getValues() errors even multi:isComplete() is true
v3.0.2: 18-07-2018
> Fixed calling `lily.newCompressedData` cause Lily thread to crash (fix issue #1)
v3.0.1: 16-07-2018
> Fixed `lily.newFont` ignores size parameter
v3.0.0: 13-06-2018
> Major refactoring
> Allow to set update mode, whetever to use Lily style (automatic) or love-loader style (manual)
> New functions: newArrayImage and newVolumeImage (only on supported systems)
> Loading speed improvements
v2.0.8: 09-06-2018
> Fixed additional arguments were not passed to task handler in separate thread
> Make error message more meaningful (but the stack traceback is still meaningless)
v2.0.7: 06-06-2018
> Fixed `lily.quit` deadlock.
v2.0.6: 05-06-2018
> Added `lily.newCubeImage`
> Fix error handler function signature incorrect for MultiLilyObject
> Added `MultiLilyObject:getLoadedCount()`
v2.0.5: 02-05-2018
> Fixed LOVE 11.0 detection
v2.0.4: 09-01-2018
> Fixed if love.data emulation is used in 0.10.0
v2.0.2: 04-01-2018
> Fixed random crash (again)
> Fixed when lily in folder, it doesn't work
v2.0.1: 03-01-2018
> Fixed random crash