annotate tests/test_vulkan_wrapper.nim @ 126:81a8e62215db

did: small name change
author Sam <sam@basx.dev>
date Tue, 11 Apr 2023 01:06:37 +0700
parents 6e2c48cb6f60
children 5871acc2977e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
1 import std/options
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
2
117
40ff2453855e did: small changes from refactoring
Sam <sam@basx.dev>
parents: 115
diff changeset
3 import semicongine
99
4deffc94484a add: vertex and (initial) shader types and methods
Sam <sam@basx.dev>
parents: 98
diff changeset
4
104
9eeb9a44d158 did: some refactoring
Sam <sam@basx.dev>
parents: 103
diff changeset
5 proc diagnostics(instance: Instance) =
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
6 # diagnostic output
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
7 # print basic driver infos
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
8 echo "Layers"
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
9 for layer in getLayers():
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
10 echo " " & layer
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
11 echo "Instance extensions"
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
12 for extension in getInstanceExtensions():
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
13 echo " " & extension
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
14
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
15 echo "Devices"
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
16 for device in instance.getPhysicalDevices():
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
17 echo " " & $device
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
18 echo " Rating: " & $device.rateGraphics()
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
19 echo " Extensions"
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
20 for extension in device.getExtensions():
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
21 echo " " & $extension
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
22 echo " Properties"
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
23 echo " " & $device.getProperties()
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
24 echo " Features"
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
25 echo " " & $device.getFeatures()
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
26 echo " Queue families"
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
27 for queueFamily in device.getQueueFamilies():
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
28 echo " " & $queueFamily
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
29 echo " Surface present modes"
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
30 for mode in device.getSurfacePresentModes():
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
31 echo " " & $mode
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
32 echo " Surface formats"
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
33 for format in device.getSurfaceFormats():
94
f036546f5ea2 add: device, surface and refactoring
Sam <sam@basx.dev>
parents: 93
diff changeset
34 echo " " & $format
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
35
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
36 proc scene_different_mesh_types(): Scene =
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
37 result = Scene(
113
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
38 name: "main",
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
39 root: newEntity("root",
117
40ff2453855e did: small changes from refactoring
Sam <sam@basx.dev>
parents: 115
diff changeset
40 newEntity("triangle1", newMesh(
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
41 positions=[newVec3f(0.0, -0.5), newVec3f(0.5, 0.5), newVec3f(-0.5, 0.5)],
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
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)],
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
43 )),
120
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
44 newEntity("triangle1b", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
45 positions=[newVec3f(0.0, -0.4), newVec3f(0.4, 0.4), newVec3f(-0.4, 0.5)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
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)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
47 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
48 newEntity("triangle2a", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
49 positions=[newVec3f(0.0, 0.5), newVec3f(0.5, -0.5), newVec3f(-0.5, -0.5)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
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)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
51 indices=[[0'u16, 2'u16, 1'u16]]
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
52 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
53 newEntity("triangle2b", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
54 positions=[newVec3f(0.0, 0.4), newVec3f(0.4, -0.4), newVec3f(-0.4, -0.4)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
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)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
56 indices=[[0'u16, 2'u16, 1'u16]]
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
57 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
58 newEntity("triangle3a", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
59 positions=[newVec3f(0.4, 0.5), newVec3f(0.9, -0.3), newVec3f(0.0, -0.3)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
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)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
61 indices=[[0'u32, 2'u32, 1'u32]],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
62 autoResize=false
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
63 )),
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
64 newEntity("triangle3b", newMesh(
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
65 positions=[newVec3f(0.4, 0.5), newVec3f(0.9, -0.3), newVec3f(0.0, -0.3)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
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)],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
67 indices=[[0'u32, 2'u32, 1'u32]],
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
68 autoResize=false
2780d9aad142 add: better mesh support, indexed mesh
Sam <sam@basx.dev>
parents: 117
diff changeset
69 )),
113
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
70 )
7b695fb335ed did: first final implementation of scene-graph <-> pipeline connection, not working yet
Sam <sam@basx.dev>
parents: 112
diff changeset
71 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
72
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
73 proc scene_simple(): Scene =
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
74 var mymesh1 = newMesh(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
75 positions=[newVec3f(0.0, -0.3), newVec3f(0.3, 0.3), newVec3f(-0.3, 0.3)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
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)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
77 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
78 var mymesh2 = newMesh(
123
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
79 positions=[newVec3f(0.0, -0.5), newVec3f(0.5, 0.5), newVec3f(-0.5, 0.5)],
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
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)],
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
81 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
82 var mymesh3 = newMesh(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
83 positions=[newVec3f(0.0, -0.6), newVec3f(0.6, 0.6), newVec3f(-0.6, 0.6)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
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)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
85 indices=[[0'u32, 1'u32, 2'u32]],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
86 autoResize=false
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
87 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
88 var mymesh4 = newMesh(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
89 positions=[newVec3f(0.0, -0.8), newVec3f(0.8, 0.8), newVec3f(-0.8, 0.8)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
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)],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
91 indices=[[0'u16, 1'u16, 2'u16]],
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
92 instanceCount=2
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
93 )
126
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
94 mymesh1.setInstanceData("translate", @[newVec3f(0.3, 0.0)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
95 mymesh2.setInstanceData("translate", @[newVec3f(0.0, 0.3)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
96 mymesh3.setInstanceData("translate", @[newVec3f(-0.3, 0.0)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
97 mymesh4.setInstanceData("translate", @[newVec3f(0.0, -0.3), newVec3f(0.0, 0.5)])
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
98 result = Scene(
123
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
99 name: "main",
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
100 root: newEntity("root", newEntity("triangle", mymesh4, mymesh3, mymesh2, mymesh1))
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
101 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
102
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
103 proc scene_primitives(): Scene =
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
104 var r = rect(color="ff0000")
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
105 var t = tri(color="0000ff")
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
106 var c = circle(color="00ff00")
126
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
107 setInstanceData[Vec3f](r, "translate", @[newVec3f(0.5, -0.3)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
108 setInstanceData[Vec3f](t, "translate", @[newVec3f(0.3, 0.3)])
81a8e62215db did: small name change
Sam <sam@basx.dev>
parents: 125
diff changeset
109 setInstanceData[Vec3f](c, "translate", @[newVec3f(-0.3, 0.1)])
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
110 result = Scene(
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
111 name: "main",
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
112 root: newEntity("root", t, r, c)
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
113 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
114
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
115 when isMainModule:
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
116 # INIT ENGINE:
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
117 # create instance
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
118 var thewindow = createWindow("Test")
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
119 var instance = thewindow.createInstance(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
120 vulkanVersion=VK_MAKE_API_VERSION(0, 1, 3, 0),
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
121 instanceExtensions= @["VK_EXT_debug_utils"],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
122 layers= @["VK_LAYER_KHRONOS_validation", "VK_LAYER_MESA_overlay"]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
123 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
124 var debugger = instance.createDebugMessenger()
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
125 # create devices
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
126 let selectedPhysicalDevice = instance.getPhysicalDevices().filterBestGraphics()
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
127 var device = instance.createDevice(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
128 selectedPhysicalDevice,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
129 @[],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
130 @["VK_EXT_index_type_uint8"],
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
131 selectedPhysicalDevice.filterForGraphicsPresentationQueues()
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
132 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
133
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
134 # INIT RENDERER:
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
135 const
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
136 vertexInput = @[
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
137 attr[Vec3f]("position", memoryLocation=VRAM),
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
138 attr[Vec3f]("color", memoryLocation=VRAM),
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
139 attr[Vec3f]("translate", perInstance=true)
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
140 ]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
141 vertexOutput = @[attr[Vec3f]("outcolor")]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
142 uniforms = @[attr[float32]("time")]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
143 fragOutput = @[attr[Vec4f]("color")]
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
144 vertexCode = compileGlslShader(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
145 stage=VK_SHADER_STAGE_VERTEX_BIT,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
146 inputs=vertexInput,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
147 uniforms=uniforms,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
148 outputs=vertexOutput,
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
149 body="""gl_Position = vec4(position + translate, 1.0); outcolor = color;"""
123
55be3579dc30 did: refactor mesh code, prepare for instance-data
Sam <sam@basx.dev>
parents: 122
diff changeset
150 )
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
151 fragmentCode = compileGlslShader(
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
152 stage=VK_SHADER_STAGE_FRAGMENT_BIT,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
153 inputs=vertexOutput,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
154 uniforms=uniforms,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
155 outputs=fragOutput,
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
156 body="color = vec4(outcolor, 1);"
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
157 )
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
158 var
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
159 vertexshader = device.createShaderModule(vertexCode)
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
160 fragmentshader = device.createShaderModule(fragmentCode)
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
161 surfaceFormat = device.physicalDevice.getSurfaceFormats().filterSurfaceFormat()
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
162 renderPass = device.simpleForwardRenderPass(surfaceFormat.format, vertexshader, fragmentshader, 2)
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
163 (swapchain, res) = device.createSwapchain(renderPass, surfaceFormat, device.firstGraphicsQueue().get().family, 2)
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
164 if res != VK_SUCCESS:
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
165 raise newException(Exception, "Unable to create swapchain")
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
166
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
167 # INIT SCENE
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
168 var time = initShaderGlobal("time", 0.0'f32)
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
169
125
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
170 # var thescene = scene_simple()
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
171 # var thescene = scene_different_mesh_types()
6e2c48cb6f60 add: mesh primitives
Sam <sam@basx.dev>
parents: 124
diff changeset
172 var thescene = scene_primitives()
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
173 thescene.root.components.add time
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
174 thescene.setupDrawables(renderPass)
122
506090173619 did: implement uniforms, some refactoring
Sam <sam@basx.dev>
parents: 121
diff changeset
175 swapchain.setupUniforms(thescene)
109
8d24727c9795 did: refactor rendering/scene concept
Sam <sam@basx.dev>
parents: 108
diff changeset
176
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
177 # MAINLOOP
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
178 echo "Setup successfull, start rendering"
124
cb9e27a30165 fix: completely overhole buffer handling for drawing, fix shit
Sam <sam@basx.dev>
parents: 123
diff changeset
179 for i in 0 ..< 10000:
122
506090173619 did: implement uniforms, some refactoring
Sam <sam@basx.dev>
parents: 121
diff changeset
180 setValue[float32](time.value, get[float32](time.value) + 0.0005)
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
181 discard swapchain.drawScene(thescene)
108
70f92081d2c1 did: reorganize code
Sam <sam@basx.dev>
parents: 107
diff changeset
182 echo "Rendered ", swapchain.framesRendered, " frames"
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
183 checkVkResult device.vk.vkDeviceWaitIdle()
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
184
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
185 # cleanup
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
186 echo "Start cleanup"
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
187
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
188 # destroy scene
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
189 thescene.destroy()
108
70f92081d2c1 did: reorganize code
Sam <sam@basx.dev>
parents: 107
diff changeset
190
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
191 # destroy renderer
103
1e2027dfc642 add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents: 102
diff changeset
192 vertexshader.destroy()
1e2027dfc642 add: finally working initial approach for shader definitions
Sam <sam@basx.dev>
parents: 102
diff changeset
193 fragmentshader.destroy()
111
6fd10b7e2d6a did: allow runtime shader-input definitions
Sam <sam@basx.dev>
parents: 109
diff changeset
194 renderPass.destroy()
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
195 swapchain.destroy()
114
056e08dfad10 yay: first triangle rendering with new engine implmentation
Sam <sam@basx.dev>
parents: 113
diff changeset
196
115
e18538442837 add: comments for further refactoring
Sam <sam@basx.dev>
parents: 114
diff changeset
197 # destroy engine
96
b9fc90de1450 add: swapchain API, more refactoring
Sam <sam@basx.dev>
parents: 94
diff changeset
198 device.destroy()
93
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
199 debugger.destroy()
cb773e81032f add: testing for vulkan API wrapper
Sam <sam@basx.dev>
parents:
diff changeset
200 instance.destroy()
122
506090173619 did: implement uniforms, some refactoring
Sam <sam@basx.dev>
parents: 121
diff changeset
201 thewindow.destroy()