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 (
|
2017-10-14 16:58:09 +02:00
|
|
|
"image/color"
|
|
|
|
|
2016-10-31 16:13:19 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2014-12-09 14:09:22 +01:00
|
|
|
)
|
|
|
|
|
2014-12-26 14:50:02 +01:00
|
|
|
// ColorMDim is a dimension of a ColorM.
|
2016-10-31 16:13:19 +01:00
|
|
|
const ColorMDim = affine.ColorMDim
|
2016-10-30 14:11:50 +01:00
|
|
|
|
2014-12-26 14:50:02 +01:00
|
|
|
// A ColorM represents a matrix to transform coloring when rendering an image.
|
2014-12-22 15:08:13 +01:00
|
|
|
//
|
2017-09-30 18:59:34 +02:00
|
|
|
// A ColorM is applied to the straight alpha color
|
2014-12-22 15:08:13 +01:00
|
|
|
// 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-26 03:31:20 +01:00
|
|
|
//
|
|
|
|
// The initial value is identity.
|
2014-12-26 14:50:02 +01:00
|
|
|
type ColorM struct {
|
2018-02-27 17:40:37 +01:00
|
|
|
impl *affine.ColorM
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2017-05-25 15:50:47 +02:00
|
|
|
// Reset resets the ColorM as identity.
|
|
|
|
func (c *ColorM) Reset() {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = nil
|
2017-05-25 15:50:47 +02:00
|
|
|
}
|
|
|
|
|
2017-10-14 16:58:09 +02:00
|
|
|
// Apply pre-multiplies a vector (r, g, b, a, 1) by the matrix
|
2017-10-14 17:00:44 +02:00
|
|
|
// where r, g, b, and a are clr's values in straight-alpha format.
|
2017-10-14 16:58:09 +02:00
|
|
|
// In other words, Apply calculates ColorM * (r, g, b, a, 1)^T.
|
|
|
|
func (c *ColorM) Apply(clr color.Color) color.Color {
|
|
|
|
return c.impl.Apply(clr)
|
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Concat multiplies a color matrix with the other color matrix.
|
2016-02-15 15:08:10 +01:00
|
|
|
// This is same as muptiplying the matrix other and the matrix c in this order.
|
2014-12-29 11:04:18 +01:00
|
|
|
func (c *ColorM) Concat(other ColorM) {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = c.impl.Concat(other.impl)
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2016-12-19 18:41:19 +01:00
|
|
|
// Add is deprecated as of 1.5.0-alpha.
|
2016-12-19 19:05:30 +01:00
|
|
|
// Note that this doesn't make sense as an operation for affine matrices.
|
2014-12-29 11:04:18 +01:00
|
|
|
func (c *ColorM) Add(other ColorM) {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = c.impl.Add(other.impl)
|
2014-12-25 20:22:06 +01:00
|
|
|
}
|
|
|
|
|
2016-02-15 20:46:28 +01:00
|
|
|
// Scale scales the matrix by (r, g, b, a).
|
2015-01-03 10:35:44 +01:00
|
|
|
func (c *ColorM) Scale(r, g, b, a float64) {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = c.impl.Scale(float32(r), float32(g), float32(b), float32(a))
|
2015-01-03 10:35:44 +01:00
|
|
|
}
|
|
|
|
|
2016-02-15 20:46:28 +01:00
|
|
|
// Translate translates the matrix by (r, g, b, a).
|
2015-01-03 10:35:44 +01:00
|
|
|
func (c *ColorM) Translate(r, g, b, a float64) {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = c.impl.Translate(float32(r), float32(g), float32(b), float32(a))
|
2015-01-03 10:35:44 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 15:56:02 +01:00
|
|
|
// RotateHue rotates the hue.
|
2017-09-30 18:59:34 +02:00
|
|
|
// theta represents rotating angle in radian.
|
2016-02-06 15:56:02 +01:00
|
|
|
func (c *ColorM) RotateHue(theta float64) {
|
2017-09-30 18:59:34 +02:00
|
|
|
c.ChangeHSV(theta, 1, 1)
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ChangeHSV changes HSV (Hue-Saturation-Value) values.
|
|
|
|
// hueTheta is a radian value to ratate hue.
|
|
|
|
// saturationScale is a value to scale saturation.
|
|
|
|
// valueScale is a value to scale value (a.k.a. brightness).
|
|
|
|
//
|
|
|
|
// This conversion uses RGB to/from YCrCb conversion.
|
|
|
|
func (c *ColorM) ChangeHSV(hueTheta float64, saturationScale float64, valueScale float64) {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = c.impl.ChangeHSV(hueTheta, float32(saturationScale), float32(valueScale))
|
2016-02-06 15:56:02 +01:00
|
|
|
}
|
|
|
|
|
2016-10-31 16:13:19 +01:00
|
|
|
// Element returns a value of a matrix at (i, j).
|
|
|
|
func (c *ColorM) Element(i, j int) float64 {
|
2018-02-12 10:14:26 +01:00
|
|
|
b, t := c.impl.UnsafeElements()
|
|
|
|
if j < ColorMDim-1 {
|
2018-02-19 16:53:53 +01:00
|
|
|
return float64(b[i+j*(ColorMDim-1)])
|
2018-02-12 10:14:26 +01:00
|
|
|
}
|
2018-02-19 16:33:56 +01:00
|
|
|
return float64(t[i])
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
2016-03-03 17:35:03 +01:00
|
|
|
|
2016-10-31 16:13:19 +01:00
|
|
|
// SetElement sets an element at (i, j).
|
2017-09-30 18:59:34 +02:00
|
|
|
func (c *ColorM) SetElement(i, j int, element float64) {
|
2018-02-27 17:40:37 +01:00
|
|
|
c.impl = c.impl.SetElement(i, j, float32(element))
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
|
2017-09-30 18:59:34 +02:00
|
|
|
// Monochrome is deprecated as of 1.6.0-alpha. Use ChangeHSV(0, 0, 1) instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func Monochrome() ColorM {
|
2017-09-30 18:59:34 +02:00
|
|
|
c := ColorM{}
|
|
|
|
c.ChangeHSV(0, 0, 1)
|
|
|
|
return c
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2016-05-14 13:43:36 +02:00
|
|
|
// ScaleColor is deprecated as of 1.2.0-alpha. Use Scale instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func ScaleColor(r, g, b, a float64) ColorM {
|
2017-09-16 08:49:12 +02:00
|
|
|
c := ColorM{}
|
|
|
|
c.Scale(r, g, b, a)
|
|
|
|
return c
|
2014-12-14 18:04:33 +01:00
|
|
|
}
|
|
|
|
|
2016-05-14 13:43:36 +02:00
|
|
|
// TranslateColor is deprecated as of 1.2.0-alpha. Use Translate instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func TranslateColor(r, g, b, a float64) ColorM {
|
2017-09-16 08:49:12 +02:00
|
|
|
c := ColorM{}
|
|
|
|
c.Translate(r, g, b, a)
|
|
|
|
return c
|
2014-12-14 18:04:33 +01:00
|
|
|
}
|
|
|
|
|
2016-05-14 13:43:36 +02:00
|
|
|
// RotateHue is deprecated as of 1.2.0-alpha. Use RotateHue member function instead.
|
2014-12-26 14:50:02 +01:00
|
|
|
func RotateHue(theta float64) ColorM {
|
2017-09-16 08:49:12 +02:00
|
|
|
c := ColorM{}
|
|
|
|
c.RotateHue(theta)
|
|
|
|
return c
|
2014-12-14 17:45:41 +01:00
|
|
|
}
|