ebiten/internal/graphics/program.go

273 lines
7.4 KiB
Go
Raw Normal View History

// Copyright 2014 Hajime Hoshi
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2014-12-09 15:16:04 +01:00
package graphics
2013-10-26 18:56:58 +02:00
import (
2015-07-22 16:27:50 +02:00
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
2015-01-17 04:45:19 +01:00
"math"
)
var (
indexBufferLines opengl.Buffer
indexBufferQuads opengl.Buffer
2013-10-26 18:56:58 +02:00
)
2015-01-12 12:47:49 +01:00
var (
programTexture opengl.Program
programSolidRect opengl.Program
programSolidLine opengl.Program
2015-01-12 12:47:49 +01:00
)
2013-10-26 18:56:58 +02:00
2015-01-17 06:44:47 +01:00
const indicesNum = math.MaxUint16 + 1
const quadsMaxNum = indicesNum / 6
2015-01-13 15:03:37 +01:00
// unsafe.SizeOf can't be used because unsafe doesn't work with GopherJS.
2015-01-16 02:37:26 +01:00
const int16Size = 2
const float32Size = 4
2014-12-31 08:12:13 +01:00
func initialize(c *opengl.Context) error {
shaderVertexModelviewNative, err := c.NewShader(c.VertexShader, shader(c, shaderVertexModelview))
2014-12-31 08:12:13 +01:00
if err != nil {
return err
2013-10-26 18:56:58 +02:00
}
defer c.DeleteShader(shaderVertexModelviewNative)
2014-12-31 08:12:13 +01:00
shaderVertexColorNative, err := c.NewShader(c.VertexShader, shader(c, shaderVertexColor))
if err != nil {
return err
}
defer c.DeleteShader(shaderVertexColorNative)
shaderVertexColorLineNative, err := c.NewShader(c.VertexShader, shader(c, shaderVertexColorLine))
if err != nil {
return err
}
defer c.DeleteShader(shaderVertexColorLineNative)
shaderFragmentTextureNative, err := c.NewShader(c.FragmentShader, shader(c, shaderFragmentTexture))
2014-12-31 08:12:13 +01:00
if err != nil {
return err
}
defer c.DeleteShader(shaderFragmentTextureNative)
2013-10-26 18:56:58 +02:00
2015-01-17 04:45:19 +01:00
shaderFragmentSolidNative, err := c.NewShader(c.FragmentShader, shader(c, shaderFragmentSolid))
2015-01-12 12:47:49 +01:00
if err != nil {
return err
}
2015-01-17 04:45:19 +01:00
defer c.DeleteShader(shaderFragmentSolidNative)
2015-01-12 12:47:49 +01:00
programTexture, err = c.NewProgram([]opengl.Shader{
shaderVertexModelviewNative,
shaderFragmentTextureNative,
2015-01-12 12:47:49 +01:00
})
if err != nil {
return err
2014-12-31 08:48:25 +01:00
}
2015-01-12 12:47:49 +01:00
programSolidRect, err = c.NewProgram([]opengl.Shader{
shaderVertexColorNative,
2015-01-17 04:45:19 +01:00
shaderFragmentSolidNative,
2015-01-12 12:47:49 +01:00
})
if err != nil {
return err
}
2014-12-31 09:45:23 +01:00
programSolidLine, err = c.NewProgram([]opengl.Shader{
shaderVertexColorLineNative,
shaderFragmentSolidNative,
})
if err != nil {
return err
}
// 16 [bytse] is an arbitrary number which seems enough to draw anything. Fix this if necessary.
const stride = 16
c.NewBuffer(c.ArrayBuffer, 4*stride*quadsMaxNum, c.DynamicDraw)
2014-12-31 09:45:23 +01:00
2015-01-13 15:03:37 +01:00
indices := make([]uint16, 6*quadsMaxNum)
for i := uint16(0); i < quadsMaxNum; i++ {
2014-12-31 09:45:23 +01:00
indices[6*i+0] = 4*i + 0
indices[6*i+1] = 4*i + 1
indices[6*i+2] = 4*i + 2
indices[6*i+3] = 4*i + 1
indices[6*i+4] = 4*i + 2
indices[6*i+5] = 4*i + 3
}
2015-01-17 04:45:19 +01:00
indexBufferQuads = c.NewBuffer(c.ElementArrayBuffer, indices, c.StaticDraw)
2015-01-17 06:44:47 +01:00
indices = make([]uint16, indicesNum)
for i := 0; i < len(indices); i++ {
indices[i] = uint16(i)
2015-01-17 04:45:19 +01:00
}
indexBufferLines = c.NewBuffer(c.ElementArrayBuffer, indices, c.StaticDraw)
2014-12-31 09:45:23 +01:00
return nil
2013-10-26 18:56:58 +02:00
}
func areSameFloat32Array(a, b []float32) bool {
if len(a) != len(b) {
return false
}
for i := 0; i < len(a); i++ {
if a[i] != b[i] {
return false
}
}
return true
}
var (
lastProgram opengl.Program
lastProjectionMatrix []float32
lastModelviewMatrix []float32
lastColorMatrix []float32
)
type programFinisher func()
func (p programFinisher) FinishProgram() {
p()
}
func useProgramForTexture(c *opengl.Context, projectionMatrix []float32, texture opengl.Texture, geo Matrix, color Matrix) programFinisher {
if !lastProgram.Equals(programTexture) {
c.UseProgram(programTexture)
lastProgram = programTexture
lastProjectionMatrix = nil
lastModelviewMatrix = nil
lastColorMatrix = nil
}
program := programTexture
2013-10-27 11:54:28 +01:00
2015-01-17 04:45:19 +01:00
c.BindElementArrayBuffer(indexBufferQuads)
if !areSameFloat32Array(lastProjectionMatrix, projectionMatrix) {
c.UniformFloats(program, "projection_matrix", projectionMatrix)
if lastProjectionMatrix == nil {
lastProjectionMatrix = make([]float32, 16)
}
copy(lastProjectionMatrix, projectionMatrix)
}
2013-10-26 18:56:58 +02:00
2014-12-31 10:23:18 +01:00
ma := float32(geo.Element(0, 0))
mb := float32(geo.Element(0, 1))
mc := float32(geo.Element(1, 0))
md := float32(geo.Element(1, 1))
tx := float32(geo.Element(0, 2))
ty := float32(geo.Element(1, 2))
modelviewMatrix := []float32{
2014-12-31 10:23:18 +01:00
ma, mc, 0, 0,
mb, md, 0, 0,
2013-10-26 18:56:58 +02:00
0, 0, 1, 0,
tx, ty, 0, 1,
}
if !areSameFloat32Array(lastModelviewMatrix, modelviewMatrix) {
c.UniformFloats(program, "modelview_matrix", modelviewMatrix)
if lastModelviewMatrix == nil {
lastModelviewMatrix = make([]float32, 16)
}
copy(lastModelviewMatrix, modelviewMatrix)
}
2015-01-03 07:52:02 +01:00
c.UniformInt(program, "texture", 0)
2013-10-26 18:56:58 +02:00
e := [4][5]float32{}
for i := 0; i < 4; i++ {
for j := 0; j < 5; j++ {
e[i][j] = float32(color.Element(i, j))
2013-10-26 18:56:58 +02:00
}
}
colorMatrix := []float32{
2013-10-26 18:56:58 +02:00
e[0][0], e[1][0], e[2][0], e[3][0],
e[0][1], e[1][1], e[2][1], e[3][1],
e[0][2], e[1][2], e[2][2], e[3][2],
e[0][3], e[1][3], e[2][3], e[3][3],
}
if !areSameFloat32Array(lastColorMatrix, colorMatrix) {
c.UniformFloats(program, "color_matrix", colorMatrix)
if lastColorMatrix == nil {
lastColorMatrix = make([]float32, 16)
}
copy(lastColorMatrix, colorMatrix)
}
colorMatrixTranslation := []float32{
2013-10-26 18:56:58 +02:00
e[0][4], e[1][4], e[2][4], e[3][4],
}
c.UniformFloats(program, "color_matrix_translation", colorMatrixTranslation)
2013-10-26 18:56:58 +02:00
// We don't have to call gl.ActiveTexture here: GL_TEXTURE0 is the default active texture
// See also: https://www.opengl.org/sdk/docs/man2/xhtml/glActiveTexture.xml
c.BindTexture(texture)
c.EnableVertexAttribArray(program, "vertex")
c.EnableVertexAttribArray(program, "tex_coord")
c.VertexAttribPointer(program, "vertex", true, false, int16Size*4, 2, int16Size*0)
c.VertexAttribPointer(program, "tex_coord", true, true, int16Size*4, 2, int16Size*2)
return func() {
c.DisableVertexAttribArray(program, "tex_coord")
c.DisableVertexAttribArray(program, "vertex")
}
2013-10-26 18:56:58 +02:00
}
2015-01-12 12:47:49 +01:00
func useProgramForLines(c *opengl.Context, projectionMatrix []float32) programFinisher {
if !lastProgram.Equals(programSolidLine) {
c.UseProgram(programSolidLine)
lastProgram = programSolidLine
2015-01-17 04:45:19 +01:00
}
program := programSolidLine
2015-01-17 04:45:19 +01:00
c.BindElementArrayBuffer(indexBufferLines)
c.UniformFloats(program, "projection_matrix", projectionMatrix)
c.EnableVertexAttribArray(program, "vertex")
c.EnableVertexAttribArray(program, "color")
// TODO: Change to floats?
c.VertexAttribPointer(program, "vertex", true, false, int16Size*6, 2, int16Size*0)
c.VertexAttribPointer(program, "color", false, true, int16Size*6, 4, int16Size*2)
2015-01-17 04:45:19 +01:00
return func() {
c.DisableVertexAttribArray(program, "color")
c.DisableVertexAttribArray(program, "vertex")
}
}
func useProgramForRects(c *opengl.Context, projectionMatrix []float32) programFinisher {
if !lastProgram.Equals(programSolidRect) {
c.UseProgram(programSolidRect)
lastProgram = programSolidRect
2015-01-12 12:47:49 +01:00
}
program := programSolidRect
2015-01-17 04:45:19 +01:00
c.BindElementArrayBuffer(indexBufferQuads)
2015-01-12 12:47:49 +01:00
c.UniformFloats(program, "projection_matrix", projectionMatrix)
c.EnableVertexAttribArray(program, "vertex")
c.EnableVertexAttribArray(program, "color")
2015-01-12 12:47:49 +01:00
c.VertexAttribPointer(program, "vertex", true, false, int16Size*6, 2, int16Size*0)
c.VertexAttribPointer(program, "color", false, true, int16Size*6, 4, int16Size*2)
2015-01-12 12:47:49 +01:00
return func() {
c.DisableVertexAttribArray(program, "color")
2015-01-12 12:47:49 +01:00
c.DisableVertexAttribArray(program, "vertex")
}
}