Mercurial > games > semicongine
annotate examples/E02_squares.nim @ 1132:7f2c477ae1f4
merge
| author | sam <sam@basx.dev> |
|---|---|
| date | Thu, 23 May 2024 02:26:37 +0700 |
| parents | d6c27f0ed3e4 |
| children | 71315636ba82 |
| rev | line source |
|---|---|
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
1 import std/sequtils |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
2 import std/tables |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
3 import std/random |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
4 |
| 1027 | 5 import ../semicongine |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
6 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
7 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
8 when isMainModule: |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
9 randomize() |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
10 const |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
11 COLUMNS = 10 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
12 ROWS = 10 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
13 WIDTH = 2'f32 / COLUMNS |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
14 HEIGHT = 2'f32 / ROWS |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
15 var |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
16 vertices: array[COLUMNS * ROWS * 4, Vec3f] |
| 671 | 17 colors: array[COLUMNS * ROWS * 4, Vec4f] |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
18 iValues: array[COLUMNS * ROWS * 4, uint32] |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
19 indices: array[COLUMNS * ROWS * 2, array[3, uint16]] |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
20 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
21 for row in 0 ..< ROWS: |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
22 for col in 0 ..< COLUMNS: |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
23 let |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
24 y: float32 = (row * 2 / COLUMNS) - 1 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
25 x: float32 = (col * 2 / ROWS) - 1 |
| 671 | 26 color = newVec4f((x + 1) / 2, (y + 1) / 2, 0, 1) |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
27 squareIndex = row * COLUMNS + col |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
28 vertIndex = squareIndex * 4 |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
29 vertices[vertIndex + 0] = newVec3f(x, y) |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
30 vertices[vertIndex + 1] = newVec3f(x + WIDTH, y) |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
31 vertices[vertIndex + 2] = newVec3f(x + WIDTH, y + HEIGHT) |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
32 vertices[vertIndex + 3] = newVec3f(x, y + HEIGHT) |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
33 colors[vertIndex + 0] = color |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
34 colors[vertIndex + 1] = color |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
35 colors[vertIndex + 2] = color |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
36 colors[vertIndex + 3] = color |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
37 iValues[vertIndex + 0] = uint32(squareIndex) |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
38 iValues[vertIndex + 1] = uint32(squareIndex) |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
39 iValues[vertIndex + 2] = uint32(squareIndex) |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
40 iValues[vertIndex + 3] = uint32(squareIndex) |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
41 indices[squareIndex * 2 + 0] = [uint16(vertIndex + 0), uint16(vertIndex + 1), uint16(vertIndex + 2)] |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
42 indices[squareIndex * 2 + 1] = [uint16(vertIndex + 2), uint16(vertIndex + 3), uint16(vertIndex + 0)] |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
43 |
|
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
44 |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
45 const |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
46 shaderConfiguration = createShaderConfiguration( |
| 1027 | 47 name = "default shader", |
| 48 inputs = [ | |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
49 attr[Vec3f]("position"), |
| 1027 | 50 attr[Vec4f]("color", memoryPerformanceHint = PreferFastWrite), |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
51 attr[uint32]("index"), |
|
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
52 ], |
| 1027 | 53 intermediates = [attr[Vec4f]("outcolor")], |
| 54 uniforms = [attr[float32]("time")], | |
| 55 outputs = [attr[Vec4f]("color")], | |
| 56 vertexCode = """ | |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
57 float pos_weight = index / 100.0; // add some gamma correction? |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
58 float t = sin(Uniforms.time * 0.5) * 0.5 + 0.5; |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
59 float v = min(1, max(0, pow(pos_weight - t, 2))); |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
60 v = pow(1 - v, 3000); |
| 671 | 61 outcolor = vec4(color.r, color.g, v * 0.5, 1); |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
62 gl_Position = vec4(position, 1.0); |
|
777
754835bf175e
add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents:
763
diff
changeset
|
63 """, |
| 1027 | 64 fragmentCode = "color = outcolor;", |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
65 ) |
| 1027 | 66 let matDef = MaterialType(name: "default", vertexAttributes: { |
| 67 "position": Vec3F32, | |
| 68 "color": Vec4F32, | |
| 69 "index": UInt32, | |
| 70 }.toTable) | |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
71 var squaremesh = newMesh( |
| 1027 | 72 positions = vertices, |
| 73 indices = indices, | |
| 74 colors = colors, | |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
75 ) |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
76 squaremesh[].initVertexAttribute("index", iValues.toSeq) |
| 1027 | 77 squaremesh.material = matDef.initMaterialData(name = "default") |
|
522
f2c97bdbb0b3
did: rename and update older demos to work with new APIs
Sam <sam@basx.dev>
parents:
diff
changeset
|
78 |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
79 var myengine = initEngine("Squares") |
| 1027 | 80 myengine.initRenderer({matDef: shaderConfiguration}) |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
81 |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
82 var scene = Scene(name: "scene", meshes: @[squaremesh]) |
|
664
c33c8e156e3e
did: update examples to use new API for scene + scene globals
Sam <sam@basx.dev>
parents:
624
diff
changeset
|
83 scene.addShaderGlobal("time", 0.0'f32) |
| 1027 | 84 myengine.loadScene(scene) |
| 85 while myengine.UpdateInputs() and not KeyWasPressed(Escape): | |
|
797
812b5e28f441
did: update examples to work with improved scenegraph/material api, notice removed complexity!
Sam <sam@basx.dev>
parents:
777
diff
changeset
|
86 scene.setShaderGlobal("time", getShaderGlobal[float32](scene, "time") + 0.0005'f) |
|
597
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
87 myengine.renderScene(scene) |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
88 |
|
fdae5f50fa00
did: rewrite example 02 with new engine approach
Sam <sam@basx.dev>
parents:
535
diff
changeset
|
89 myengine.destroy() |
