-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscenes.lua
508 lines (453 loc) · 14.2 KB
/
scenes.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
-- Scenes for Solar2D by ponywolf
-- define module
local M = {}
-- local
local list = {}
local stage = display.getCurrentStage()
require "shader.static"
-- public
-- scene has it's own stage
M.stage = display.newGroup()
stage:insert(M.stage)
-- scene has an always on top overlay group
M.overlay = display.newGroup()
--M.overlay._isRenderer = true
stage:insert(M.overlay)
-- modal screen dim
local function dim(percent, modal)
local instance = display.newRect(
display.contentCenterX,
display.contentCenterY,
display.actualContentWidth * 2,
display.actualContentHeight * 2)
instance:setFillColor(0,0,0,1)
instance.alpha = percent or 0.5
instance.percent = percent or 0.5
instance.isHitTestable = true
if modal then
local function disable(event)
return instance.parent and instance.parent.isVisible
end
instance:addEventListener("touch", disable)
instance:addEventListener("tap", disable)
end
return instance
end
-- fade to black
local function fadeOut(onComplete, time, delay)
local color = { 0, 0, 0, 1 }
local instance = display.newRect(
display.contentCenterX,
display.contentCenterY,
display.actualContentWidth * 2,
display.actualContentHeight * 2)
instance:setFillColor(unpack(color))
instance.alpha = 0
local function destroy()
if onComplete then onComplete() end
display.remove(instance)
end
local function cancel()
display.remove(instance)
end
transition.to(instance, {tag = "_scenes", alpha = 1, time = time or 500, delay = delay or 0, transition = easing.outQuad, onCancel = cancel, onComplete=destroy})
return instance
end
-- fade from black
local function fadeIn(onComplete, time, delay)
local color = { 0, 0, 0, 1 }
local instance = display.newRect(
display.contentCenterX,
display.contentCenterY,
display.actualContentWidth,
display.actualContentHeight)
instance:setFillColor(unpack(color))
instance.alpha = 1
local function destroy()
if onComplete then onComplete() end
display.remove(instance)
end
local function cancel()
display.remove(instance)
end
transition.to(instance, {tag = "_scenes", alpha = 0, time = time or 500, delay = delay or 1, transition = easing.outQuad, onCancel = cancel, onComplete=destroy})
return instance
end
-- fade to black
local function tvOut(onComplete, time, delay)
local color = { 1, 1, 1, 1 }
local instance = display.newRect(
display.contentCenterX,
display.contentCenterY,
display.actualContentWidth,
display.actualContentHeight)
instance:setFillColor(unpack(color))
instance.fill.effect = "filter.custom.static"
instance.yScale = 0.001
local function destroy()
if onComplete then onComplete() end
display.remove(instance)
end
local function cancel()
display.remove(instance)
end
transition.to(instance, {tag = "_scenes", yScale = 1, time = time or 500, delay = delay or 250, transition = easing.outQuad, onCancel = cancel, onComplete=destroy})
return instance
end
-- TV effect
local function tvIn(onComplete, time, delay)
local color = { 1, 1, 1, 1 }
local instance = display.newRect(
display.contentCenterX,
display.contentCenterY,
display.actualContentWidth,
display.actualContentHeight)
instance:setFillColor(unpack(color))
instance.fill.effect = "filter.custom.static"
instance.alpha = 1
local function destroy()
if onComplete then onComplete() end
display.remove(instance)
end
local function cancel()
display.remove(instance)
end
transition.to(instance, {tag = "_scenes", yScale = 0.001, delay = 1250, time = time or 500, delay = delay or 250, transition = easing.outQuad, onCancel = cancel, onComplete=destroy})
return instance
end
local function irisOut(onComplete, time, delay)
local color = { 0, 0, 0, 1 }
local x,y = display.contentCenterX, display.contentCenterY
local wide = display.actualContentHeight > display.actualContentWidth and display.actualContentHeight or display.actualContentWidth
local r = 128
local scale = wide/r + 0.15
local instance = display.newCircle(x,y,r)
instance:setStrokeColor(unpack(color))
instance:setFillColor(0,0,0,0)
instance.strokeWidth = 0
instance.xScale, instance.yScale = scale, scale
instance:setFillColor(0,0,0,0)
instance.alpha = 1
local function destroy()
if onComplete then onComplete() end
display.remove(instance)
end
local function cancel()
display.remove(instance)
end
transition.to(instance, {tag = "_scenes", strokeWidth = 255, time = time or 500, delay = delay or 0, transition = easing.outQuad, onCancel = cancel, onComplete=destroy})
return instance
end
local function irisIn(onComplete, time, delay)
local color = { 0, 0, 0, 1 }
local x,y = display.contentCenterX, display.contentCenterY
local wide = display.actualContentHeight > display.actualContentWidth and display.actualContentHeight or display.actualContentWidth
local r = 128
local scale = wide/r + 0.15
local instance = display.newCircle(x,y,r)
instance:setStrokeColor(unpack(color))
instance:setFillColor(0,0,0,0)
instance.strokeWidth = 255
instance.xScale, instance.yScale = scale, scale
instance.alpha = 1
local function destroy()
if onComplete then onComplete() end
display.remove(instance)
end
local function cancel()
display.remove(instance)
end
transition.to(instance, {tag = "_scenes", strokeWidth = 0, time = time or 500, delay = delay or 0, transition = easing.inQuad, onCancel = cancel, onComplete=destroy})
return instance
end
function M.list()
print("Scene list")
print("==========")
for k,_ in pairs(list) do
print ("Scene:",k)
end
print("==========")
end
function M.new(template, options)
local scene = require(template)
options = options or {}
local name = options.name or scene.name or template
M.current = scene
-- does the scene already exist?
if list[name] then
M.remove(name, options)
end
-- does the scene exist?
if not scene then
print ("ERROR: Scene does not exist", template)
return false
end
-- create scene's view
scene.view = display.newGroup()
local function hasView()
return (scene.view and scene.view.numChildren)
end
scene.view.isVisible = false
-- send resize event
local function resize(event)
if hasView() and scene.resize then
scene:resize(event)
end
end
Runtime:addEventListener("resize", resize)
-- send enterFrame event
local function enterFrame(event)
if hasView() and scene.enterFrame then
scene:enterFrame(event)
end
if scene._modal and scene._modal.toBack then
scene._modal:toBack()
end
end
Runtime:addEventListener("enterFrame", enterFrame)
-- if we're modal give us a dim
if options.modal then
scene._modal = dim(options.dim, true)
scene.view:insert(scene._modal)
scene._modal:toBack()
end
-- send finalize event
function scene.view:finalize(event)
Runtime:removeEventListener("resize", resize)
Runtime:removeEventListener("enterFrame", enterFrame)
if scene.finalize then
scene:finalize(event)
end
end
scene.view:addEventListener("finalize")
-- add scene to list
scene.name = name
list[name] = scene
scene.template = template
-- send create event
if scene.create then
scene:create({options = options})
end
return scene
end
function M.find(name)
M.list()
local scene = list[name]
if not scene then
print ("ERROR: Scene does not exist", name)
return false
end
return scene
end
function M.show(name, options)
local scene = list[name]
options = options or {}
local onComplete = options.onComplete
if not scene._modal then
M.current = scene
end
-- does the scene exist?
if not scene then
print ("ERROR: Scene does not exist", name)
return false
end
if scene.resize then
scene:resize()
end
if options.transition == "fade" then
if scene.show then scene:show({phase = "began", options = options}) end
scene.view.isVisible = true
scene.view:toFront()
local function ended()
if scene.toBack then scene:toBack() end
if scene.show then scene:show({phase = "ended", options = options}) end
if onComplete then onComplete() end
end
M.overlay:insert(fadeIn(ended, options.time, options.delay))
M.overlay:toFront()
elseif options.transition == "iris" then
if scene.show then scene:show({phase = "began", options = options}) end
scene.view.isVisible = true
scene.view:toFront()
local function ended()
if scene.show then scene:show({phase = "ended", options = options}) end
if onComplete then onComplete() end
end
M.overlay:insert(irisIn(ended, options.time, options.delay))
M.overlay:toFront()
elseif options.transition == "tv" then
if scene.show then scene:show({phase = "began", options = options}) end
scene.view.isVisible = true
scene.view:toFront()
local function ended()
if scene.show then scene:show({phase = "ended", options = options}) end
if onComplete then onComplete() end
end
M.overlay:insert(tvIn(ended, options.time, options.delay))
M.overlay:toFront()
timer.performWithDelay(30, function () M.overlay:toFront() end)
else -- no transition
if scene.show then scene:show({phase = "began", options = options}) end
scene.view.isVisible = true
scene.view:toFront()
if scene.show then scene:show({phase = "ended", options = options}) end
if onComplete then onComplete() end
end
-- show dim
if scene._modal then
scene._modal.alpha = 0
transition.to(scene._modal, { time = 66, alpha = scene._modal.percent })
end
end
function M.hide(name, options)
M.overlay:toFront()
local scene = list[name]
options = options or {}
local onComplete = options.onComplete
local recycle = options.recycle
-- does the scene exist?
if not scene then
print ("ERROR: Scene does not exist", name)
return false
end
if options.transition == "fade" then
if scene.hide then scene:hide({phase = "began", options = options}) end
local function ended()
if scene and scene.view then
scene.view:toBack()
scene.view.isVisible = false
end
if scene.hide then scene:hide({phase = "ended", options = options}) end
if onComplete then onComplete() end
if recycle then display.remove(scene) end
end
M.overlay:insert(fadeOut(ended, options.time, options.delay, recycle))
M.overlay:toFront()
elseif options.transition == "iris" then
if scene.hide then scene:hide({phase = "began", options = options}) end
local function ended()
if scene and scene.view then
scene.view:toBack()
scene.view.isVisible = false
end
if scene.hide then scene:hide({phase = "ended", options = options}) end
if onComplete then onComplete() end
if recycle then display.remove(scene) end
end
M.overlay:insert(irisOut(ended, options.time, options.delay))
M.overlay:toFront()
elseif options.transition == "tv" then
if scene.hide then scene:hide({phase = "began", options = options}) end
local function ended()
if scene and scene.view then
scene.view:toBack()
scene.view.isVisible = false
end
if scene.hide then scene:hide({phase = "ended", options = options}) end
if onComplete then onComplete() end
if recycle then display.remove(scene) end
end
M.overlay:insert(tvOut(ended, options.time, options.delay))
M.overlay:toFront()
timer.performWithDelay(30, function () M.overlay:toFront() end)
else -- no transition
if scene.hide then scene:hide({phase = "began", options = options}) end
local function hide()
scene.view:toBack()
scene.view.isVisible = false
if scene.hide then scene:hide({phase = "ended", options = options}) end
if onComplete then onComplete() end
if recycle then display.remove(scene) end
end
if scene._modal then
scene._modal.alpha = scene._modal.percent
transition.to(scene._modal, { time = 66, alpha = 0, onComplete = hide})
else
hide()
end
end
end
function M.switch(name, options)
local current = M.current and M.current.name
if current then
options = options or {}
local finalComplete = options.onComplete
options.onComplete = function ()
if options.recycle then M.remove(current) end
options.onComplete = finalComplete
M.show(name, options)
end
M.hide(current, options)
else
print ("ERROR: Current scene does not exist")
end
end
function M.remove(name, options)
local scene = list[name]
options = options or {}
-- does the scene exist?
if not scene then
print ("ERROR: Scene does not exist", name)
return false
end
scene.view.isVisible = false
-- optional send a quick destroy before removing the scene
if scene.destroy then
scene:destroy()
end
-- kill all transitions, remove scene's view, should auto kick off finalize()
local function cancelTransition(group)
if group.numChildren then
for i = group.numChildren, 1, -1 do
cancelTransition(group[i])
end
else
transition.cancel(group)
end
end
cancelTransition(scene.view)
display.remove(scene.view)
package.loaded[scene.template] = nil
scene.view = nil
scene = nil
list[name] = nil
if options.collectgarbage then
collectgarbage()
end
end
function M.reload(name)
local current = M.find(name)
local template = current.template
print(current, template)
if name and template then
M.remove(name)
M.new(template)
else
print ("ERROR: Unable to reload", name)
end
end
function M.reboot(name, options)
local scene = list[name]
options = options or {}
-- does the scene exist?
if not scene then
print ("ERROR: Scene does not exist", name)
return false
end
local template = M.find(name) and M.find(name).template
if name and template then
local function reload()
M.remove(name, { collectgarbage = true })
M.new(template)
M.show(name, {transition = options.transition, delay = options.delay, time = options.time })
end
M.hide(name, {transition = options.transition, time = options.time, delay = options.delay, onComplete = reload })
end
end
function M.restart()
transition.cancel("_scenes")
for k,_ in pairs(list) do
M.remove(k, { collectgarbage = true })
end
end
return M