ebiten/internal/graphicsutil/vertices.go

138 lines
3.2 KiB
Go
Raw Normal View History

2017-02-10 19:44:29 +01:00
// Copyright 2017 The Ebiten Authors
//
// 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.
package graphicsutil
2017-02-10 19:44:29 +01:00
import (
"github.com/hajimehoshi/ebiten/internal/affine"
"github.com/hajimehoshi/ebiten/internal/graphics"
"github.com/hajimehoshi/ebiten/internal/opengl"
)
2017-05-27 14:59:25 +02:00
var (
theVerticesBackend = &verticesBackend{}
)
type verticesBackend struct {
backend []float32
head int
}
func (v *verticesBackend) sliceForOneQuad() []float32 {
2017-05-27 14:59:25 +02:00
const num = 256
size := 4 * graphics.VertexSizeInBytes() / opengl.Float.SizeInBytes()
2017-05-27 14:59:25 +02:00
if v.backend == nil {
v.backend = make([]float32, size*num)
2017-05-27 14:59:25 +02:00
}
s := v.backend[v.head : v.head+size]
v.head += size
if v.head+size > len(v.backend) {
2017-05-27 14:59:25 +02:00
v.backend = nil
v.head = 0
}
return s
}
2017-05-21 16:49:56 +02:00
func isPowerOf2(x int) bool {
return (x & (x - 1)) == 0
}
func QuadVertices(width, height int, sx0, sy0, sx1, sy1 int, a, b, c, d, tx, ty float32, colorm *affine.ColorM) []float32 {
if !isPowerOf2(width) {
panic("not reached")
}
if !isPowerOf2(height) {
panic("not reached")
}
if sx0 >= sx1 || sy0 >= sy1 {
return nil
}
if sx1 <= 0 || sy1 <= 0 {
return nil
}
wf := float32(width)
hf := float32(height)
u0, v0, u1, v1 := float32(sx0)/wf, float32(sy0)/hf, float32(sx1)/wf, float32(sy1)/hf
return quadVerticesImpl(float32(sx1-sx0), float32(sy1-sy0), u0, v0, u1, v1, a, b, c, d, tx, ty, colorm)
}
func quadVerticesImpl(x, y, u0, v0, u1, v1, a, b, c, d, tx, ty float32, colorm *affine.ColorM) []float32 {
// Specifying a range explicitly here is redundant but this helps optimization
// to eliminate boundry checks.
vs := theVerticesBackend.sliceForOneQuad()[0:104]
2018-06-17 10:29:22 +02:00
2018-06-17 13:11:31 +02:00
ax, by, cx, dy := a*x, b*y, c*x, d*y
cbody, ctranslate := colorm.UnsafeElements()
2018-06-17 13:11:31 +02:00
// Vertex coordinates
vs[0] = tx
vs[1] = ty
// Texture coordinates: first 2 values indicates the actual coodinate, and
// the second indicates diagonally opposite coodinates.
// The second is needed to calculate source rectangle size in shader programs.
vs[2] = u0
vs[3] = v0
vs[4] = u1
vs[5] = v1
// and the same for the other three coordinates
vs[26] = ax + tx
vs[27] = cx + ty
vs[28] = u1
vs[29] = v0
vs[30] = u0
vs[31] = v1
vs[52] = by + tx
vs[53] = dy + ty
vs[54] = u0
vs[55] = v1
vs[56] = u1
vs[57] = v0
vs[78] = ax + by + tx
vs[79] = cx + dy + ty
vs[80] = u1
vs[81] = v1
vs[82] = u0
vs[83] = v0
// Use for loop since subslicing is heavy on GopherJS.
for i := 0; i < 16; i++ {
vs[6+i] = cbody[i]
vs[32+i] = cbody[i]
vs[58+i] = cbody[i]
vs[84+i] = cbody[i]
}
for i := 0; i < 4; i++ {
vs[22+i] = ctranslate[i]
vs[48+i] = ctranslate[i]
vs[74+i] = ctranslate[i]
vs[100+i] = ctranslate[i]
}
2018-06-17 10:29:22 +02:00
return vs
2017-05-21 16:49:56 +02:00
}
2018-07-20 20:40:37 +02:00
var (
quadIndices = []uint16{0, 1, 2, 1, 2, 3}
)
func QuadIndices() []uint16 {
return quadIndices
}