-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtest_controller.lua
541 lines (380 loc) · 11.8 KB
/
test_controller.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
--====================================================================--
-- test_controller.lua
--
-- Sample code is MIT licensed, the same license which covers Lua itself
-- http://en.wikipedia.org/wiki/MIT_License
-- Copyright (C) 2015 David McCuskey. All Rights Reserved.
--====================================================================--
--====================================================================--
--== Ghost vs Monsters : Test Controller
--====================================================================--
-- Semantic Versioning Specification: http://semver.org/
local VERSION = "0.1.0"
--====================================================================--
--== Imports
local composer = require 'composer'
local Utils = require 'lib.dmc_corona.dmc_utils'
-- AppController gives us access to main controller and its components
-- so we don't have to re-create in the test_controller
--
local AppController = require 'app_controller'
--====================================================================--
--== Setup, Constants
-- Test Controller, will be setup later
--
local TestController = nil
-- App Controller / Instance
-- 'ACI' will be set later once ACI is instantiated
--
local ACI = nil
local W, H = display.contentWidth, display.contentHeight
local H_CENTER, V_CENTER = W*0.5, H*0.5
local DESTROY_DELAY_TIME = 10000
-- forward declares
local test_gameMainView
--====================================================================--
--== Support Functions
-- destroyObjIn()
-- function to run destruction on object
-- @param obj, object to destroy, has removeSelf()
-- @param params, table with optional keys:
-- time, delay in milliseconds
-- onDestroy, function to call before destruction
--
local function destroyObjIn( obj, params )
params = params or {}
if params.time == nil then params.time = DESTROY_DELAY_TIME end
--==--
timer.performWithDelay( params.time, function()
print( "Test: destroying object" )
if params.onDestroy then params.onDestroy() end
obj:removeSelf()
end)
end
local function destroySceneIn( name, params )
params = params or {}
if params.time == nil then params.time = DESTROY_DELAY_TIME end
--==--
timer.performWithDelay( params.time, function()
print( "Test: destroying scene" )
if params.onDestroy then params.onDestroy() end
composer.removeScene( name )
end)
end
--======================================================--
-- Test: Level Screen
local function test_levelScreen()
print( "test_levelScreen" )
local LevelScreen = require 'component.level_screen'
local o = LevelScreen:new()
o.x, o.y = 240, 160
local f = function( e )
print( "test_levelScreen" )
if e.type == o.ACTIVE then
print( "is active:", e.is_active )
elseif e.type == o.MENU then
print( "menu selected" )
else
print( "unknown event", e.type )
end
end
o:addEventListener( o.EVENT, f )
destroyObjIn( o )
end
--====================================================================--
--== Component Object Tests
--====================================================================--
--======================================================--
-- Test: Ghost Character
local function test_ghostCharacter()
print( "test_ghostCharacter" )
local GameView = require 'scene.game.game_view'
local ObjectFactory = require 'component.object_factory'
assert( type(ObjectFactory)=='table', "ERROR: loading Object Factory" )
local ge = test_gameMainView( true )
local o = ObjectFactory.create( 'ghost', {game_engine=ge} )
o.x, o.y = H_CENTER, 0
local f = function( e )
print( "MenuView Event" )
if e.type == o.SELECTED then
local data = e.data
local level = data.level
print( "level info:", level.info.name, level )
else
print( "unknown event" )
end
end
o:addEventListener( o.EVENT, f )
ge:startGamePlay()
destroyObjIn( o )
end
--======================================================--
-- Test: Monster Character
local function test_monsterCharacter()
print( "test_monsterCharacter" )
local GameView = require 'scene.game.game_view'
local ObjectFactory = require 'component.object_factory'
assert( type(ObjectFactory)=='table', "ERROR: loading Object Factory" )
local ge = test_gameMainView( true )
local o = ObjectFactory.create( ObjectFactory.MONSTER, {game_engine=ge} )
o.x, o.y = H_CENTER, V_CENTER
local f = function( event )
print( "Monster Event", event.type )
if event.type == o.STATE_DEAD then
print( "Monster is dead", event.force )
else
print( "unknown event" )
end
end
o:addEventListener( o.EVENT, f )
-- test collisions
timer.performWithDelay( 500, function() o:postCollision( {force=1.2} ) end)
timer.performWithDelay( 1000, function() o:postCollision( {force=2} ) end)
destroyObjIn( o )
end
--====================================================================--
--== Component View Tests
--====================================================================--
--======================================================--
-- Test: Game Over Overlay
local function test_gameOverOverlay()
print( "test_gameOverOverlay" )
local GameOverOverlay = require 'scene.game.gameover_overlay'
assert( type(GameOverOverlay)=='table' )
local o = GameOverOverlay:new{
width=W, height=H,
}
o.x, o.y = H_CENTER, 0
local f = function( event )
print( "GameOverOverlay Event" )
if event.type == o.FACEBOOK then
print( "facebook selected" )
elseif event.type == o.MENU then
print( "menu selected" )
elseif event.type == o.NEXT then
local result = event.data
print( "next level selected", result.name, result.level )
elseif event.type == o.OPEN_FEINT then
print( "open feint selected" )
elseif event.type == o.RESTART then
print( "restart selected" )
else
print( "unknown event", e.type )
end
end
o:addEventListener( o.EVENT, f )
timer.performWithDelay( 1, function()
o:hide()
end )
timer.performWithDelay( 1000, function()
o:show({outcome='win',score=122233244,bestscore=204342223})
end )
timer.performWithDelay( 3000, function()
o:hide()
end )
timer.performWithDelay( 5000, function()
o:show({outcome='lose',score=100,bestscore=204343})
end )
timer.performWithDelay( 8000, function()
o:hide()
end )
destroyObjIn( o )
end
--======================================================--
-- Test: Level Overlay
local function test_levelOverlay()
print( "test_levelOverlay" )
local LevelOverlay = require 'scene.menu.level_overlay'
assert( type(LevelOverlay)=='table' )
local o = LevelOverlay:new{
width=W, height=H,
}
o.x, o.y = H_CENTER, 0
local f = function( e )
print( "LevelOverlay Event" )
if e.type == o.CANCELED then
print( "selection canceled" )
elseif e.type == o.SELECTED then
local result = e.data
print( "level selected", result.name, result.level )
else
print( "unknown event", e.type )
end
end
o:addEventListener( o.EVENT, f )
destroyObjIn( o )
end
--======================================================--
-- Test: Load Overlay
local function test_loadOverlay()
print( "test_loadOverlay" )
local LoadOverlay = require 'component.load_overlay'
assert( type(LoadOverlay)=='table' )
local o = LoadOverlay:new{
width=W, height=H
}
o.x, o.y = H_CENTER, 0
local f = function( e )
print( "LoadOverlay Event" )
if e.type == o.COMPLETE then
print( "100% complete" )
else
print( "unknown event", e.type )
end
end
o:addEventListener( o.EVENT, f )
-- test loading
timer.performWithDelay( 1000, function() o.percent_complete=10 end )
timer.performWithDelay( 2000, function() o.percent_complete=40 end )
timer.performWithDelay( 3000, function() o.percent_complete=60 end )
timer.performWithDelay( 4000, function() o.percent_complete=40 end )
timer.performWithDelay( 5000, function() o.percent_complete=100 end )
destroyObjIn( o )
end
--======================================================--
-- Test: Pause Overlay
local function test_pauseOverlay()
print( "test_pauseOverlay" )
local PauseOverlay = require 'component.pause_overlay'
assert( type(PauseOverlay)=='table' )
local o = PauseOverlay:new{
width=W, height=H
}
o.x, o.y = H_CENTER, 0
local f = function( e )
print( "PauseOverlay Event" )
if e.type == o.ACTIVE then
print( "is active:", e.is_active )
elseif e.type == o.MENU then
print( "menu selected" )
else
print( "unknown event" )
end
end
o:addEventListener( o.EVENT, f )
destroyObjIn( o )
end
--====================================================================--
--== Core App View Tests
--====================================================================--
--======================================================--
-- Test: Game Main View
test_gameMainView = function( create_only )
print( "test_gameMainView" )
if create_only==nil then create_only = false end
--==--
local GameView = require 'scene.game.game_view'
assert( type(GameView)=='table', "ERROR: loading Menu View" )
local o = GameView:new{
width=W, height=H,
level_data=gService.level_mgr:getLevelData(1)
}
if create_only then return o end
-- note this one is aligned on left
o.x, o.y = 0, 0
local f = function( event )
print( "GameView Event" )
local target = event.target
if event.type == target.GAME_OVER_EVENT then
print( "game results:", event.best_score, event.score, event.outcome )
elseif event.type == target.GAME_EXIT_EVENT then
print( "game exit" )
else
print( "unknown event" )
end
end
o:addEventListener( o.EVENT, f )
o:startGamePlay()
destroyObjIn( o )
end
--======================================================--
-- Test: Menu Main View
local function test_menuMainView()
print( "test_menuMainView" )
local MenuView = require 'scene.menu.menu_view'
assert( type(MenuView)=='table', "ERROR: loading Menu View" )
local o = MenuView:new{
width=W, height=H
}
o.x, o.y = H_CENTER, 0
local f = function( e )
print( "MenuView Event" )
if e.type == o.SELECTED then
local data = e.data
local level = data.level
print( "level info:", level.info.name, level )
else
print( "unknown event" )
end
end
o:addEventListener( o.EVENT, f )
destroyObjIn( o )
end
--====================================================================--
--== App Scene Tests
--====================================================================--
--======================================================--
-- Test: Game Scene
local function test_gameScene()
print( "test_gameScene" )
local scene_name = ACI.GAME_SCENE
local o
local scene_options = {
params = {
width=W, height=H,
level_data=gService.level_mgr:getLevelData(1)
}
}
composer.gotoScene( scene_name, scene_options )
-- test scene destruction
destroySceneIn( scene_name )
end
--======================================================--
-- Test: Menu Scene
local function test_menuScene()
print( "test_menuScene" )
local scene_name = ACI.MENU_SCENE
local o
local scene_options = {
params = {
width=W, height=H
}
}
composer.gotoScene( scene_name, scene_options )
-- test scene destruction
destroySceneIn( scene_name )
end
--====================================================================--
--== Test Controller Setup
--====================================================================--
local TestController = {}
function TestController.runTests()
print( "TestController.runTests" )
--[[
uncomment the test to run
--]]
--== Component Objects
-- test_ghostCharacter()
-- test_monsterCharacter()
--== Component Views
-- test_gameOverOverlay()
-- test_levelOverlay()
test_loadOverlay()
-- test_pauseOverlay()
--== Core App Views
-- test_gameMainView()
-- test_menuMainView()
--== Scene Tests
-- test_gameScene()
-- test_menuScene()
end
function TestController.run( params )
-- print( "TestController.run", params )
params = params or {}
if params.mode==nil then params.mode=AppController.TEST_MODE end
--==--
AppController.run( params )
ACI = AppController.instance()
TestController.runTests()
end
return TestController