Mercurial > games > semicongine
annotate examples/E10_pong.nim @ 146:253dd797e719
add: improvments and E10 (pong)
author | Sam <sam@basx.dev> |
---|---|
date | Thu, 27 Apr 2023 00:23:23 +0700 |
parents | a4e6e76128e6 |
children | 134647ed5b60 |
rev | line source |
---|---|
146 | 1 import std/times |
2 | |
74 | 3 import semicongine |
4 | |
146 | 5 let |
6 barcolor = hexToColor("5A3F00").gamma(2.2).colorToHex() | |
74 | 7 barSize = 0.1'f |
8 barWidth = 0.01'f | |
146 | 9 ballcolor = hexToColor("B17F08").gamma(2.2).colorToHex() |
74 | 10 levelRatio = 1 |
11 ballSize = 0.01'f | |
146 | 12 backgroundColor = hexToColorAlpha("FAC034FF").gamma(2.2) |
77 | 13 ballSpeed = 60'f |
74 | 14 |
15 var | |
145
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
16 level: Entity |
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
17 ballVelocity = newVec2f(1, 1).normalized * ballSpeed |
74 | 18 |
19 when isMainModule: | |
145
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
20 var myengine = initEngine("Pong") |
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
21 level = newEntity("Level") |
146 | 22 var playerbarmesh = rect(color=barcolor) |
145
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
23 var playerbar = newEntity("playerbar", playerbarmesh) |
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
24 playerbar.transform = scale3d(barWidth, barSize, 1'f) * translate3d(0.5'f, 0'f, 0'f) |
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
25 var player = newEntity("player", playerbar) |
74 | 26 player.transform = translate3d(0'f, 0.3'f, 0'f) |
27 level.add player | |
28 | |
146 | 29 var ballmesh = circle(color=ballcolor) |
145
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
30 var ball = newEntity("ball", ballmesh) |
74 | 31 ball.transform = scale3d(ballSize, ballSize, 1'f) * translate3d(10'f, 10'f, 0'f) |
32 level.add ball | |
33 | |
146 | 34 const |
35 vertexInput = @[ | |
36 attr[Vec3f]("position", memoryLocation=VRAM), | |
37 attr[Vec3f]("color", memoryLocation=VRAMVisible), | |
38 attr[Mat4]("transform", memoryLocation=VRAMVisible, perInstance=true), | |
39 ] | |
40 vertexOutput = @[attr[Vec3f]("outcolor")] | |
41 uniforms = @[attr[Mat4]("projection")] | |
42 fragOutput = @[attr[Vec4f]("color")] | |
43 vertexCode = compileGlslShader( | |
44 stage=VK_SHADER_STAGE_VERTEX_BIT, | |
45 inputs=vertexInput, | |
46 uniforms=uniforms, | |
47 outputs=vertexOutput, | |
48 main="""outcolor = color; gl_Position = vec4(position, 1) * (transform * Uniforms.projection);""" | |
49 ) | |
50 fragmentCode = compileGlslShader( | |
51 stage=VK_SHADER_STAGE_FRAGMENT_BIT, | |
52 inputs=vertexOutput, | |
53 uniforms=uniforms, | |
54 outputs=fragOutput, | |
55 main="color = vec4(outcolor, 1);" | |
56 ) | |
57 | |
58 # set up rendering | |
59 myengine.setRenderer(myengine.gpuDevice.simpleForwardRenderPass(vertexCode, fragmentCode, clearColor=backgroundColor)) | |
60 myengine.addScene(level, vertexInput, transformAttribute="transform") | |
61 var projection = initShaderGlobal("projection", Unit4f32) | |
62 level.add projection | |
145
a4e6e76128e6
add: upgrade all simple examples to new engine version
Sam <sam@basx.dev>
parents:
85
diff
changeset
|
63 |
146 | 64 var |
65 winsize = myengine.getWindow().size | |
66 height = float32(winsize[1]) / float32(winsize[0]) | |
67 width = 1'f | |
68 currentTime = cpuTime() | |
69 while myengine.updateInputs() == Running and not myengine.keyWasPressed(Escape): | |
70 let dt: float32 = cpuTime() - currentTime | |
71 currentTime = cpuTime() | |
72 if myengine.windowWasResized(): | |
73 winsize = myengine.getWindow().size | |
74 height = float32(winsize[1]) / float32(winsize[0]) | |
75 width = 1'f | |
76 setValue[Mat4](projection.value, ortho[float32](0'f, width, 0'f, height, 0'f, 1'f)) | |
77 var player = level.firstWithName("player") | |
78 if myengine.keyIsDown(Down) and (player.transform.col(3).y + barSize/2) < height: | |
79 player.transform = player.transform * translate3d(0'f, 1'f * dt, 0'f) | |
80 if myengine.keyIsDown(Up) and (player.transform.col(3).y - barSize/2) > 0: | |
81 player.transform = player.transform * translate3d(0'f, -1'f * dt, 0'f) | |
82 | |
83 # bounce level | |
84 if ball.transform.col(3).x + ballSize/2 > width: ballVelocity[0] = -ballVelocity[0] | |
85 if ball.transform.col(3).y - ballSize/2 <= 0: ballVelocity[1] = -ballVelocity[1] | |
86 if ball.transform.col(3).y + ballSize/2 > height: ballVelocity[1] = -ballVelocity[1] | |
87 | |
88 ball.transform = ball.transform * translate3d(ballVelocity[0] * dt, ballVelocity[1] * dt, 0'f32) | |
89 | |
90 # loose | |
91 if ball.transform.col(3).x - ballSize/2 <= 0: | |
92 break | |
93 | |
94 # bar | |
95 if ball.transform.col(3).x - ballSize/2 <= barWidth: | |
96 let | |
97 barTop = player.transform.col(3).y - barSize/2 | |
98 barBottom = player.transform.col(3).y + barSize/2 | |
99 ballTop = ball.transform.col(3).y - ballSize/2 | |
100 ballBottom = ball.transform.col(3).y + ballSize/2 | |
101 if ballTop >= barTop and ballBottom <= barBottom: | |
102 ballVelocity[0] = abs(ballVelocity[0]) | |
103 | |
104 myengine.renderScene(level) |