annotate tests/test_mesh.nim @ 1135:74957cbf589b

fix: update tests according to some API renaming
author sam <sam@basx.dev>
date Mon, 03 Jun 2024 16:05:17 +0700
parents 73b572f82a1f
children 71315636ba82
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
979
6406766a222d fix: tests
sam <sam@basx.dev>
parents: 420
diff changeset
1 import std/strformat
222
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
2 import semicongine
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
3
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
4 const
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
5 MeshMaterial* = MaterialType(
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
6 name: "colored single texture material",
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
7 vertexAttributes: {
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
8 "position": Vec3F32,
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
9 "texcoord_0": Vec2F32,
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
10 }.toTable,
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
11 attributes: {"baseTexture": TextureType, "color": Vec4F32}.toTable
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
12 )
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
13
222
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
14 proc main() =
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
15 var scenes = [
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
16 Scene(name: "Donut", meshes: loadMeshes("donut.glb", MeshMaterial)[0].toSeq),
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
17 ]
222
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
18
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
19 var engine = initEngine("Test meshes")
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
20 const
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
21 shaderConfiguration = createShaderConfiguration(
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
22 name = "default shader",
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
23 inputs = [
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
24 attr[Vec3f]("position", memoryPerformanceHint = PreferFastRead),
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
25 attr[uint16](MATERIALINDEX_ATTRIBUTE, memoryPerformanceHint = PreferFastRead, perInstance = true),
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
26 attr[Vec2f]("texcoord_0", memoryPerformanceHint = PreferFastRead),
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
27 attr[Mat4]("transform", memoryPerformanceHint = PreferFastWrite, perInstance = true),
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
28 ],
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
29 intermediates = [
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
30 attr[Vec4f]("vertexColor"),
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
31 attr[Vec2f]("colorTexCoord"),
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
32 attr[uint16]("materialIndexOut", noInterpolation = true)
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
33 ],
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
34 outputs = [attr[Vec4f]("color")],
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
35 uniforms = [
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
36 attr[Mat4]("projection"),
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
37 attr[Mat4]("view"),
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
38 attr[Vec4f]("color", arrayCount = 4),
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
39 ],
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
40 samplers = [attr[Texture]("baseTexture", arrayCount = 4)],
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
41 vertexCode = &"""
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
42 gl_Position = vec4(position, 1.0) * (transform * (Uniforms.view * Uniforms.projection));
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
43 vertexColor = Uniforms.color[{MATERIALINDEX_ATTRIBUTE}];
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
44 colorTexCoord = texcoord_0;
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
45 materialIndexOut = {MATERIALINDEX_ATTRIBUTE};
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
46 """,
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 373
diff changeset
47 fragmentCode = "color = texture(baseTexture[materialIndexOut], colorTexCoord) * vertexColor;"
222
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
48 )
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
49 engine.initRenderer({MeshMaterial: shaderConfiguration})
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
50
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
51 for scene in scenes.mitems:
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
52 scene.addShaderGlobal("projection", Unit4F32)
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
53 scene.addShaderGlobal("view", Unit4F32)
371
f054b8bacab8 fix: tests, test_materials and test_mesh still needs to be done
Sam <sam@basx.dev>
parents: 353
diff changeset
54 engine.loadScene(scene)
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
55
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
56 var
247
beb41c93aa3f fix: gltf loading
Sam <sam@basx.dev>
parents: 246
diff changeset
57 size = 1'f32
246
dcbd9f256f6a fix: better defaults
Sam <sam@basx.dev>
parents: 245
diff changeset
58 elevation = 0'f32
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
59 azimut = 0'f32
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
60 currentScene = 0
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
61
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
62 while engine.UpdateInputs() and not KeyIsDown(Escape):
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
63 if KeyWasPressed(`1`):
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
64 currentScene = 0
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
65 elif KeyWasPressed(`2`):
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
66 currentScene = 1
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
67 elif KeyWasPressed(`3`):
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
68 currentScene = 2
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
69 elif KeyWasPressed(`4`):
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
70 currentScene = 3
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
71 elif KeyWasPressed(`5`):
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
72 currentScene = 4
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
73 elif KeyWasPressed(`6`):
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
74 currentScene = 5
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
75
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
76 if KeyWasPressed(NumberRowExtra3):
246
dcbd9f256f6a fix: better defaults
Sam <sam@basx.dev>
parents: 245
diff changeset
77 size = 0.3'f32
dcbd9f256f6a fix: better defaults
Sam <sam@basx.dev>
parents: 245
diff changeset
78 elevation = 0'f32
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
79 azimut = 0'f32
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
80
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
81 let ratio = engine.GetWindow().size[0] / engine.GetWindow().size[1]
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
82 size *= 1'f32 + MouseWheel() * 0.05
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
83 azimut += MouseMove().x / 180'f32
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
84 elevation -= MouseMove().y / 180'f32
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 979
diff changeset
85 scenes[currentScene].setShaderGlobal("projection", perspective(PI / 2, ratio, -0.5, 1))
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
86 scenes[currentScene].setShaderGlobal(
245
a19c9d089f25 add: correct camera calculations
Sam <sam@basx.dev>
parents: 244
diff changeset
87 "view",
333
27aaf43e18b4 fix: material handling, gltf loading, loader example
Sam <sam@basx.dev>
parents: 318
diff changeset
88 scale(size, size, size) * rotate(elevation, newVec3f(1, 0, 0)) * rotate(azimut, Yf32)
230
027f6ff06585 add: test mesh
Sam <sam@basx.dev>
parents: 222
diff changeset
89 )
239
f05497ef8fd2 did: nicer test example, scene switching still problematic
Sam <sam@basx.dev>
parents: 230
diff changeset
90 engine.renderScene(scenes[currentScene])
222
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
91 engine.destroy()
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
92
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
93 when isMainModule:
ddfc54036e00 add: basic loading of glTF files (*.glb), no materials yet
Sam <sam@basx.dev>
parents:
diff changeset
94 main()