annotate tests/test_materials.nim @ 373:f4f1474dc70a

fix: make tests working again
author Sam <sam@basx.dev>
date Sat, 25 Nov 2023 22:59:06 +0700
parents 61c5d5fe9d93
children fa38cd28f041
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
201
ab626e67a1ee add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 200
diff changeset
1 import std/times
272
bfcb41211c5b add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 253
diff changeset
2 import std/tables
201
ab626e67a1ee add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 200
diff changeset
3
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
4 import semicongine
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
5
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
6 let
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
7 sampler = Sampler(magnification: VK_FILTER_NEAREST, minification: VK_FILTER_NEAREST)
352
00231e014642 fix: tests
Sam <sam@basx.dev>
parents: 344
diff changeset
8 (RT, WT, PT) = (toRGBA("A51931").asPixel, toRGBA("F4F5F8").asPixel, toRGBA("2D2A4A").asPixel)
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
9 thai = Image(width: 7, height: 5, imagedata: @[
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
10 RT, RT, RT, RT, RT, RT, RT,
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
11 WT, WT, WT, WT, WT, WT, WT,
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
12 PT, PT, PT, PT, PT, PT, PT,
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
13 WT, WT, WT, WT, WT, WT, WT,
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
14 RT, RT, RT, RT, RT, RT, RT,
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
15 ])
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
16 swiss = loadImage("flag.png")
373
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
17 doubleTextureMaterial = MaterialType(
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
18 name:"Double texture",
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
19 meshAttributes: {
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
20 "position": Vec3F32,
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
21 "uv": Vec2F32,
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
22 }.toTable,
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
23 attributes: {"tex1": TextureType, "tex2": TextureType}.toTable
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
24 )
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
25 material = MaterialData(
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
26 theType: doubleTextureMaterial,
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
27 name: "swiss-thai",
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
28 attributes: {
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
29 "tex1": initDataList(@[Texture(image: thai, sampler: sampler)]),
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
30 "tex2": initDataList(@[Texture(image: swiss, sampler: sampler)]),
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
31 }.toTable
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
32 )
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
33
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
34 proc main() =
315
4921ec86dcb4 did: preparations to refactor material system, still tons to do
Sam <sam@basx.dev>
parents: 302
diff changeset
35 var flag = rect()
373
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
36 flag.material = material
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
37 var scene = Scene(name: "main", meshes: @[flag])
230
027f6ff06585 add: test mesh
Sam <sam@basx.dev>
parents: 211
diff changeset
38 scene.addShaderGlobalArray("test2", @[0'f32, 0'f32])
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
39
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
40 var engine = initEngine("Test materials")
253
ad078e26a1c7 fix: API changes
sam <sam@basx.dev>
parents: 244
diff changeset
41
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
42 const
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
43 shaderConfiguration1 = createShaderConfiguration(
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
44 inputs=[
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
45 attr[Vec3f]("position", memoryPerformanceHint=PreferFastRead),
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
46 attr[Vec2f]("uv", memoryPerformanceHint=PreferFastRead),
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
47 ],
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
48 intermediates=[
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
49 attr[Vec2f]("uvout"),
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
50 ],
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
51 uniforms=[attr[float32]("test2", arrayCount=2)],
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
52 samplers = @[
334
2533f524bdb6 fix: remaining tests and an issue with updating uniforms
Sam <sam@basx.dev>
parents: 332
diff changeset
53 attr[Texture]("tex1", arrayCount=2),
2533f524bdb6 fix: remaining tests and an issue with updating uniforms
Sam <sam@basx.dev>
parents: 332
diff changeset
54 attr[Texture]("tex2", arrayCount=2),
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
55 ],
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
56 outputs=[attr[Vec4f]("color")],
316
b145a05c2459 add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 315
diff changeset
57 vertexCode="""
b145a05c2459 add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 315
diff changeset
58 gl_Position = vec4(position.x, position.y + sin(Uniforms.test2[1]) / Uniforms.test2[1] * 0.5, position.z, 1.0);
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
59 uvout = uv;""",
316
b145a05c2459 add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 315
diff changeset
60 fragmentCode="""
b145a05c2459 add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 315
diff changeset
61 float d = sin(Uniforms.test2[0]) * 0.5 + 0.5;
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
62 color = texture(tex1[0], uvout) * (1 - d) + texture(tex2[0], uvout) * d;
316
b145a05c2459 add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 315
diff changeset
63 """,
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
64 )
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
65 engine.initRenderer({
373
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
66 doubleTextureMaterial: shaderConfiguration1,
344
b83b3a1ccb05 fix: all tests
Sam <sam@basx.dev>
parents: 334
diff changeset
67 })
373
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
68 engine.loadScene(scene)
201
ab626e67a1ee add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 200
diff changeset
69 var t = cpuTime()
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
70 while engine.updateInputs() == Running and not engine.keyIsDown(Escape):
230
027f6ff06585 add: test mesh
Sam <sam@basx.dev>
parents: 211
diff changeset
71 var d = float32(cpuTime() - t)
027f6ff06585 add: test mesh
Sam <sam@basx.dev>
parents: 211
diff changeset
72 setShaderGlobalArray(scene, "test2", @[d, d * 2])
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
73 engine.renderScene(scene)
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
74 engine.destroy()
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
75
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
76
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
77 when isMainModule:
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
78 main()