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-14 14:05:44 +01:00
|
|
|
// ColorMatrixDim is a dimension of a ColorMatrix.
|
2014-12-09 14:09:22 +01:00
|
|
|
const ColorMatrixDim = 5
|
|
|
|
|
2014-12-20 18:55:15 +01:00
|
|
|
// A ColorMatrix represents a matrix to transform coloring when rendering an image.
|
2014-12-22 15:08:13 +01:00
|
|
|
//
|
|
|
|
// A ColorMatrix is applied to the source alpha color
|
|
|
|
// while an Image's pixels' format is alpha premultiplied.
|
|
|
|
// Before applying a matrix, a color is un-multiplied, and after applying the matrix,
|
|
|
|
// the color is multiplied again.
|
2014-12-09 14:09:22 +01:00
|
|
|
type ColorMatrix struct {
|
2014-12-24 15:26:04 +01:00
|
|
|
es [ColorMatrixDim - 1][ColorMatrixDim]float64
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// ColorMatrixI returns an identity color matrix.
|
2014-12-09 14:09:22 +01:00
|
|
|
func ColorMatrixI() ColorMatrix {
|
|
|
|
return ColorMatrix{
|
|
|
|
[ColorMatrixDim - 1][ColorMatrixDim]float64{
|
|
|
|
{1, 0, 0, 0, 0},
|
|
|
|
{0, 1, 0, 0, 0},
|
|
|
|
{0, 0, 1, 0, 0},
|
|
|
|
{0, 0, 0, 1, 0},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ColorMatrix) dim() int {
|
|
|
|
return ColorMatrixDim
|
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Element returns a value of a matrix at (i, j).
|
2014-12-13 06:41:38 +01:00
|
|
|
func (c *ColorMatrix) Element(i, j int) float64 {
|
2014-12-24 15:26:04 +01:00
|
|
|
return c.es[i][j]
|
2014-12-13 06:41:38 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Concat multiplies a color matrix with the other color matrix.
|
2014-12-09 14:09:22 +01:00
|
|
|
func (c *ColorMatrix) Concat(other ColorMatrix) {
|
|
|
|
result := ColorMatrix{}
|
|
|
|
mul(&other, c, &result)
|
|
|
|
*c = result
|
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// IsIdentity returns a boolean indicating whether the color matrix is an identity.
|
2014-12-09 14:09:22 +01:00
|
|
|
func (c *ColorMatrix) IsIdentity() bool {
|
|
|
|
return isIdentity(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ColorMatrix) setElement(i, j int, element float64) {
|
2014-12-24 15:26:04 +01:00
|
|
|
c.es[i][j] = element
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 14:24:17 +01:00
|
|
|
// Monochrome returns a color matrix to make an image monochrome.
|
2014-12-09 14:09:22 +01:00
|
|
|
func Monochrome() ColorMatrix {
|
2014-12-14 17:45:41 +01:00
|
|
|
const r = 6968.0 / 32768.0
|
|
|
|
const g = 23434.0 / 32768.0
|
|
|
|
const b = 2366.0 / 32768.0
|
2014-12-09 14:09:22 +01:00
|
|
|
return ColorMatrix{
|
|
|
|
[ColorMatrixDim - 1][ColorMatrixDim]float64{
|
|
|
|
{r, g, b, 0, 0},
|
|
|
|
{r, g, b, 0, 0},
|
|
|
|
{r, g, b, 0, 0},
|
|
|
|
{0, 0, 0, 1, 0},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-21 16:02:14 +01:00
|
|
|
// ScaleColor returns a color matrix that scales a color matrix by the given color (r, g, b, a).
|
|
|
|
func ScaleColor(r, g, b, a float64) ColorMatrix {
|
2014-12-14 18:04:33 +01:00
|
|
|
return ColorMatrix{
|
|
|
|
[ColorMatrixDim - 1][ColorMatrixDim]float64{
|
2014-12-21 16:02:14 +01:00
|
|
|
{r, 0, 0, 0, 0},
|
|
|
|
{0, g, 0, 0, 0},
|
|
|
|
{0, 0, b, 0, 0},
|
|
|
|
{0, 0, 0, a, 0},
|
2014-12-14 18:04:33 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-21 16:02:14 +01:00
|
|
|
// TranslateColor returns a color matrix that translates a color matrix by the given color (r, g, b, a).
|
|
|
|
func TranslateColor(r, g, b, a float64) ColorMatrix {
|
2014-12-14 18:04:33 +01:00
|
|
|
return ColorMatrix{
|
|
|
|
[ColorMatrixDim - 1][ColorMatrixDim]float64{
|
2014-12-21 16:02:14 +01:00
|
|
|
{1, 0, 0, 0, r},
|
|
|
|
{0, 1, 0, 0, g},
|
|
|
|
{0, 0, 1, 0, b},
|
|
|
|
{0, 0, 0, 1, a},
|
2014-12-14 18:04:33 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 17:45:41 +01:00
|
|
|
// RotateHue returns a color matrix to rotate the hue
|
|
|
|
func RotateHue(theta float64) ColorMatrix {
|
|
|
|
sin, cos := math.Sincos(theta)
|
2014-12-17 09:10:38 +01:00
|
|
|
v1 := cos + (1.0-cos)/3.0
|
|
|
|
v2 := (1.0/3.0)*(1.0-cos) - math.Sqrt(1.0/3.0)*sin
|
|
|
|
v3 := (1.0/3.0)*(1.0-cos) + math.Sqrt(1.0/3.0)*sin
|
2014-12-15 02:55:40 +01:00
|
|
|
return ColorMatrix{
|
2014-12-14 17:45:41 +01:00
|
|
|
[ColorMatrixDim - 1][ColorMatrixDim]float64{
|
2014-12-15 02:55:40 +01:00
|
|
|
{v1, v2, v3, 0, 0},
|
|
|
|
{v3, v1, v2, 0, 0},
|
|
|
|
{v2, v3, v1, 0, 0},
|
2014-12-14 17:45:41 +01:00
|
|
|
{0, 0, 0, 1, 0},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-21 16:02:14 +01:00
|
|
|
func rgba(r, g, b, a uint8) (float64, float64, float64, float64) {
|
|
|
|
const max = math.MaxUint8
|
|
|
|
rf := float64(r) / max
|
|
|
|
gf := float64(g) / max
|
|
|
|
bf := float64(b) / max
|
|
|
|
af := float64(a) / max
|
2014-12-09 14:09:22 +01:00
|
|
|
return rf, gf, bf, af
|
|
|
|
}
|