annotate tests/test_materials.nim @ 813:fb22fd8142b9

fix: tests
author Sam <sam@basx.dev>
date Wed, 20 Sep 2023 22:02:20 +0700
parents 7a13941ba204
children 61c5d5fe9d93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
1 import std/times
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 714
diff changeset
2 import std/tables
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
3
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
4 import semicongine
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
5
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
6 let
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
7 sampler = Sampler(magnification: VK_FILTER_NEAREST, minification: VK_FILTER_NEAREST)
813
fb22fd8142b9 fix: tests
Sam <sam@basx.dev>
parents: 805
diff changeset
8 (RT, WT, PT) = (toRGBA("A51931").asPixel, toRGBA("F4F5F8").asPixel, toRGBA("2D2A4A").asPixel)
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
9 thai = Image(width: 7, height: 5, imagedata: @[
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
10 RT, RT, RT, RT, RT, RT, RT,
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
11 WT, WT, WT, WT, WT, WT, WT,
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
12 PT, PT, PT, PT, PT, PT, PT,
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
13 WT, WT, WT, WT, WT, WT, WT,
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
14 RT, RT, RT, RT, RT, RT, RT,
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
15 ])
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
16 swiss = loadImage("flag.png")
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
17 material = Material(name: "material", textures: {
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
18 "tex1": Texture(image: thai, sampler: sampler),
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
19 "tex2": Texture(image: swiss, sampler: sampler),
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
20 }.toTable)
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
21
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
22 proc main() =
776
002d9c576756 did: preparations to refactor material system, still tons to do
Sam <sam@basx.dev>
parents: 763
diff changeset
23 var flag = rect()
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
24 flag.material = material
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
25 var scene = Scene(name: "main", meshes: @[flag])
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
26 scene.addShaderGlobalArray("test2", @[0'f32, 0'f32])
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
27
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
28 var engine = initEngine("Test materials")
714
5f7ec8d1bd33 fix: API changes
sam <sam@basx.dev>
parents: 705
diff changeset
29
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
30 const
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
31 shaderConfiguration1 = createShaderConfiguration(
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
32 inputs=[
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
33 attr[Vec3f]("position", memoryPerformanceHint=PreferFastRead),
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
34 attr[Vec2f]("uv", memoryPerformanceHint=PreferFastRead),
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
35 ],
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
36 intermediates=[
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
37 attr[Vec2f]("uvout"),
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
38 ],
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
39 uniforms=[attr[float32]("test2", arrayCount=2)],
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
40 samplers = @[
795
4a15d94d9418 fix: remaining tests and an issue with updating uniforms
Sam <sam@basx.dev>
parents: 793
diff changeset
41 attr[Texture]("tex1", arrayCount=2),
4a15d94d9418 fix: remaining tests and an issue with updating uniforms
Sam <sam@basx.dev>
parents: 793
diff changeset
42 attr[Texture]("tex2", arrayCount=2),
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
43 ],
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
44 outputs=[attr[Vec4f]("color")],
777
754835bf175e add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 776
diff changeset
45 vertexCode="""
754835bf175e add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 776
diff changeset
46 gl_Position = vec4(position.x, position.y + sin(Uniforms.test2[1]) / Uniforms.test2[1] * 0.5, position.z, 1.0);
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
47 uvout = uv;""",
777
754835bf175e add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 776
diff changeset
48 fragmentCode="""
754835bf175e add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 776
diff changeset
49 float d = sin(Uniforms.test2[0]) * 0.5 + 0.5;
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
50 color = texture(tex1[0], uvout) * (1 - d) + texture(tex2[0], uvout) * d;
777
754835bf175e add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 776
diff changeset
51 """,
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
52 )
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
53 engine.initRenderer({
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
54 "material": shaderConfiguration1,
805
7a13941ba204 fix: all tests
Sam <sam@basx.dev>
parents: 795
diff changeset
55 })
793
c31e42d72253 fix: material tests
Sam <sam@basx.dev>
parents: 777
diff changeset
56 engine.addScene(scene)
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
57 var t = cpuTime()
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
58 while engine.updateInputs() == Running and not engine.keyIsDown(Escape):
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
59 var d = float32(cpuTime() - t)
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
60 setShaderGlobalArray(scene, "test2", @[d, d * 2])
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
61 engine.renderScene(scene)
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
62 engine.destroy()
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
63
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
64
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
65 when isMainModule:
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
66 main()