1 module evael.graphics.shapes.Shape; 2 3 import evael.graphics.GraphicsDevice; 4 import evael.graphics.Drawable; 5 import evael.graphics.shaders.Shader; 6 import evael.graphics.Vertex; 7 import evael.graphics.Texture; 8 9 import evael.utils.Math; 10 import evael.utils.Color; 11 import evael.utils.Size; 12 13 /** 14 * Shape. 15 */ 16 class Shape(Type) : Drawable 17 { 18 private Type[] m_vertices; 19 private int[] m_indices; 20 private uint m_trianglesNumber; 21 22 /** 23 * Shape constructor. 24 */ 25 @nogc 26 public this(GraphicsDevice graphicsDevice, Type[] vertices, int[] indices) nothrow 27 { 28 super(0, 0, 0, size); 29 30 this.m_graphicsDevice = graphicsDevice; 31 this.m_vertices = vertices; 32 this.m_indices = indices; 33 34 this.initialize(); 35 } 36 37 /** 38 * Shape destructor. 39 */ 40 public void dispose() 41 { 42 43 } 44 45 /** 46 * Initializes shape. 47 */ 48 @nogc 49 public void initialize() nothrow 50 { 51 this.m_vao = this.m_graphicsDevice.generateVAO(); 52 this.m_vertexBuffer = this.m_graphicsDevice.createVertexBuffer(Type.sizeof * this.m_vertices.length, this.m_vertices.ptr); 53 this.m_indexBuffer = this.m_graphicsDevice.createIndexBuffer(uint.sizeof * this.m_indices.length, this.m_indices.ptr); 54 55 this.m_graphicsDevice.setVertexBuffer!(Type)(this.m_vertexBuffer); 56 57 this.m_graphicsDevice.bindVAO(0); 58 59 this.m_trianglesNumber = this.m_indices.length / 3; 60 } 61 62 public override void draw(in float deltaTime, mat4 view, mat4 projection) 63 { 64 if (!this.m_isVisible) 65 return; 66 67 this.m_graphicsDevice.enableShader(this.m_shader); 68 69 if (this.m_texture !is null) 70 this.m_graphicsDevice.bindTexture(this.m_texture); 71 72 mat4 translation = translationMatrix(this.m_position); 73 mat4 rotation = this.m_rotation.toMatrix4x4(); 74 mat4 scale = scaleMatrix(this.m_scale); 75 mat4 model = translation * rotation * scale; 76 77 this.m_graphicsDevice.setMatrix(this.m_shader.modelMatrix, model.arrayof.ptr); 78 this.m_graphicsDevice.setMatrix(this.m_shader.viewMatrix, view.arrayof.ptr); 79 this.m_graphicsDevice.setMatrix(this.m_shader.projectionMatrix, projection.arrayof.ptr); 80 81 this.m_graphicsDevice.bindVAO(this.m_vao); 82 83 this.m_graphicsDevice.drawIndexedPrimitives!(PrimitiveType.Triangle)(this.m_trianglesNumber); 84 85 this.m_graphicsDevice.bindVAO(0); 86 87 this.m_graphicsDevice.disableShader(); 88 } 89 90 public void draw(in float deltaTime) 91 { 92 this.draw(deltaTime, this.m_graphicsDevice.viewMatrix, this.m_graphicsDevice.projectionMatrix); 93 } 94 95 @nogc @safe 96 @property pure nothrow 97 { 98 public Type[] vertices() 99 { 100 return this.m_vertices; 101 } 102 103 public int[] indices() 104 { 105 return this.m_indices; 106 } 107 } 108 }