2019-01-22 18:50:30 +01:00
|
|
|
// Copyright 2019 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 affine_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
2020-07-03 18:23:47 +02:00
|
|
|
"math/rand"
|
2019-01-22 18:50:30 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "github.com/hajimehoshi/ebiten/internal/affine"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestColorMScaleOnly(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
In *ColorM
|
|
|
|
Out bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Translate(0, 0, 0, 0),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Translate(1, 0, 0, 0),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Translate(0, 0, 0, -1),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Scale(1, 1, 1, 1),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Scale(0, 0, 0, 0),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Scale(0.1, 0.2, 0.3, 0.4),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).Scale(0.1, 0.2, 0.3, 0.4).Translate(1, 0, 0, 0),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).ChangeHSV(math.Pi/2, 0.5, 0.5),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).SetElement(0, 0, 2),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
(*ColorM)(nil).SetElement(0, 1, 2),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, c := range cases {
|
|
|
|
got := c.In.ScaleOnly()
|
|
|
|
want := c.Out
|
|
|
|
if got != want {
|
|
|
|
t.Errorf("%v.ScaleOnly(): got: %t, want: %t", c.In, got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-03 18:23:47 +02:00
|
|
|
|
|
|
|
func TestColorMIsInvertible(t *testing.T) {
|
|
|
|
m := &ColorM{}
|
|
|
|
m = m.SetElement(1, 0, .5)
|
|
|
|
m = m.SetElement(1, 1, .5)
|
|
|
|
m = m.SetElement(1, 2, .5)
|
|
|
|
m = m.SetElement(1, 3, .5)
|
|
|
|
m = m.SetElement(1, 4, .5)
|
2020-07-03 18:33:28 +02:00
|
|
|
|
2020-07-03 18:23:47 +02:00
|
|
|
cidentity := &ColorM{}
|
|
|
|
cinvalid := &ColorM{}
|
|
|
|
cinvalid = cinvalid.SetElement(0, 0, 0)
|
|
|
|
cinvalid = cinvalid.SetElement(1, 1, 0)
|
|
|
|
cinvalid = cinvalid.SetElement(2, 2, 0)
|
|
|
|
cinvalid = cinvalid.SetElement(3, 3, 0)
|
2020-07-03 18:33:28 +02:00
|
|
|
|
2020-07-03 18:23:47 +02:00
|
|
|
cases := []struct {
|
|
|
|
In *ColorM
|
|
|
|
Out bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
cidentity,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
m,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
cinvalid,
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, c := range cases {
|
|
|
|
got := c.In.IsInvertible()
|
|
|
|
want := c.Out
|
|
|
|
if got != want {
|
|
|
|
t.Errorf("%v.IsInvertible(): got: %t, want: %t", c.In, got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 18:33:28 +02:00
|
|
|
func arrayToColorM(es [4][5]float32) *ColorM {
|
|
|
|
var a = &ColorM{}
|
2020-07-03 18:23:47 +02:00
|
|
|
for j := 0; j < 5; j++ {
|
|
|
|
for i := 0; i < 4; i++ {
|
2020-07-03 18:33:28 +02:00
|
|
|
a = a.SetElement(i, j, es[i][j])
|
2020-07-03 18:23:47 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-03 18:33:28 +02:00
|
|
|
return a
|
|
|
|
}
|
2020-07-03 18:23:47 +02:00
|
|
|
|
2020-07-03 18:33:28 +02:00
|
|
|
func TestColorMInvert(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
In *ColorM
|
|
|
|
Out *ColorM
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
In: nil,
|
|
|
|
Out: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
In: arrayToColorM([4][5]float32{
|
|
|
|
{1, 0, 0, 0, 0},
|
|
|
|
{8, 1, 0, 0, 0},
|
|
|
|
{-9, 0, 1, 0, 0},
|
|
|
|
{7, 4, 2, 1, 0},
|
|
|
|
}),
|
|
|
|
Out: arrayToColorM([4][5]float32{
|
|
|
|
{1, 0, 0, 0, 0},
|
|
|
|
{-8, 1, 0, 0, 0},
|
|
|
|
{9, 0, 1, 0, 0},
|
|
|
|
{7, -4, -2, 1, 0},
|
|
|
|
}),
|
|
|
|
},
|
2020-07-03 18:23:47 +02:00
|
|
|
}
|
|
|
|
|
2020-07-03 18:33:28 +02:00
|
|
|
for _, c := range cases {
|
|
|
|
if got, want := c.In.Invert(), c.Out; !got.Equals(want) {
|
|
|
|
t.Errorf("got: %v, want: %v", got, want)
|
|
|
|
}
|
2020-07-03 18:23:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkColorMInvert(b *testing.B) {
|
2020-07-03 18:33:28 +02:00
|
|
|
r := rand.Float32
|
|
|
|
|
2020-07-03 18:23:47 +02:00
|
|
|
b.StopTimer()
|
2020-07-03 18:33:28 +02:00
|
|
|
var m *ColorM
|
|
|
|
for m == nil || !m.IsInvertible() {
|
|
|
|
m = arrayToColorM([4][5]float32{
|
|
|
|
{r(), r(), r(), r(), r() * 10},
|
|
|
|
{r(), r(), r(), r(), r() * 10},
|
|
|
|
{r(), r(), r(), r(), r() * 10},
|
|
|
|
{r(), r(), r(), r(), r() * 10},
|
|
|
|
})
|
|
|
|
}
|
2020-07-03 18:23:47 +02:00
|
|
|
b.StartTimer()
|
2020-07-03 18:33:28 +02:00
|
|
|
|
2020-07-03 18:23:47 +02:00
|
|
|
for i := 0; i < b.N; i++ {
|
2020-07-03 18:33:28 +02:00
|
|
|
m = m.Invert()
|
2020-07-03 18:23:47 +02:00
|
|
|
}
|
|
|
|
}
|