-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmesh.go
130 lines (102 loc) · 3.48 KB
/
mesh.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package gosigl
import (
opengl "github.com/go-gl/gl/v4.1-core/gl"
"math"
)
type VertexBufferObject uint32
type VertexArrayObject uint32
type ElementArrayObject uint32
type VertexObject struct {
Id VertexBufferObject
AttribId [32]VertexArrayObject
attribStride [32]int
numAttributes int
elementArrayBuffer ElementArrayObject
}
const Line = uint32(opengl.LINE)
const Triangles = uint32(opengl.TRIANGLES)
var vertexDrawMode = Triangles
func SetLineWidth(width float32) {
opengl.LineWidth(width)
}
func SetVertexDrawMode(drawMode uint32) {
vertexDrawMode = drawMode
}
func DrawArray(offset int, length int) {
opengl.DrawArrays(vertexDrawMode, int32(offset), int32(length))
}
func DrawElements(count int, offset int, indices []uint32) {
if offset > 0 {
opengl.DrawElements(opengl.TRIANGLES, int32(count), opengl.UNSIGNED_INT, opengl.Ptr(indices[offset]))
} else {
opengl.DrawElements(opengl.TRIANGLES, int32(count), opengl.UNSIGNED_INT, opengl.Ptr(nil))
}
}
func NewMesh(vertices []float32) (mesh *VertexObject) {
mesh = &VertexObject{
numAttributes: 0,
elementArrayBuffer: math.MaxUint32,
}
vbo := uint32(0)
opengl.GenBuffers(1, &vbo)
opengl.BindBuffer(opengl.ARRAY_BUFFER, vbo)
opengl.BufferData(opengl.ARRAY_BUFFER, 4*len(vertices), opengl.Ptr(vertices), opengl.STATIC_DRAW)
mesh.Id = VertexBufferObject(vbo)
// vao
vao := uint32(0)
opengl.GenVertexArrays(1, &vao)
opengl.BindVertexArray(vao)
opengl.EnableVertexAttribArray(0)
opengl.BindBuffer(opengl.ARRAY_BUFFER, vbo)
opengl.VertexAttribPointer(0, 3, opengl.FLOAT, false, 0, nil)
mesh.AttribId[mesh.numAttributes] = VertexArrayObject(vao)
mesh.attribStride[mesh.numAttributes] = 3
mesh.numAttributes++
return mesh
}
func BindMesh(mesh *VertexObject) {
BindVertexAttributes(mesh)
}
// CreateVertexAttribute creates a vertex array attribute
func CreateVertexAttribute(mesh *VertexObject, bufferData []float32, stride int) {
buffer := uint32(0)
opengl.GenBuffers(1, &buffer)
opengl.BindBuffer(opengl.ARRAY_BUFFER, buffer)
opengl.BufferData(opengl.ARRAY_BUFFER, len(bufferData)*4, opengl.Ptr(bufferData), opengl.STATIC_DRAW)
mesh.AttribId[mesh.numAttributes] = VertexArrayObject(buffer)
mesh.attribStride[mesh.numAttributes] = stride
mesh.numAttributes++
}
func CreateVertexAttributeArrayBuffer(mesh *VertexObject, bufferData []float32, stride int) {
CreateVertexAttribute(mesh, bufferData, stride)
}
func SetElementArrayAttribute(mesh *VertexObject, bufferData []uint32) {
buffer := uint32(0)
opengl.GenBuffers(1, &buffer)
opengl.BindBuffer(opengl.ELEMENT_ARRAY_BUFFER, buffer)
opengl.BufferData(opengl.ELEMENT_ARRAY_BUFFER, len(bufferData)*4, opengl.Ptr(bufferData), opengl.STATIC_DRAW)
mesh.elementArrayBuffer = ElementArrayObject(buffer)
}
func BindVertexAttributes(mesh *VertexObject) {
opengl.BindVertexArray(uint32(mesh.AttribId[0]))
opengl.EnableVertexAttribArray(0)
for i := 1; i < mesh.numAttributes; i++ {
opengl.EnableVertexAttribArray(uint32(i))
opengl.BindBuffer(opengl.ARRAY_BUFFER, uint32(mesh.AttribId[i]))
opengl.VertexAttribPointer(uint32(i), int32(mesh.attribStride[i]), opengl.FLOAT, false, 0, nil)
}
if mesh.elementArrayBuffer != math.MaxUint32 {
opengl.BindBuffer(opengl.ELEMENT_ARRAY_BUFFER, uint32(mesh.elementArrayBuffer))
}
}
func FinishMesh() {
opengl.BindVertexArray(0)
}
func DeleteMesh(mesh *VertexObject) {
vao := uint32(mesh.AttribId[0])
opengl.DeleteVertexArrays(1, &vao)
for i := 1; i < mesh.numAttributes; i++ {
buf := uint32(mesh.AttribId[1])
opengl.DeleteBuffers(1, &buf)
}
}