-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwalls.lua
70 lines (52 loc) · 2.18 KB
/
walls.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
local M = {}
local physics = require("physics")
local shader = require("plugin.dynamic_shader")
local objectList = shader.getObjectList()
local debugLevel = shader.getDebugLevel()
--------- Start Create Wall variables------------
local wallSize = 5
local wallBounce = 0.2
local wallFriction = 0.3
local wallDesign = {0.6, 0.6, 0.8}
local wall_width, wall_height = display.contentWidth, display.contentHeight
local ground, ceiling, left_wall, right_wall
--------- End Create Wall variables ------------
local function protectWalls( e )
local o = e.other
if (o.shaderInfo) then
shader.removeObject(o)
display.remove( o )
o = nil
end
end
local function createWalls( )
ground = display.newRect(0, 0, wall_width, wallSize)
ground:setFillColor(0.6, 0.6, 0.8)
ground.x = wall_width * 0.5 ; ground.y = wall_height
--ground.alpha = 1
ceiling = display.newRect(0, 0, wall_width, wallSize)
ceiling:setFillColor(wallDesign);
ceiling.x = wall_width * 0.5 ; ceiling.y = 0
left_wall = display.newRect(0, 0, wallSize, wall_height)
left_wall:setFillColor(wallDesign)
left_wall.x = 0 ; left_wall.y = wall_height * 0.5
right_wall = display.newRect(0, 0, wallSize, wall_height)
right_wall:setFillColor(wallDesign)
right_wall.x = wall_width ; right_wall.y = wall_height * 0.5
physics.addBody(ground, "static", {friction = wallFriction, bounce = wallBounce});
physics.addBody(ceiling, "static", {friction = wallFriction, bounce = wallBounce});
physics.addBody(left_wall, "static", {friction = wallFriction, bounce = wallBounce});
physics.addBody(right_wall, "static", {friction = wallFriction, bounce = wallBounce});
ground:addEventListener( "collision", protectWalls )
ceiling:addEventListener( "collision", protectWalls )
left_wall:addEventListener( "collision", protectWalls )
right_wall:addEventListener( "collision", protectWalls )
timer.performWithDelay( 100, function()
ground:removeEventListener( "collision", protectWalls )
ceiling:removeEventListener( "collision", protectWalls )
left_wall:removeEventListener( "collision", protectWalls )
right_wall:removeEventListener( "collision", protectWalls )
end )
end
M.createWalls = createWalls
return M