go-opengl-pixel/pixelgl/vertex.go

322 lines
9.3 KiB
Go
Raw Normal View History

2016-11-23 07:03:23 -06:00
package pixelgl
2016-11-23 11:06:55 -06:00
import (
"unsafe"
2016-11-23 11:06:55 -06:00
"github.com/go-gl/gl/v3.3-core/gl"
2016-12-01 09:44:54 -06:00
"github.com/go-gl/mathgl/mgl32"
2016-11-23 11:06:55 -06:00
"github.com/pkg/errors"
)
2016-11-23 08:59:21 -06:00
2016-11-23 07:03:23 -06:00
// VertexFormat defines a data format in a vertex buffer.
//
// Example:
//
// VertexFormat{"position": {Position, Vec2}, "colr": {Color, Vec4}, "texCoord": {TexCoord, Vec2}}
2016-11-30 10:41:48 -06:00
//
// Note: vertex array currently doesn't support matrices in vertex format.
2016-12-02 12:29:39 -06:00
type VertexFormat []Attr
2016-11-23 07:03:23 -06:00
2016-11-29 16:11:53 -06:00
// Size calculates the total size of a single vertex in this vertex format (sum of the sizes of all vertex attributes).
2016-11-23 08:59:21 -06:00
func (vf VertexFormat) Size() int {
2016-11-29 16:11:53 -06:00
total := 0
for _, attr := range vf {
total += attr.Type.Size()
2016-11-23 08:59:21 -06:00
}
2016-11-29 16:11:53 -06:00
return total
2016-11-23 07:03:23 -06:00
}
2016-11-23 08:59:21 -06:00
// VertexUsage specifies how often the vertex array data will be updated.
type VertexUsage int
const (
2016-11-23 09:14:40 -06:00
// StaticUsage means the data never or rarely gets updated.
StaticUsage VertexUsage = gl.STATIC_DRAW
// DynamicUsage means the data gets updated often.
DynamicUsage VertexUsage = gl.DYNAMIC_DRAW
// StreamUsage means the data gets updated every frame.
StreamUsage VertexUsage = gl.STREAM_DRAW
2016-11-23 08:59:21 -06:00
)
// VertexArray is an OpenGL vertex array object that also holds it's own vertex buffer object.
// From the user's points of view, VertexArray is an array of vertices that can be drawn.
type VertexArray struct {
2016-12-08 08:25:00 -06:00
enabled bool
parent Doer
vao, vbo, ebo uint32
vertexNum, indexNum int
format VertexFormat
usage VertexUsage
stride int
attrs map[Attr]int
2016-11-23 08:59:21 -06:00
}
2016-11-29 16:11:53 -06:00
// NewVertexArray creates a new empty vertex array and wraps another Doer around it.
2016-12-08 08:25:00 -06:00
//
// You cannot specify vertex attributes in this constructor, only their count. Use SetVertexAttribute* methods to
// set the vertex attributes. Use indices to specify how you want to combine vertices into triangles.
func NewVertexArray(parent Doer, format VertexFormat, usage VertexUsage, vertexNum int, indices []int) (*VertexArray, error) {
2016-11-23 08:59:21 -06:00
va := &VertexArray{
2016-12-08 08:25:00 -06:00
parent: parent,
format: format,
usage: usage,
vertexNum: vertexNum,
stride: format.Size(),
attrs: make(map[Attr]int),
2016-11-23 08:59:21 -06:00
}
2016-11-24 07:37:11 -06:00
offset := 0
for _, attr := range format {
2016-11-29 16:11:53 -06:00
switch attr.Type {
2016-12-02 11:21:28 -06:00
case Float, Vec2, Vec3, Vec4:
2016-11-29 16:11:53 -06:00
default:
return nil, errors.New("failed to create vertex array: invalid vertex format: invalid attribute type")
}
if _, ok := va.attrs[attr]; ok {
return nil, errors.New("failed to create vertex array: invalid vertex format: duplicate vertex attribute")
}
va.attrs[attr] = offset
2016-11-29 16:11:53 -06:00
offset += attr.Type.Size()
}
2016-11-28 16:26:56 -06:00
parent.Do(func(ctx Context) {
2016-12-08 08:25:00 -06:00
Do(func() {
gl.GenVertexArrays(1, &va.vao)
gl.BindVertexArray(va.vao)
gl.GenBuffers(1, &va.vbo)
gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)
2016-11-29 16:11:53 -06:00
2016-12-08 08:25:00 -06:00
emptyData := make([]byte, vertexNum*va.stride)
2016-11-29 16:11:53 -06:00
gl.BufferData(gl.ARRAY_BUFFER, len(emptyData), gl.Ptr(emptyData), uint32(usage))
2016-12-08 08:25:00 -06:00
gl.GenBuffers(1, &va.ebo)
offset := 0
2016-12-02 12:29:39 -06:00
for i, attr := range format {
2016-11-29 16:11:53 -06:00
var size int32
switch attr.Type {
2016-12-02 11:21:28 -06:00
case Float:
2016-11-29 16:11:53 -06:00
size = 1
case Vec2:
size = 2
case Vec3:
size = 3
case Vec4:
size = 4
}
gl.VertexAttribPointer(
2016-12-02 12:29:39 -06:00
uint32(i),
2016-11-29 16:11:53 -06:00
size,
2016-12-02 11:55:52 -06:00
gl.FLOAT,
false,
2016-11-29 16:11:53 -06:00
int32(va.stride),
gl.PtrOffset(offset),
)
2016-12-02 12:29:39 -06:00
gl.EnableVertexAttribArray(uint32(i))
2016-11-29 16:11:53 -06:00
offset += attr.Type.Size()
}
2016-12-08 08:25:00 -06:00
gl.BindBuffer(gl.ELEMENT_ARRAY_BUFFER, va.ebo) // need to bind EBO, so that VAO registers it
gl.BindBuffer(gl.ARRAY_BUFFER, 0)
gl.BindVertexArray(0)
2016-12-08 08:25:00 -06:00
gl.BindBuffer(gl.ELEMENT_ARRAY_BUFFER, 0)
})
2016-11-23 08:59:21 -06:00
})
2016-12-08 08:25:00 -06:00
va.SetIndices(indices)
2016-11-24 07:37:11 -06:00
2016-11-23 11:06:55 -06:00
return va, nil
2016-11-23 08:59:21 -06:00
}
2016-11-23 13:06:34 -06:00
// Delete deletes a vertex array and it's associated vertex buffer. Don't use a vertex array after deletion.
func (va *VertexArray) Delete() {
2016-11-28 16:26:56 -06:00
va.parent.Do(func(ctx Context) {
2016-11-25 15:56:17 -06:00
DoNoBlock(func() {
gl.DeleteVertexArrays(1, &va.vao)
gl.DeleteBuffers(1, &va.vbo)
})
2016-11-23 13:06:34 -06:00
})
}
// ID returns an OpenGL identifier of a vertex array.
func (va *VertexArray) ID() uint32 {
return va.vao
}
2016-11-29 16:11:53 -06:00
// Count returns the number of vertices in a vertex array.
func (va *VertexArray) Count() int {
2016-12-08 08:25:00 -06:00
return va.vertexNum
2016-11-29 16:11:53 -06:00
}
2016-11-23 08:59:21 -06:00
// VertexFormat returns the format of the vertices inside a vertex array.
//
// Do not change this format!
func (va *VertexArray) VertexFormat() VertexFormat {
return va.format
}
2016-12-08 08:25:00 -06:00
// VertexUsage returns the usage of the verteices inside a vertex array.
func (va *VertexArray) VertexUsage() VertexUsage {
return va.usage
2016-11-23 08:59:21 -06:00
}
// Draw draws a vertex array.
func (va *VertexArray) Draw() {
2016-11-28 16:26:56 -06:00
va.Do(func(Context) {})
2016-11-23 08:59:21 -06:00
}
2016-12-08 08:25:00 -06:00
// SetIndices sets the indices of triangles to be drawn. Triangles will be formed from the vertices of the array
// as defined by these indices. The first drawn triangle is specified by the first three indices, the second by
// the fourth through sixth and so on.
func (va *VertexArray) SetIndices(indices []int) {
if len(indices)%3 != 0 {
panic("vertex array set indices: number of indices not divisible by 3")
}
indices32 := make([]uint32, len(indices))
for i := range indices32 {
indices32[i] = uint32(indices[i])
}
va.indexNum = len(indices32)
DoNoBlock(func() {
gl.BindBuffer(gl.ELEMENT_ARRAY_BUFFER, va.ebo)
gl.BufferData(gl.ELEMENT_ARRAY_BUFFER, 4*len(indices32), gl.Ptr(indices32), uint32(va.usage))
gl.BindBuffer(gl.ELEMENT_ARRAY_BUFFER, 0)
})
}
2016-11-29 16:11:53 -06:00
// SetVertex sets the value of all attributes of a vertex.
// Argument data must be a slice/array containing the new vertex data.
func (va *VertexArray) SetVertex(vertex int, data interface{}) {
2016-12-08 08:25:00 -06:00
if vertex < 0 || vertex >= va.vertexNum {
2016-11-29 16:11:53 -06:00
panic("set vertex error: invalid vertex index")
}
DoNoBlock(func() {
2016-11-24 15:20:31 -06:00
gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)
2016-11-29 16:11:53 -06:00
offset := va.stride * vertex
gl.BufferSubData(gl.ARRAY_BUFFER, offset, va.format.Size(), gl.Ptr(data))
2016-11-29 16:11:53 -06:00
2016-11-24 15:20:31 -06:00
gl.BindBuffer(gl.ARRAY_BUFFER, 0)
})
}
func (va *VertexArray) checkVertex(vertex int) {
2016-12-08 08:25:00 -06:00
if vertex < 0 || vertex >= va.vertexNum {
panic("invalid vertex index")
}
}
// SetVertexAttributeFloat sets the value of a specified vertex attribute Attr{Purpose: purpose, Type: Float} of type Float
// of the specified vertex.
//
// This function returns false if the specified vertex attribute does not exist. Note that the function panics if
// the vertex if out of range.
2016-12-01 09:44:54 -06:00
func (va *VertexArray) SetVertexAttributeFloat(vertex int, purpose AttrPurpose, value float32) (ok bool) {
va.checkVertex(vertex)
attr := Attr{Purpose: purpose, Type: Float}
if _, ok := va.attrs[attr]; !ok {
return false
}
DoNoBlock(func() {
gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)
offset := va.stride*vertex + va.attrs[attr]
gl.BufferSubData(gl.ARRAY_BUFFER, offset, attr.Type.Size(), unsafe.Pointer(&value))
gl.BindBuffer(gl.ARRAY_BUFFER, 0)
})
return true
}
// SetVertexAttributeVec2 sets the value of a specified vertex attribute Attr{Purpose: purpose, Type: Vec2} of type Vec2
// of the specified vertex.
//
// This function returns false if the specified vertex attribute does not exist. Note that the function panics if
// the vertex if out of range.
2016-12-01 09:44:54 -06:00
func (va *VertexArray) SetVertexAttributeVec2(vertex int, purpose AttrPurpose, value mgl32.Vec2) (ok bool) {
va.checkVertex(vertex)
attr := Attr{Purpose: purpose, Type: Vec2}
if _, ok := va.attrs[attr]; !ok {
return false
}
DoNoBlock(func() {
gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)
offset := va.stride*vertex + va.attrs[attr]
gl.BufferSubData(gl.ARRAY_BUFFER, offset, attr.Type.Size(), unsafe.Pointer(&value))
gl.BindBuffer(gl.ARRAY_BUFFER, 0)
})
return true
}
// SetVertexAttributeVec3 sets the value of a specified vertex attribute Attr{Purpose: purpose, Type: Vec3} of type Vec3
// of the specified vertex.
//
// This function returns false if the specified vertex attribute does not exist. Note that the function panics if
// the vertex if out of range.
2016-12-01 09:44:54 -06:00
func (va *VertexArray) SetVertexAttributeVec3(vertex int, purpose AttrPurpose, value mgl32.Vec3) (ok bool) {
va.checkVertex(vertex)
attr := Attr{Purpose: purpose, Type: Vec3}
if _, ok := va.attrs[attr]; !ok {
return false
}
DoNoBlock(func() {
gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)
offset := va.stride*vertex + va.attrs[attr]
gl.BufferSubData(gl.ARRAY_BUFFER, offset, attr.Type.Size(), unsafe.Pointer(&value))
gl.BindBuffer(gl.ARRAY_BUFFER, 0)
})
return true
}
// SetVertexAttributeVec4 sets the value of a specified vertex attribute Attr{Purpose: purpose, Type: Vec4} of type Vec4
// of the specified vertex.
//
// This function returns false if the specified vertex attribute does not exist. Note that the function panics if
// the vertex if out of range.
2016-12-01 09:44:54 -06:00
func (va *VertexArray) SetVertexAttributeVec4(vertex int, purpose AttrPurpose, value mgl32.Vec4) (ok bool) {
va.checkVertex(vertex)
attr := Attr{Purpose: purpose, Type: Vec4}
2016-11-26 15:51:20 -06:00
if _, ok := va.attrs[attr]; !ok {
2016-11-30 10:41:48 -06:00
return false
2016-11-26 15:51:20 -06:00
}
DoNoBlock(func() {
2016-11-23 08:59:21 -06:00
gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)
2016-11-29 16:11:53 -06:00
offset := va.stride*vertex + va.attrs[attr]
gl.BufferSubData(gl.ARRAY_BUFFER, offset, attr.Type.Size(), unsafe.Pointer(&value))
2016-11-23 08:59:21 -06:00
gl.BindBuffer(gl.ARRAY_BUFFER, 0)
})
2016-11-30 10:41:48 -06:00
return true
2016-11-23 08:59:21 -06:00
}
// Do binds a vertex arrray and it's associated vertex buffer, executes sub, and unbinds the vertex array and it's vertex buffer.
2016-11-28 16:26:56 -06:00
func (va *VertexArray) Do(sub func(Context)) {
va.parent.Do(func(ctx Context) {
2016-12-04 13:28:50 -06:00
if va.enabled {
sub(ctx)
return
}
DoNoBlock(func() {
gl.BindVertexArray(va.vao)
})
2016-12-05 05:22:20 -06:00
va.enabled = true
2016-11-28 16:26:56 -06:00
sub(ctx)
2016-12-05 05:22:20 -06:00
va.enabled = false
DoNoBlock(func() {
2016-12-08 08:25:00 -06:00
gl.DrawElements(gl.TRIANGLES, int32(va.indexNum), gl.UNSIGNED_INT, gl.PtrOffset(0))
gl.BindVertexArray(0)
})
2016-11-23 08:59:21 -06:00
})
}