annotate old_tests/test_materials.nim @ 1312:f0020945d016

add: allow do enable/disable time-logs
author sam <sam@basx.dev>
date Fri, 09 Aug 2024 18:49:20 +0700
parents 6360c8d17ce0
children
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)
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
8 (RT, WT, PT) = (ToRGBA("A51931").AsPixel, ToRGBA("F4F5F8").AsPixel, ToRGBA("2D2A4A").AsPixel)
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
9 thai = Image[RGBAPixel](width: 7, height: 5, imagedata: @[
332
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 ])
1139
114f395b9144 did: finish refactoring and updated all tests accordingly
sam <sam@basx.dev>
parents: 1138
diff changeset
16 swiss = LoadImage[RGBAPixel]("flag.png")
373
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
17 doubleTextureMaterial = MaterialType(
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
18 name: "Double texture",
384
eaf084ba80e5 fix: cleanup when multiple textures use same vulkan image
Sam <sam@basx.dev>
parents: 376
diff changeset
19 vertexAttributes: {
373
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 )
1139
114f395b9144 did: finish refactoring and updated all tests accordingly
sam <sam@basx.dev>
parents: 1138
diff changeset
25 material = InitMaterialData(
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
26 theType = doubleTextureMaterial,
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
27 name = "swiss-thai",
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
28 attributes = {
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
29 "tex1": InitDataList(@[Texture(colorImage: thai, sampler: sampler, isGrayscale: false)]),
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
30 "tex2": InitDataList(@[Texture(colorImage: swiss, sampler: sampler, isGrayscale: false)]),
407
ffc265916415 did: improve/refactor some of the material API
Sam <sam@basx.dev>
parents: 384
diff changeset
31 }
373
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() =
1139
114f395b9144 did: finish refactoring and updated all tests accordingly
sam <sam@basx.dev>
parents: 1138
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])
1139
114f395b9144 did: finish refactoring and updated all tests accordingly
sam <sam@basx.dev>
parents: 1138
diff changeset
38 scene.AddShaderGlobalArray("test2", @[NewVec4f(), NewVec4f()])
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
39
1138
02e1d2658ff5 did: more renaming
sam <sam@basx.dev>
parents: 1137
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
1139
114f395b9144 did: finish refactoring and updated all tests accordingly
sam <sam@basx.dev>
parents: 1138
diff changeset
43 shaderConfiguration1 = CreateShaderConfiguration(
1021
73b572f82a1f add: bases for a better input-system
sam <sam@basx.dev>
parents: 982
diff changeset
44 name = "shader 1",
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
45 inputs = [
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
46 Attr[Vec3f]("position", memoryPerformanceHint = PreferFastRead),
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
47 Attr[Vec2f]("uv", memoryPerformanceHint = PreferFastRead),
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
48 ],
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
49 intermediates = [
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
50 Attr[Vec2f]("uvout"),
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
51 ],
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
52 uniforms = [Attr[Vec4f]("test2", arrayCount = 2)],
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
53 samplers = @[
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
54 Attr[Texture]("tex1"),
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
55 Attr[Texture]("tex2"),
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
56 ],
1137
a4aa9f374d44 did: more renaming
sam <sam@basx.dev>
parents: 1136
diff changeset
57 outputs = [Attr[Vec4f]("color")],
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
58 vertexCode = """
982
a40bb0a48e07 do: try to increase compatability with older hardware...
sam <sam@basx.dev>
parents: 979
diff changeset
59 gl_Position = vec4(position.x, position.y + sin(Uniforms.test2[1].x) / Uniforms.test2[1].x * 0.5, position.z, 1.0);
332
e4528d97a687 fix: material tests
Sam <sam@basx.dev>
parents: 316
diff changeset
60 uvout = uv;""",
420
91e018270832 fix: all tests (once more)
Sam <sam@basx.dev>
parents: 407
diff changeset
61 fragmentCode = """
982
a40bb0a48e07 do: try to increase compatability with older hardware...
sam <sam@basx.dev>
parents: 979
diff changeset
62 float d = sin(Uniforms.test2[0].x) * 0.5 + 0.5;
979
6406766a222d fix: tests
sam <sam@basx.dev>
parents: 420
diff changeset
63 color = texture(tex1, uvout) * (1 - d) + texture(tex2, uvout) * d;
316
b145a05c2459 add: changing rendering system, not finished yet, also upgrading to Nim 2
Sam <sam@basx.dev>
parents: 315
diff changeset
64 """,
199
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
65 )
1138
02e1d2658ff5 did: more renaming
sam <sam@basx.dev>
parents: 1137
diff changeset
66 engine.InitRenderer({
373
f4f1474dc70a fix: make tests working again
Sam <sam@basx.dev>
parents: 353
diff changeset
67 doubleTextureMaterial: shaderConfiguration1,
344
b83b3a1ccb05 fix: all tests
Sam <sam@basx.dev>
parents: 334
diff changeset
68 })
1138
02e1d2658ff5 did: more renaming
sam <sam@basx.dev>
parents: 1137
diff changeset
69 engine.LoadScene(scene)
201
ab626e67a1ee add: support for arrays of samplers
Sam <sam@basx.dev>
parents: 200
diff changeset
70 var t = cpuTime()
1135
74957cbf589b fix: update tests according to some API renaming
sam <sam@basx.dev>
parents: 1021
diff changeset
71 while engine.UpdateInputs() and not KeyIsDown(Escape):
230
027f6ff06585 add: test mesh
Sam <sam@basx.dev>
parents: 211
diff changeset
72 var d = float32(cpuTime() - t)
1139
114f395b9144 did: finish refactoring and updated all tests accordingly
sam <sam@basx.dev>
parents: 1138
diff changeset
73 SetShaderGlobalArray(scene, "test2", @[NewVec4f(d), NewVec4f(d * 2)])
1138
02e1d2658ff5 did: more renaming
sam <sam@basx.dev>
parents: 1137
diff changeset
74 engine.RenderScene(scene)
02e1d2658ff5 did: more renaming
sam <sam@basx.dev>
parents: 1137
diff changeset
75 engine.Destroy()
199
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
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
78 when isMainModule:
da68fe12f600 add: new test file to test to do future test with materials etc.
Sam <sam@basx.dev>
parents:
diff changeset
79 main()