annotate tests/test_vulkan_wrapper.nim @ 588:008592db0442

did: big refactoring
author Sam <sam@basx.dev>
date Wed, 12 Apr 2023 01:20:53 +0700
parents 713ac2886355
children 9901ec3831d1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
1 import std/options
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
2
578
13febe7978e5 did: small changes from refactoring
Sam <sam@basx.dev>
parents: 576
diff changeset
3 import semicongine
560
8de8a2102071 add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents: 559
diff changeset
4
565
a0b01e84607d did: some refactoring
Sam <sam@basx.dev>
parents: 564
diff changeset
5 proc diagnostics(instance: Instance) =
555
7c44f714bd03 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 554
diff changeset
6 # diagnostic output
576
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
7 # print basic driver infos
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
8 echo "Layers"
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
9 for layer in getLayers():
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
10 echo " " & layer
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
11 echo "Instance extensions"
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
12 for extension in getInstanceExtensions():
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
13 echo " " & extension
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
14
554
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
15 echo "Devices"
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
16 for device in instance.getPhysicalDevices():
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
17 echo " " & $device
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
18 echo " Rating: " & $device.rateGraphics()
554
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
19 echo " Extensions"
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
20 for extension in device.getExtensions():
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
21 echo " " & $extension
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
22 echo " Properties"
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
23 echo " " & $device.getProperties()
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
24 echo " Features"
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
25 echo " " & $device.getFeatures()
554
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
26 echo " Queue families"
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
27 for queueFamily in device.getQueueFamilies():
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
28 echo " " & $queueFamily
555
7c44f714bd03 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 554
diff changeset
29 echo " Surface present modes"
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
30 for mode in device.getSurfacePresentModes():
555
7c44f714bd03 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 554
diff changeset
31 echo " " & $mode
7c44f714bd03 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 554
diff changeset
32 echo " Surface formats"
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
33 for format in device.getSurfaceFormats():
555
7c44f714bd03 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 554
diff changeset
34 echo " " & $format
554
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
35
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
36 proc scene_different_mesh_types(): Scene =
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
37 result = Scene(
574
bbeec60e25ca did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 573
diff changeset
38 name: "main",
bbeec60e25ca did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 573
diff changeset
39 root: newEntity("root",
578
13febe7978e5 did: small changes from refactoring
Sam <sam@basx.dev>
parents: 576
diff changeset
40 newEntity("triangle1", newMesh(
575
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
41 positions=[newVec3f(0.0, -0.5), newVec3f(0.5, 0.5), newVec3f(-0.5, 0.5)],
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
42 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
43 )),
581
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
44 newEntity("triangle1b", newMesh(
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
45 positions=[newVec3f(0.0, -0.4), newVec3f(0.4, 0.4), newVec3f(-0.4, 0.5)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
46 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
47 )),
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
48 newEntity("triangle2a", newMesh(
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
49 positions=[newVec3f(0.0, 0.5), newVec3f(0.5, -0.5), newVec3f(-0.5, -0.5)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
50 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
51 indices=[[0'u16, 2'u16, 1'u16]]
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
52 )),
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
53 newEntity("triangle2b", newMesh(
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
54 positions=[newVec3f(0.0, 0.4), newVec3f(0.4, -0.4), newVec3f(-0.4, -0.4)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
55 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
56 indices=[[0'u16, 2'u16, 1'u16]]
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
57 )),
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
58 newEntity("triangle3a", newMesh(
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
59 positions=[newVec3f(0.4, 0.5), newVec3f(0.9, -0.3), newVec3f(0.0, -0.3)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
60 colors=[newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
61 indices=[[0'u32, 2'u32, 1'u32]],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
62 autoResize=false
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
63 )),
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
64 newEntity("triangle3b", newMesh(
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
65 positions=[newVec3f(0.4, 0.5), newVec3f(0.9, -0.3), newVec3f(0.0, -0.3)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
66 colors=[newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0)],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
67 indices=[[0'u32, 2'u32, 1'u32]],
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
68 autoResize=false
87e500bd528a add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 578
diff changeset
69 )),
574
bbeec60e25ca did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 573
diff changeset
70 )
bbeec60e25ca did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 573
diff changeset
71 )
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
72
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
73 proc scene_simple(): Scene =
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
74 var mymesh1 = newMesh(
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
75 positions=[newVec3f(0.0, -0.3), newVec3f(0.3, 0.3), newVec3f(-0.3, 0.3)],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
76 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
77 )
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
78 var mymesh2 = newMesh(
584
9e7bcc8e0e52 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 583
diff changeset
79 positions=[newVec3f(0.0, -0.5), newVec3f(0.5, 0.5), newVec3f(-0.5, 0.5)],
9e7bcc8e0e52 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 583
diff changeset
80 colors=[newVec3f(1.0, 0.0, 0.0), newVec3f(0.0, 1.0, 0.0), newVec3f(0.0, 0.0, 1.0)],
9e7bcc8e0e52 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 583
diff changeset
81 )
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
82 var mymesh3 = newMesh(
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
83 positions=[newVec3f(0.0, -0.6), newVec3f(0.6, 0.6), newVec3f(-0.6, 0.6)],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
84 colors=[newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0), newVec3f(1.0, 1.0, 0.0)],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
85 indices=[[0'u32, 1'u32, 2'u32]],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
86 autoResize=false
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
87 )
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
88 var mymesh4 = newMesh(
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
89 positions=[newVec3f(0.0, -0.8), newVec3f(0.8, 0.8), newVec3f(-0.8, 0.8)],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
90 colors=[newVec3f(0.0, 0.0, 1.0), newVec3f(0.0, 0.0, 1.0), newVec3f(0.0, 0.0, 1.0)],
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
91 indices=[[0'u16, 1'u16, 2'u16]],
586
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
92 instanceCount=2
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
93 )
587
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
94 mymesh1.setInstanceData("translate", @[newVec3f(0.3, 0.0)])
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
95 mymesh2.setInstanceData("translate", @[newVec3f(0.0, 0.3)])
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
96 mymesh3.setInstanceData("translate", @[newVec3f(-0.3, 0.0)])
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
97 mymesh4.setInstanceData("translate", @[newVec3f(0.0, -0.3), newVec3f(0.0, 0.5)])
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
98 result = Scene(
584
9e7bcc8e0e52 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 583
diff changeset
99 name: "main",
586
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
100 root: newEntity("root", newEntity("triangle", mymesh4, mymesh3, mymesh2, mymesh1))
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
101 )
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
102
586
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
103 proc scene_primitives(): Scene =
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
104 var r = rect(color="ff0000")
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
105 var t = tri(color="0000ff")
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
106 var c = circle(color="00ff00")
587
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
107 setInstanceData[Vec3f](r, "translate", @[newVec3f(0.5, -0.3)])
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
108 setInstanceData[Vec3f](t, "translate", @[newVec3f(0.3, 0.3)])
713ac2886355 did: small name change
Sam <sam@basx.dev>
parents: 586
diff changeset
109 setInstanceData[Vec3f](c, "translate", @[newVec3f(-0.3, 0.1)])
586
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
110 result = Scene(
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
111 name: "main",
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
112 root: newEntity("root", t, r, c)
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
113 )
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
114
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
115 when isMainModule:
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
116 var engine = initEngine("Test")
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
117
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
118 # INIT RENDERER:
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
119 const
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
120 vertexInput = @[
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
121 attr[Vec3f]("position", memoryLocation=VRAM),
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
122 attr[Vec3f]("color", memoryLocation=VRAM),
586
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
123 attr[Vec3f]("translate", perInstance=true)
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
124 ]
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
125 vertexOutput = @[attr[Vec3f]("outcolor")]
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
126 uniforms = @[attr[float32]("time")]
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
127 fragOutput = @[attr[Vec4f]("color")]
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
128 vertexCode = compileGlslShader(
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
129 stage=VK_SHADER_STAGE_VERTEX_BIT,
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
130 inputs=vertexInput,
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
131 uniforms=uniforms,
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
132 outputs=vertexOutput,
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
133 main="""gl_Position = vec4(position + translate, 1.0); outcolor = color;"""
584
9e7bcc8e0e52 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 583
diff changeset
134 )
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
135 fragmentCode = compileGlslShader(
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
136 stage=VK_SHADER_STAGE_FRAGMENT_BIT,
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
137 inputs=vertexOutput,
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
138 uniforms=uniforms,
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
139 outputs=fragOutput,
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
140 main="color = vec4(outcolor, 1);"
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
141 )
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
142 var
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
143 vertexshader = engine.gpuDevice.createShaderModule(vertexCode)
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
144 fragmentshader = engine.gpuDevice.createShaderModule(fragmentCode)
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
145 surfaceFormat = engine.gpuDevice.physicalDevice.getSurfaceFormats().filterSurfaceFormat()
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
146 renderPass = engine.gpuDevice.simpleForwardRenderPass(surfaceFormat.format, vertexshader, fragmentshader, 2)
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
147 (swapchain, res) = engine.gpuDevice.createSwapchain(renderPass, surfaceFormat, engine.gpuDevice.firstGraphicsQueue().get().family, 2)
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
148 if res != VK_SUCCESS:
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
149 raise newException(Exception, "Unable to create swapchain")
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
150
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
151 # INIT SCENE
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
152
586
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
153 # var thescene = scene_simple()
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
154 # var thescene = scene_different_mesh_types()
a136e3f43c2c add: mesh primitives
Sam <sam@basx.dev>
parents: 585
diff changeset
155 var thescene = scene_primitives()
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
156 var time = initShaderGlobal("time", 0.0'f32)
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
157 thescene.root.components.add time
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
158 thescene.setupDrawableBuffers(engine.gpuDevice, vertexInput)
570
1cf928eb0a10 did: refactor rendering/scene concept
Sam <sam@basx.dev>
parents: 569
diff changeset
159
576
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
160 # MAINLOOP
572
9f1de117aaca did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 570
diff changeset
161 echo "Setup successfull, start rendering"
585
2df00e84757d fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 584
diff changeset
162 for i in 0 ..< 10000:
583
90537a8887ae did: implement uniforms, some refactoring
Sam <sam@basx.dev>
parents: 582
diff changeset
163 setValue[float32](time.value, get[float32](time.value) + 0.0005)
572
9f1de117aaca did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 570
diff changeset
164 discard swapchain.drawScene(thescene)
569
f4d8f0018670 did: reorganize code
Sam <sam@basx.dev>
parents: 568
diff changeset
165 echo "Rendered ", swapchain.framesRendered, " frames"
575
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
166
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
167 # cleanup
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
168 echo "Start cleanup"
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
169 checkVkResult engine.gpuDevice.vk.vkDeviceWaitIdle()
554
f9a5ada2df1e add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
170
576
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
171 # destroy scene
575
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
172 thescene.destroy()
569
f4d8f0018670 did: reorganize code
Sam <sam@basx.dev>
parents: 568
diff changeset
173
576
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
174 # destroy renderer
564
20837928dc63 add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents: 563
diff changeset
175 vertexshader.destroy()
20837928dc63 add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents: 563
diff changeset
176 fragmentshader.destroy()
572
9f1de117aaca did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 570
diff changeset
177 renderPass.destroy()
557
e2d8c02f1548 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 555
diff changeset
178 swapchain.destroy()
575
eaedc0369c38 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 574
diff changeset
179
576
677e4f7fb567 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 575
diff changeset
180 # destroy engine
588
008592db0442 did: big refactoring
Sam <sam@basx.dev>
parents: 587
diff changeset
181 engine.destroy()