2017-07-28 07:35:00 -05:00
|
|
|
package pixel_test
|
|
|
|
|
|
|
|
import (
|
2017-07-30 23:41:26 -05:00
|
|
|
"fmt"
|
2019-02-12 07:57:03 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"math"
|
2017-07-28 07:35:00 -05:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/faiface/pixel"
|
|
|
|
)
|
|
|
|
|
2017-07-30 23:29:23 -05:00
|
|
|
type rectTestTransform struct {
|
|
|
|
name string
|
|
|
|
f func(pixel.Rect) pixel.Rect
|
|
|
|
}
|
2017-07-28 08:12:07 -05:00
|
|
|
|
2017-07-30 23:29:23 -05:00
|
|
|
func TestResizeRect(t *testing.T) {
|
2017-07-28 08:12:07 -05:00
|
|
|
|
2017-07-30 23:29:23 -05:00
|
|
|
// rectangles
|
2017-07-30 23:41:26 -05:00
|
|
|
squareAroundOrigin := pixel.R(-10, -10, 10, 10)
|
|
|
|
squareAround2020 := pixel.R(10, 10, 30, 30)
|
|
|
|
rectangleAroundOrigin := pixel.R(-20, -10, 20, 10)
|
|
|
|
rectangleAround2020 := pixel.R(0, 10, 40, 30)
|
2017-07-30 23:29:23 -05:00
|
|
|
|
|
|
|
// resize transformations
|
|
|
|
resizeByHalfAroundCenter := rectTestTransform{"by half around center", func(rect pixel.Rect) pixel.Rect {
|
|
|
|
return rect.Resized(rect.Center(), rect.Size().Scaled(0.5))
|
|
|
|
}}
|
|
|
|
resizeByHalfAroundMin := rectTestTransform{"by half around Min", func(rect pixel.Rect) pixel.Rect {
|
|
|
|
return rect.Resized(rect.Min, rect.Size().Scaled(0.5))
|
|
|
|
}}
|
|
|
|
resizeByHalfAroundMax := rectTestTransform{"by half around Max", func(rect pixel.Rect) pixel.Rect {
|
|
|
|
return rect.Resized(rect.Max, rect.Size().Scaled(0.5))
|
|
|
|
}}
|
|
|
|
resizeByHalfAroundMiddleOfLeftSide := rectTestTransform{"by half around middle of left side", func(rect pixel.Rect) pixel.Rect {
|
|
|
|
return rect.Resized(pixel.V(rect.Min.X, rect.Center().Y), rect.Size().Scaled(0.5))
|
|
|
|
}}
|
|
|
|
resizeByHalfAroundOrigin := rectTestTransform{"by half around the origin", func(rect pixel.Rect) pixel.Rect {
|
|
|
|
return rect.Resized(pixel.ZV, rect.Size().Scaled(0.5))
|
|
|
|
}}
|
|
|
|
|
|
|
|
testCases := []struct {
|
2017-07-30 23:41:26 -05:00
|
|
|
input pixel.Rect
|
2017-07-30 23:29:23 -05:00
|
|
|
transform rectTestTransform
|
|
|
|
answer pixel.Rect
|
|
|
|
}{
|
|
|
|
{squareAroundOrigin, resizeByHalfAroundCenter, pixel.R(-5, -5, 5, 5)},
|
|
|
|
{squareAround2020, resizeByHalfAroundCenter, pixel.R(15, 15, 25, 25)},
|
|
|
|
{rectangleAroundOrigin, resizeByHalfAroundCenter, pixel.R(-10, -5, 10, 5)},
|
|
|
|
{rectangleAround2020, resizeByHalfAroundCenter, pixel.R(10, 15, 30, 25)},
|
|
|
|
|
|
|
|
{squareAroundOrigin, resizeByHalfAroundMin, pixel.R(-10, -10, 0, 0)},
|
|
|
|
{squareAround2020, resizeByHalfAroundMin, pixel.R(10, 10, 20, 20)},
|
|
|
|
{rectangleAroundOrigin, resizeByHalfAroundMin, pixel.R(-20, -10, 0, 0)},
|
|
|
|
{rectangleAround2020, resizeByHalfAroundMin, pixel.R(0, 10, 20, 20)},
|
|
|
|
|
|
|
|
{squareAroundOrigin, resizeByHalfAroundMax, pixel.R(0, 0, 10, 10)},
|
|
|
|
{squareAround2020, resizeByHalfAroundMax, pixel.R(20, 20, 30, 30)},
|
|
|
|
{rectangleAroundOrigin, resizeByHalfAroundMax, pixel.R(0, 0, 20, 10)},
|
|
|
|
{rectangleAround2020, resizeByHalfAroundMax, pixel.R(20, 20, 40, 30)},
|
|
|
|
|
|
|
|
{squareAroundOrigin, resizeByHalfAroundMiddleOfLeftSide, pixel.R(-10, -5, 0, 5)},
|
|
|
|
{squareAround2020, resizeByHalfAroundMiddleOfLeftSide, pixel.R(10, 15, 20, 25)},
|
|
|
|
{rectangleAroundOrigin, resizeByHalfAroundMiddleOfLeftSide, pixel.R(-20, -5, 0, 5)},
|
|
|
|
{rectangleAround2020, resizeByHalfAroundMiddleOfLeftSide, pixel.R(0, 15, 20, 25)},
|
|
|
|
|
|
|
|
{squareAroundOrigin, resizeByHalfAroundOrigin, pixel.R(-5, -5, 5, 5)},
|
|
|
|
{squareAround2020, resizeByHalfAroundOrigin, pixel.R(5, 5, 15, 15)},
|
|
|
|
{rectangleAroundOrigin, resizeByHalfAroundOrigin, pixel.R(-10, -5, 10, 5)},
|
|
|
|
{rectangleAround2020, resizeByHalfAroundOrigin, pixel.R(0, 5, 20, 15)},
|
2017-07-28 08:12:07 -05:00
|
|
|
}
|
|
|
|
|
2017-07-30 23:29:23 -05:00
|
|
|
for _, testCase := range testCases {
|
2017-07-30 23:41:26 -05:00
|
|
|
t.Run(fmt.Sprintf("Resize %v %s", testCase.input, testCase.transform.name), func(t *testing.T) {
|
|
|
|
testResult := testCase.transform.f(testCase.input)
|
|
|
|
if testResult != testCase.answer {
|
|
|
|
t.Errorf("Got: %v, wanted: %v\n", testResult, testCase.answer)
|
|
|
|
}
|
|
|
|
})
|
2017-07-28 08:12:07 -05:00
|
|
|
}
|
2017-07-28 07:35:00 -05:00
|
|
|
}
|
2019-02-12 07:57:03 -06:00
|
|
|
|
|
|
|
func TestMatrix_Unproject(t *testing.T) {
|
2019-02-13 07:39:47 -06:00
|
|
|
const delta = 1e-15
|
2019-02-12 07:57:03 -06:00
|
|
|
t.Run("for rotated matrix", func(t *testing.T) {
|
2019-02-12 11:53:38 -06:00
|
|
|
matrix := pixel.IM.
|
|
|
|
Rotated(pixel.ZV, math.Pi/2)
|
2019-02-12 07:57:03 -06:00
|
|
|
unprojected := matrix.Unproject(pixel.V(0, 1))
|
2019-02-12 08:24:17 -06:00
|
|
|
assert.InDelta(t, unprojected.X, 1, delta)
|
|
|
|
assert.InDelta(t, unprojected.Y, 0, delta)
|
2019-02-12 07:57:03 -06:00
|
|
|
})
|
|
|
|
t.Run("for moved matrix", func(t *testing.T) {
|
2019-02-12 11:53:38 -06:00
|
|
|
matrix := pixel.IM.
|
2019-02-13 07:39:47 -06:00
|
|
|
Moved(pixel.V(1, 2))
|
|
|
|
unprojected := matrix.Unproject(pixel.V(2, 5))
|
|
|
|
assert.InDelta(t, unprojected.X, 1, delta)
|
|
|
|
assert.InDelta(t, unprojected.Y, 3, delta)
|
2019-02-12 07:57:03 -06:00
|
|
|
})
|
|
|
|
t.Run("for scaled matrix", func(t *testing.T) {
|
2019-02-12 11:53:38 -06:00
|
|
|
matrix := pixel.IM.
|
|
|
|
Scaled(pixel.ZV, 2)
|
2019-02-13 07:39:47 -06:00
|
|
|
unprojected := matrix.Unproject(pixel.V(2, 4))
|
|
|
|
assert.InDelta(t, unprojected.X, 1, delta)
|
2019-02-12 08:24:17 -06:00
|
|
|
assert.InDelta(t, unprojected.Y, 2, delta)
|
2019-02-12 07:57:03 -06:00
|
|
|
})
|
2019-02-12 11:40:15 -06:00
|
|
|
t.Run("for scaled, rotated and moved matrix", func(t *testing.T) {
|
2019-02-12 11:53:38 -06:00
|
|
|
matrix := pixel.IM.
|
|
|
|
Scaled(pixel.ZV, 2).
|
|
|
|
Rotated(pixel.ZV, math.Pi/2).
|
|
|
|
Moved(pixel.V(2, 2))
|
2019-02-12 11:40:15 -06:00
|
|
|
unprojected := matrix.Unproject(pixel.V(-2, 6))
|
|
|
|
assert.InDelta(t, unprojected.X, 2, delta)
|
|
|
|
assert.InDelta(t, unprojected.Y, 2, delta)
|
|
|
|
})
|
2019-02-12 09:26:19 -06:00
|
|
|
t.Run("for rotated and moved matrix", func(t *testing.T) {
|
2019-02-12 11:53:38 -06:00
|
|
|
matrix := pixel.IM.
|
|
|
|
Rotated(pixel.ZV, math.Pi/2).
|
|
|
|
Moved(pixel.V(1, 1))
|
2019-02-12 09:26:19 -06:00
|
|
|
unprojected := matrix.Unproject(pixel.V(1, 2))
|
|
|
|
assert.InDelta(t, unprojected.X, 1, delta)
|
|
|
|
assert.InDelta(t, unprojected.Y, 0, delta)
|
|
|
|
})
|
2019-02-13 07:39:47 -06:00
|
|
|
t.Run("for projected vertices using all kinds of matrices", func(t *testing.T) {
|
2019-02-13 08:13:04 -06:00
|
|
|
namedMatrices := [...]struct {
|
2019-02-13 08:06:50 -06:00
|
|
|
name string
|
|
|
|
matrix pixel.Matrix
|
|
|
|
}{
|
|
|
|
{"IM", pixel.IM},
|
|
|
|
{"Scaled", pixel.IM.Scaled(pixel.ZV, 0.5)},
|
|
|
|
{"Scaled x 2", pixel.IM.Scaled(pixel.ZV, 2)},
|
|
|
|
{"Rotated", pixel.IM.Rotated(pixel.ZV, math.Pi/4)},
|
|
|
|
{"Moved", pixel.IM.Moved(pixel.V(0.5, 1))},
|
|
|
|
{"Moved 2", pixel.IM.Moved(pixel.V(-1, -0.5))},
|
|
|
|
{"Scaled and Rotated", pixel.IM.Scaled(pixel.ZV, 0.5).Rotated(pixel.ZV, math.Pi/4)},
|
|
|
|
{"Scaled, Rotated and Moved", pixel.IM.Scaled(pixel.ZV, 0.5).Rotated(pixel.ZV, math.Pi/4).Moved(pixel.V(1, 2))},
|
|
|
|
{"Rotated and Moved", pixel.IM.Rotated(pixel.ZV, math.Pi/4).Moved(pixel.V(1, 2))},
|
2019-02-13 07:39:47 -06:00
|
|
|
}
|
|
|
|
vertices := [...]pixel.Vec{
|
|
|
|
pixel.V(0, 0),
|
|
|
|
pixel.V(5, 0),
|
|
|
|
pixel.V(5, 10),
|
|
|
|
pixel.V(0, 10),
|
|
|
|
pixel.V(-5, 10),
|
|
|
|
pixel.V(-5, 0),
|
|
|
|
pixel.V(-5, -10),
|
|
|
|
pixel.V(0, -10),
|
|
|
|
pixel.V(5, -10),
|
|
|
|
}
|
2019-02-13 08:06:50 -06:00
|
|
|
for _, namedMatrix := range namedMatrices {
|
2019-02-13 07:39:47 -06:00
|
|
|
for _, vertex := range vertices {
|
2019-02-13 08:06:50 -06:00
|
|
|
testCase := fmt.Sprintf("for matrix %s and vertex %v", namedMatrix.name, vertex)
|
2019-02-13 07:39:47 -06:00
|
|
|
t.Run(testCase, func(t *testing.T) {
|
2019-02-13 08:06:50 -06:00
|
|
|
matrix := namedMatrix.matrix
|
2019-02-13 07:39:47 -06:00
|
|
|
projected := matrix.Project(vertex)
|
|
|
|
unprojected := matrix.Unproject(projected)
|
|
|
|
assert.InDelta(t, vertex.X, unprojected.X, delta)
|
|
|
|
assert.InDelta(t, vertex.Y, unprojected.Y, delta)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2019-02-12 07:57:03 -06:00
|
|
|
t.Run("for singular matrix", func(t *testing.T) {
|
|
|
|
matrix := pixel.Matrix{0, 0, 0, 0, 0, 0}
|
|
|
|
unprojected := matrix.Unproject(pixel.ZV)
|
|
|
|
assert.True(t, math.IsNaN(unprojected.X))
|
|
|
|
assert.True(t, math.IsNaN(unprojected.Y))
|
|
|
|
})
|
|
|
|
}
|