Mercurial > games > semicongine
view examples/alotof_triangles.nim @ 22:b45a5d338cd0
did: improve alotof_triangles example, remove glslang lib, use only binary, easier cross-compilation
author | Sam <sam@basx.dev> |
---|---|
date | Wed, 11 Jan 2023 00:43:17 +0700 |
parents | 316923e9247c |
children | b1b05d4efb52 |
line wrap: on
line source
import std/math import std/random import zamikongine/engine import zamikongine/math/vector import zamikongine/math/matrix import zamikongine/vertex import zamikongine/mesh import zamikongine/thing import zamikongine/shader type VertexDataA = object position11: VertexAttribute[Vec2[float32]] color22: VertexAttribute[Vec3[float32]] proc randomtransform(): Mat33[float32] = let randomscale = scale2d(float32(rand(1.0) + 0.5), float32(rand(1.0) + 0.5)) let randomrotate = rotate2d(float32(rand(2 * PI))) let randomtranslate = translate2d(float32(rand(1.6) - 0.8), float32(rand(1.6) - 0.8)) result = randomtranslate * randomrotate * randomscale when isMainModule: randomize() var myengine = igniteEngine() const baseTriangle = [ Vec3([-0.1'f32, -0.1'f32, 1'f32]), Vec3([ 0.1'f32, 0.1'f32, 1'f32]), Vec3([-0.1'f32, 0.1'f32, 1'f32]), ] var scene = new Thing for i in 1 .. 300: var randommesh = new Mesh[VertexDataA] # TODO: create randomized position11 from baseTriangle with random transformation matrix let transform1 = randomtransform() randommesh.vertexData = VertexDataA( position11: VertexAttribute[Vec2[float32]]( data: @[ Vec2[float32](transform1 * baseTriangle[0]), Vec2[float32](transform1 * baseTriangle[1]), Vec2[float32](transform1 * baseTriangle[2]), ] ), color22: VertexAttribute[Vec3[float32]]( data: @[ Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))]), Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))]), Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))]), ] ) ) let transform2 = randomtransform() var randomindexedmesh = new IndexedMesh[VertexDataA, uint16] randomindexedmesh.vertexData = VertexDataA( position11: VertexAttribute[Vec2[float32]]( data: @[ Vec2[float32](transform2 * baseTriangle[0]), Vec2[float32](transform2 * baseTriangle[1]), Vec2[float32](transform2 * baseTriangle[2]), ] ), color22: VertexAttribute[Vec3[float32]]( data: @[ Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))]), Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))]), Vec3([float32(rand(1)), float32(rand(1)), float32(rand(1))]), ] ) ) randomindexedmesh.indices = @[[0'u16, 1'u16, 2'u16]] var childthing = new Thing childthing.parts.add randommesh childthing.parts.add randomindexedmesh scene.children.add childthing setupPipeline[VertexDataA, uint16]( myengine, scene, generateVertexShaderCode[VertexDataA]("main", "position11", "color22"), generateFragmentShaderCode[VertexDataA]("main"), ) myengine.fullThrottle() myengine.trash()