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.
|
|
|
|
|
2018-06-10 16:08:22 +02:00
|
|
|
package graphicsutil
|
2017-02-10 19:44:29 +01:00
|
|
|
|
2017-05-01 16:23:58 +02:00
|
|
|
import (
|
2018-02-26 16:05:11 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2018-06-10 10:53:57 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2017-05-01 16:23:58 +02:00
|
|
|
)
|
|
|
|
|
2017-05-27 14:59:25 +02:00
|
|
|
var (
|
|
|
|
theVerticesBackend = &verticesBackend{}
|
|
|
|
)
|
|
|
|
|
|
|
|
type verticesBackend struct {
|
|
|
|
backend []float32
|
|
|
|
head int
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:53:57 +02:00
|
|
|
func (v *verticesBackend) sliceForOneQuad() []float32 {
|
2017-05-27 14:59:25 +02:00
|
|
|
const num = 256
|
2018-06-10 10:53:57 +02:00
|
|
|
size := 4 * graphics.VertexSizeInBytes() / opengl.Float.SizeInBytes()
|
2017-05-27 14:59:25 +02:00
|
|
|
if v.backend == nil {
|
2018-06-10 10:53:57 +02:00
|
|
|
v.backend = make([]float32, size*num)
|
2017-05-27 14:59:25 +02:00
|
|
|
}
|
2018-06-10 10:53:57 +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
|
|
|
|
2018-06-16 17:52:25 +02:00
|
|
|
type GeoM interface {
|
2018-06-17 12:45:09 +02:00
|
|
|
Elements() (a, b, c, d, tx, ty float32)
|
2018-06-16 17:52:25 +02:00
|
|
|
}
|
|
|
|
|
2018-06-17 16:05:10 +02:00
|
|
|
func isPowerOf2(x int) bool {
|
|
|
|
return (x & (x - 1)) == 0
|
|
|
|
}
|
|
|
|
|
2018-06-16 17:52:25 +02:00
|
|
|
func QuadVertices(width, height int, sx0, sy0, sx1, sy1 int, geom GeoM) []float32 {
|
2018-06-17 16:05:10 +02:00
|
|
|
if !isPowerOf2(width) {
|
|
|
|
panic("not reached")
|
|
|
|
}
|
|
|
|
if !isPowerOf2(height) {
|
|
|
|
panic("not reached")
|
|
|
|
}
|
|
|
|
|
2017-12-14 03:52:11 +01:00
|
|
|
if sx0 >= sx1 || sy0 >= sy1 {
|
2017-01-17 17:35:21 +01:00
|
|
|
return nil
|
|
|
|
}
|
2017-12-15 17:27:30 +01:00
|
|
|
if sx1 <= 0 || sy1 <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-06-17 16:05:10 +02:00
|
|
|
wf := float32(width)
|
|
|
|
hf := float32(height)
|
2017-01-17 17:35:21 +01:00
|
|
|
u0, v0, u1, v1 := float32(sx0)/wf, float32(sy0)/hf, float32(sx1)/wf, float32(sy1)/hf
|
2018-06-17 12:45:09 +02:00
|
|
|
return quadVerticesImpl(float32(sx1-sx0), float32(sy1-sy0), u0, v0, u1, v1, geom)
|
2018-06-16 19:15:40 +02:00
|
|
|
}
|
2017-12-02 12:51:18 +01:00
|
|
|
|
2018-06-17 12:45:09 +02:00
|
|
|
func quadVerticesImpl(x, y, u0, v0, u1, v1 float32, geom GeoM) []float32 {
|
2018-06-17 10:29:22 +02:00
|
|
|
vs := theVerticesBackend.sliceForOneQuad()
|
|
|
|
|
2018-06-17 12:45:09 +02:00
|
|
|
a, b, c, d, tx, ty := geom.Elements()
|
2018-06-17 13:11:31 +02:00
|
|
|
ax, by, cx, dy := a*x, b*y, c*x, d*y
|
|
|
|
|
2017-12-02 12:51:18 +01:00
|
|
|
// Vertex coordinates
|
2018-06-17 12:45:09 +02:00
|
|
|
vs[0] = tx
|
|
|
|
vs[1] = ty
|
2017-12-02 12:51:18 +01:00
|
|
|
|
|
|
|
// 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.
|
2017-01-17 17:35:21 +01:00
|
|
|
vs[2] = u0
|
|
|
|
vs[3] = v0
|
2017-12-02 12:51:18 +01:00
|
|
|
vs[4] = u1
|
|
|
|
vs[5] = v1
|
|
|
|
|
2018-01-14 08:01:55 +01:00
|
|
|
// and the same for the other three coordinates
|
2018-06-17 13:11:31 +02:00
|
|
|
vs[6] = ax + tx
|
|
|
|
vs[7] = cx + ty
|
2018-01-14 08:01:55 +01:00
|
|
|
vs[8] = u1
|
|
|
|
vs[9] = v0
|
|
|
|
vs[10] = u0
|
|
|
|
vs[11] = v1
|
|
|
|
|
2018-06-17 13:11:31 +02:00
|
|
|
vs[12] = by + tx
|
|
|
|
vs[13] = dy + ty
|
2018-01-14 08:01:55 +01:00
|
|
|
vs[14] = u0
|
|
|
|
vs[15] = v1
|
|
|
|
vs[16] = u1
|
|
|
|
vs[17] = v0
|
|
|
|
|
2018-06-17 13:11:31 +02:00
|
|
|
vs[18] = ax + by + tx
|
|
|
|
vs[19] = cx + dy + ty
|
2018-01-14 08:01:55 +01:00
|
|
|
vs[20] = u1
|
|
|
|
vs[21] = v1
|
|
|
|
vs[22] = u0
|
|
|
|
vs[23] = v0
|
2018-06-17 10:29:22 +02:00
|
|
|
|
|
|
|
return vs
|
2017-05-21 16:49:56 +02:00
|
|
|
}
|