annotate tests/test_materials.nim @ 733:07c755e65a4a

add: final font-rendering, API changes fixed
author Sam <sam@basx.dev>
date Tue, 30 May 2023 16:59:01 +0700
parents 5f7ec8d1bd33
children da0bd61abe91
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
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
6 proc main() =
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
7 var scene = newScene("main", root=newEntity("rect", rect()))
661
9995702c34b2 add: few improvments for working with textures
Sam <sam@basx.dev>
parents: 660
diff changeset
8 let (RT, WT, PT) = (hexToColorAlpha("A51931").asPixel, hexToColorAlpha("F4F5F8").asPixel, hexToColorAlpha("2D2A4A").asPixel)
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
9 let
705
37ef17c96bdb did: adjust to new API
Sam <sam@basx.dev>
parents: 695
diff changeset
10 # image from memory
695
d2e8b5edea7e add: png loading with LodePNG (thanks LodePNG-author, this is a super amazing piece of code!)
Sam <sam@basx.dev>
parents: 691
diff changeset
11 t1 = Image(width: 7, height: 5, imagedata: @[
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
12 RT, RT, RT, RT, RT, RT, RT,
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
13 WT, WT, WT, WT, WT, WT, WT,
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
14 PT, PT, PT, PT, PT, PT, PT,
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
15 WT, WT, WT, WT, WT, WT, WT,
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
16 RT, RT, RT, RT, RT, RT, RT,
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
17 ])
714
5f7ec8d1bd33 fix: API changes
sam <sam@basx.dev>
parents: 705
diff changeset
18 let
705
37ef17c96bdb did: adjust to new API
Sam <sam@basx.dev>
parents: 695
diff changeset
19 # image from file
695
d2e8b5edea7e add: png loading with LodePNG (thanks LodePNG-author, this is a super amazing piece of code!)
Sam <sam@basx.dev>
parents: 691
diff changeset
20 t2 = loadImage("flag.png")
714
5f7ec8d1bd33 fix: API changes
sam <sam@basx.dev>
parents: 705
diff changeset
21
705
37ef17c96bdb did: adjust to new API
Sam <sam@basx.dev>
parents: 695
diff changeset
22 var sampler = DefaultSampler()
37ef17c96bdb did: adjust to new API
Sam <sam@basx.dev>
parents: 695
diff changeset
23 sampler.magnification = VK_FILTER_NEAREST
37ef17c96bdb did: adjust to new API
Sam <sam@basx.dev>
parents: 695
diff changeset
24 sampler.minification = VK_FILTER_NEAREST
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 714
diff changeset
25 scene.addMaterial(Material(name:"my material", textures: {"my_texture": Texture(image: t1, sampler: sampler)}.toTable))
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 714
diff changeset
26 scene.addMaterial(Material(name:"my material", textures: {"my_texture": Texture(image: t2, sampler: sampler)}.toTable))
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
27 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
28
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
29 var engine = initEngine("Test materials")
714
5f7ec8d1bd33 fix: API changes
sam <sam@basx.dev>
parents: 705
diff changeset
30
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
31 const
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
32 vertexInput = @[
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
33 attr[Vec3f]("position", memoryPerformanceHint=PreferFastRead),
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
34 attr[Vec2f]("uv", memoryPerformanceHint=PreferFastRead),
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
35 ]
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
36 vertexOutput = @[attr[Vec2f]("uvout")]
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
37 uniforms = @[attr[float32]("test2", arrayCount=2)]
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
38 samplers = @[attr[Sampler2DType]("my_texture", arrayCount=2)]
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
39 fragOutput = @[attr[Vec4f]("color")]
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
40 vertexCode = compileGlslShader(
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
41 stage=VK_SHADER_STAGE_VERTEX_BIT,
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
42 inputs=vertexInput,
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
43 uniforms=uniforms,
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
44 samplers=samplers,
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
45 outputs=vertexOutput,
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
46 main="""gl_Position = vec4(position.x, position.y + sin(Uniforms.test2[1]) / Uniforms.test2[1] * 0.5, position.z, 1.0); uvout = uv;"""
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
47 )
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
48 fragmentCode = compileGlslShader(
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
49 stage=VK_SHADER_STAGE_FRAGMENT_BIT,
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
50 inputs=vertexOutput,
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
51 uniforms=uniforms,
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
52 samplers=samplers,
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
53 outputs=fragOutput,
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
54 main="""
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
55 float d = sin(Uniforms.test2[0]) * 0.5 + 0.5;
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
56 color = texture(my_texture[0], uvout) * (1 - d) + texture(my_texture[1], uvout) * d;
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
57 """
660
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
58 )
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
59 engine.setRenderer(engine.gpuDevice.simpleForwardRenderPass(vertexCode, fragmentCode))
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 714
diff changeset
60 engine.addScene(scene, vertexInput, samplers, transformAttribute="")
662
9848403320f0 add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 661
diff changeset
61 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
62 while engine.updateInputs() == Running and not engine.keyIsDown(Escape):
691
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
63 var d = float32(cpuTime() - t)
9182a5d2ea3a add: test mesh
Sam <sam@basx.dev>
parents: 672
diff changeset
64 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
65 engine.renderScene(scene)
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
66 engine.destroy()
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
67
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
68
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
69 when isMainModule:
c6414ade79f0 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
70 main()