annotate examples/alotof_triangles.nim @ 46:9e81f06a5c57

add: some changes to build on windows host
author Sam <sam@basx.dev>
date Thu, 19 Jan 2023 00:42:40 +0700
parents 2771db8d4276
children 94d7eed3f118
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
1 import std/times
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
2 import std/strutils
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
3 import std/math
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
4 import std/random
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
5 import std/enumerate
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
6
40
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
7 import semicongine/engine
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
8 import semicongine/math/vector
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
9 import semicongine/math/matrix
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
10 import semicongine/vertex
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
11 import semicongine/descriptor
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
12 import semicongine/mesh
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
13 import semicongine/thing
2771db8d4276 did: rename project
Sam <sam@basx.dev>
parents: 38
diff changeset
14 import semicongine/shader
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
15
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
16 type
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
17 VertexDataA = object
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
18 position11: PositionAttribute[Vec2[float32]]
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
19 color22: ColorAttribute[Vec3[float32]]
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
20 Uniforms = object
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
21 dt: Descriptor[float32]
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
22
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
23 proc globalUpdate(engine: var Engine, dt: float32) =
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
24 discard
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
25
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
26 proc randomtransform(): Mat33[float32] =
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
27 let randomscale = scale2d(float32(rand(1.0) + 0.5), float32(rand(1.0) + 0.5))
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
28 let randomrotate = rotate2d(float32(rand(2 * PI)))
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
29 let randomtranslate = translate2d(float32(rand(1.6) - 0.8), float32(rand(1.6) - 0.8))
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
30 result = randomtranslate * randomrotate * randomscale
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
31
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
32 when isMainModule:
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
33 randomize()
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
34 var myengine = igniteEngine("A lot of triangles")
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
35 const baseTriangle = [
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
36 Vec3([-0.1'f32, -0.1'f32, 1'f32]),
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
37 Vec3([ 0.1'f32, 0.1'f32, 1'f32]),
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
38 Vec3([-0.1'f32, 0.1'f32, 1'f32]),
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
39 ]
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
40
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
41 var scene = new Thing
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
42
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
43 for i in 1 .. 300:
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
44 var randommesh = new Mesh[VertexDataA]
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
45 let randomcolor1 = Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))])
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
46 let transform1 = randomtransform()
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
47 randommesh.vertexData = VertexDataA(
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
48 position11: PositionAttribute[Vec2[float32]](
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
49 data: @[
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
50 Vec2[float32](transform1 * baseTriangle[0]),
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
51 Vec2[float32](transform1 * baseTriangle[1]),
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
52 Vec2[float32](transform1 * baseTriangle[2]),
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
53 ]
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
54 ),
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
55 color22: ColorAttribute[Vec3[float32]](
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
56 data: @[randomcolor1, randomcolor1, randomcolor1]
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
57 )
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
58 )
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
59
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
60 let randomcolor2 = Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))])
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
61 let transform2 = randomtransform()
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
62 var randomindexedmesh = new IndexedMesh[VertexDataA, uint16]
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
63 randomindexedmesh.vertexData = VertexDataA(
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
64 position11: PositionAttribute[Vec2[float32]](
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
65 data: @[
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
66 Vec2[float32](transform2 * baseTriangle[0]),
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
67 Vec2[float32](transform2 * baseTriangle[1]),
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
68 Vec2[float32](transform2 * baseTriangle[2]),
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
69 ]
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
70 ),
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
71 color22: ColorAttribute[Vec3[float32]](
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
72 data: @[randomcolor2, randomcolor2, randomcolor2]
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
73 )
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
74 )
22
b45a5d338cd0 did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
Sam <sam@basx.dev>
parents: 21
diff changeset
75 randomindexedmesh.indices = @[[0'u16, 1'u16, 2'u16]]
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
76 var childthing = new Thing
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
77 childthing.parts.add randommesh
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
78 childthing.parts.add randomindexedmesh
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
79 scene.children.add childthing
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
80
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
81 const vertexShader = generateVertexShaderCode[VertexDataA, Uniforms]()
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
82 const fragmentShader = generateFragmentShaderCode[VertexDataA]()
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
83 var pipeline = setupPipeline[VertexDataA, float32, uint16](
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
84 myengine,
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
85 scene,
32
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
86 vertexShader,
9edca5dc4e93 add: working implementation of uniforms
Sam <sam@basx.dev>
parents: 28
diff changeset
87 fragmentShader
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
88 )
28
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
89 myengine.run(pipeline, globalUpdate)
b1b05d4efb52 big refactoring, part1
Sam <sam@basx.dev>
parents: 22
diff changeset
90 pipeline.trash()
21
316923e9247c add: clean examples, update build configs
Sam <sam@basx.dev>
parents:
diff changeset
91 myengine.trash()