2014-12-24 03:04:10 +01:00
|
|
|
// 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
|
|
|
|
2014-12-09 14:09:22 +01:00
|
|
|
package ebiten
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
)
|
|
|
|
|
2014-12-26 14:50:02 +01:00
|
|
|
// GeoMDim is a dimension of a GeoM.
|
|
|
|
const GeoMDim = 3
|
2014-12-09 14:09:22 +01:00
|
|
|
|
2014-12-26 14:50:02 +01:00
|
|
|
// A GeoM represents a matrix to transform geometry when rendering an image.
|
2014-12-26 03:31:20 +01:00
|
|
|
//
|
|
|
|
// The initial value is identity.
|
2014-12-26 14:50:02 +01:00
|
|
|
type GeoM struct {
|
2014-12-26 03:43:31 +01:00
|
|
|
initialized bool
|
2014-12-26 14:50:02 +01:00
|
|
|
es [GeoMDim - 1][GeoMDim]float64
|
2014-12-26 03:22:36 +01:00
|
|
|
}
|
|
|
|
|
2015-01-02 17:54:12 +01:00
|
|
|
func (g *GeoM) dim() int {
|
2014-12-26 14:50:02 +01:00
|
|
|
return GeoMDim
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2015-01-03 14:54:01 +01:00
|
|
|
func (g *GeoM) initialize() {
|
|
|
|
g.initialized = true
|
|
|
|
g.es[0][0] = 1
|
|
|
|
g.es[1][1] = 1
|
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Element returns a value of a matrix at (i, j).
|
2015-01-02 17:54:12 +01:00
|
|
|
func (g *GeoM) Element(i, j int) float64 {
|
2014-12-26 03:43:31 +01:00
|
|
|
if !g.initialized {
|
2014-12-26 03:22:36 +01:00
|
|
|
if i == j {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
2014-12-24 15:26:04 +01:00
|
|
|
return g.es[i][j]
|
2014-12-13 06:41:38 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Concat multiplies a geometry matrix with the other geometry matrix.
|
2016-02-15 15:08:10 +01:00
|
|
|
// This is same as muptiplying the matrix other and the matrix g in this order.
|
2014-12-29 11:04:18 +01:00
|
|
|
func (g *GeoM) Concat(other GeoM) {
|
2014-12-26 03:43:31 +01:00
|
|
|
if !g.initialized {
|
2015-01-03 14:54:01 +01:00
|
|
|
g.initialize()
|
2014-12-26 03:22:36 +01:00
|
|
|
}
|
2014-12-26 14:50:02 +01:00
|
|
|
result := GeoM{}
|
2014-12-09 14:09:22 +01:00
|
|
|
mul(&other, g, &result)
|
|
|
|
*g = result
|
|
|
|
}
|
|
|
|
|
2014-12-25 20:22:06 +01:00
|
|
|
// Add adds a geometry matrix with the other geometry matrix.
|
2014-12-29 11:04:18 +01:00
|
|
|
func (g *GeoM) Add(other GeoM) {
|
2014-12-26 03:43:31 +01:00
|
|
|
if !g.initialized {
|
2015-01-03 14:54:01 +01:00
|
|
|
g.initialize()
|
2014-12-26 03:22:36 +01:00
|
|
|
}
|
2014-12-26 14:50:02 +01:00
|
|
|
result := GeoM{}
|
2014-12-25 20:22:06 +01:00
|
|
|
add(&other, g, &result)
|
|
|
|
*g = result
|
|
|
|
}
|
|
|
|
|
2015-02-18 03:04:23 +01:00
|
|
|
// Scale scales the matrix by (x, y).
|
2015-01-03 10:35:44 +01:00
|
|
|
func (g *GeoM) Scale(x, y float64) {
|
|
|
|
if !g.initialized {
|
2015-01-03 14:54:01 +01:00
|
|
|
g.initialize()
|
2015-01-03 10:35:44 +01:00
|
|
|
}
|
2015-01-03 11:18:09 +01:00
|
|
|
for i := 0; i < GeoMDim; i++ {
|
|
|
|
g.es[0][i] *= x
|
|
|
|
g.es[1][i] *= y
|
|
|
|
}
|
2015-01-03 10:35:44 +01:00
|
|
|
}
|
|
|
|
|
2015-02-18 03:04:23 +01:00
|
|
|
// Translate translates the matrix by (x, y).
|
2015-01-03 10:35:44 +01:00
|
|
|
func (g *GeoM) Translate(tx, ty float64) {
|
|
|
|
if !g.initialized {
|
2015-01-03 14:54:01 +01:00
|
|
|
g.initialize()
|
2015-01-03 10:35:44 +01:00
|
|
|
}
|
|
|
|
g.es[0][2] += tx
|
|
|
|
g.es[1][2] += ty
|
|
|
|
}
|
|
|
|
|
2016-02-15 15:08:10 +01:00
|
|
|
// Rotate rotates the matrix by theta.
|
2015-01-05 02:30:33 +01:00
|
|
|
func (g *GeoM) Rotate(theta float64) {
|
2016-02-06 15:43:43 +01:00
|
|
|
sin, cos := math.Sincos(theta)
|
|
|
|
g.Concat(GeoM{
|
|
|
|
initialized: true,
|
|
|
|
es: [2][3]float64{
|
|
|
|
{cos, -sin, 0},
|
|
|
|
{sin, cos, 0},
|
|
|
|
},
|
|
|
|
})
|
2015-01-05 02:30:33 +01:00
|
|
|
}
|
|
|
|
|
2014-12-26 02:33:50 +01:00
|
|
|
// SetElement sets an element at (i, j).
|
2014-12-26 14:50:02 +01:00
|
|
|
func (g *GeoM) SetElement(i, j int, element float64) {
|
2014-12-26 03:43:31 +01:00
|
|
|
if !g.initialized {
|
2015-01-03 14:54:01 +01:00
|
|
|
g.initialize()
|
2014-12-26 03:22:36 +01:00
|
|
|
}
|
2014-12-24 15:26:04 +01:00
|
|
|
g.es[i][j] = element
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 15:43:43 +01:00
|
|
|
// Deprecated as of 1.2.0-alpha. Use Scale instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func ScaleGeo(x, y float64) GeoM {
|
|
|
|
return GeoM{
|
2014-12-26 03:43:31 +01:00
|
|
|
initialized: true,
|
|
|
|
es: [2][3]float64{
|
2014-12-14 17:58:52 +01:00
|
|
|
{x, 0, 0},
|
|
|
|
{0, y, 0},
|
|
|
|
},
|
|
|
|
}
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 15:43:43 +01:00
|
|
|
// Deprecated as of 1.2.0-alpha. Use Translate instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func TranslateGeo(tx, ty float64) GeoM {
|
|
|
|
return GeoM{
|
2014-12-26 03:43:31 +01:00
|
|
|
initialized: true,
|
|
|
|
es: [2][3]float64{
|
2014-12-14 17:58:52 +01:00
|
|
|
{1, 0, tx},
|
|
|
|
{0, 1, ty},
|
|
|
|
},
|
|
|
|
}
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 15:43:43 +01:00
|
|
|
// Deprecated as of 1.2.0-alpha. Use Rotate instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func RotateGeo(theta float64) GeoM {
|
2014-12-09 14:09:22 +01:00
|
|
|
sin, cos := math.Sincos(theta)
|
2014-12-26 14:50:02 +01:00
|
|
|
return GeoM{
|
2014-12-26 03:43:31 +01:00
|
|
|
initialized: true,
|
|
|
|
es: [2][3]float64{
|
2014-12-09 14:09:22 +01:00
|
|
|
{cos, -sin, 0},
|
|
|
|
{sin, cos, 0},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|