colorm: copy ColorM definition to improve documentations

This commit is contained in:
Hajime Hoshi 2022-11-27 13:41:34 +09:00
parent 746fbc7b5c
commit f37deea6e2
2 changed files with 146 additions and 3 deletions

View File

@ -22,6 +22,8 @@ import (
)
// ColorMDim is a dimension of a ColorM.
//
// Deprecated: as of v2.5. Use the colorm package instead.
const ColorMDim = affine.ColorMDim
// A ColorM represents a matrix to transform coloring when rendering an image.
@ -32,6 +34,8 @@ const ColorMDim = affine.ColorMDim
// the color is multiplied again.
//
// The initial value is identity.
//
// Deprecated: as of v2.5. Use the colorm package instead.
type ColorM struct {
impl affine.ColorM
@ -46,11 +50,15 @@ func (c *ColorM) affineColorM() affine.ColorM {
}
// String returns a string representation of ColorM.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) String() string {
return c.affineColorM().String()
}
// Reset resets the ColorM as identity.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Reset() {
c.impl = affine.ColorMIdentity{}
}
@ -58,12 +66,16 @@ func (c *ColorM) Reset() {
// Apply pre-multiplies a vector (r, g, b, a, 1) by the matrix
// where r, g, b, and a are clr's values in straight-alpha format.
// In other words, Apply calculates ColorM * (r, g, b, a, 1)^T.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Apply(clr color.Color) color.Color {
return c.affineColorM().Apply(clr)
}
// Concat multiplies a color matrix with the other color matrix.
// This is same as muptiplying the matrix other and the matrix c in this order.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Concat(other ColorM) {
o := other.impl
if o == nil {
@ -73,11 +85,15 @@ func (c *ColorM) Concat(other ColorM) {
}
// Scale scales the matrix by (r, g, b, a).
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Scale(r, g, b, a float64) {
c.impl = c.affineColorM().Scale(float32(r), float32(g), float32(b), float32(a))
}
// ScaleWithColor scales the matrix by clr.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) ScaleWithColor(clr color.Color) {
cr, cg, cb, ca := clr.RGBA()
if ca == 0 {
@ -88,12 +104,16 @@ func (c *ColorM) ScaleWithColor(clr color.Color) {
}
// Translate translates the matrix by (r, g, b, a).
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Translate(r, g, b, a float64) {
c.impl = c.affineColorM().Translate(float32(r), float32(g), float32(b), float32(a))
}
// RotateHue rotates the hue.
// theta represents rotating angle in radian.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) RotateHue(theta float64) {
c.ChangeHSV(theta, 1, 1)
}
@ -104,28 +124,38 @@ func (c *ColorM) RotateHue(theta float64) {
// valueScale is a value to scale value (a.k.a. brightness).
//
// This conversion uses RGB to/from YCrCb conversion.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) ChangeHSV(hueTheta float64, saturationScale float64, valueScale float64) {
c.impl = affine.ChangeHSV(c.affineColorM(), hueTheta, float32(saturationScale), float32(valueScale))
}
// Element returns a value of a matrix at (i, j).
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Element(i, j int) float64 {
return float64(c.affineColorM().At(i, j))
}
// SetElement sets an element at (i, j).
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) SetElement(i, j int, element float64) {
c.impl = affine.ColorMSetElement(c.affineColorM(), i, j, float32(element))
}
// IsInvertible returns a boolean value indicating
// whether the matrix c is invertible or not.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) IsInvertible() bool {
return c.affineColorM().IsInvertible()
}
// Invert inverts the matrix.
// If c is not invertible, Invert panics.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) Invert() {
c.impl = c.affineColorM().Invert()
}
@ -133,6 +163,8 @@ func (c *ColorM) Invert() {
// ReadElements reads the body part and the translation part to the given float32 slices.
//
// len(body) must be 16 and len(translation) must be 4. Otherwise, ReadElements panics.
//
// Deprecated: as of v2.5. Use the colorm package instead.
func (c *ColorM) ReadElements(body []float32, translation []float32) {
if len(body) != 16 {
panic(fmt.Sprintf("ebiten: len(body) must be 16 but %d", len(body)))

View File

@ -16,14 +16,16 @@ package colorm
import (
"fmt"
"image/color"
"sync"
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/internal/affine"
"github.com/hajimehoshi/ebiten/v2/internal/builtinshader"
)
// Dim is a dimension of a ColorM.
const Dim = ebiten.ColorMDim
const Dim = affine.ColorMDim
// ColorM represents a matrix to transform coloring when rendering an image.
//
@ -33,12 +35,121 @@ const Dim = ebiten.ColorMDim
// the color is multiplied again.
//
// The initial value is identity.
type ColorM = ebiten.ColorM
type ColorM struct {
impl affine.ColorM
_ [0]func() // Marks as non-comparable.
}
func (c *ColorM) affineColorM() affine.ColorM {
if c.impl != nil {
return c.impl
}
return affine.ColorMIdentity{}
}
// String returns a string representation of ColorM.
func (c *ColorM) String() string {
return c.affineColorM().String()
}
// Reset resets the ColorM as identity.
func (c *ColorM) Reset() {
c.impl = affine.ColorMIdentity{}
}
// Apply pre-multiplies a vector (r, g, b, a, 1) by the matrix
// where r, g, b, and a are clr's values in straight-alpha format.
// In other words, Apply calculates ColorM * (r, g, b, a, 1)^T.
func (c *ColorM) Apply(clr color.Color) color.Color {
return c.affineColorM().Apply(clr)
}
// Concat multiplies a color matrix with the other color matrix.
// This is same as muptiplying the matrix other and the matrix c in this order.
func (c *ColorM) Concat(other ColorM) {
o := other.impl
if o == nil {
return
}
c.impl = c.affineColorM().Concat(o)
}
// Scale scales the matrix by (r, g, b, a).
func (c *ColorM) Scale(r, g, b, a float64) {
c.impl = c.affineColorM().Scale(float32(r), float32(g), float32(b), float32(a))
}
// ScaleWithColor scales the matrix by clr.
func (c *ColorM) ScaleWithColor(clr color.Color) {
cr, cg, cb, ca := clr.RGBA()
if ca == 0 {
c.Scale(0, 0, 0, 0)
return
}
c.Scale(float64(cr)/float64(ca), float64(cg)/float64(ca), float64(cb)/float64(ca), float64(ca)/0xffff)
}
// Translate translates the matrix by (r, g, b, a).
func (c *ColorM) Translate(r, g, b, a float64) {
c.impl = c.affineColorM().Translate(float32(r), float32(g), float32(b), float32(a))
}
// RotateHue rotates the hue.
// theta represents rotating angle in radian.
func (c *ColorM) RotateHue(theta float64) {
c.ChangeHSV(theta, 1, 1)
}
// ChangeHSV changes HSV (Hue-Saturation-Value) values.
// hueTheta is a radian value to rotate 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) {
c.impl = affine.ChangeHSV(c.affineColorM(), hueTheta, float32(saturationScale), float32(valueScale))
}
// Element returns a value of a matrix at (i, j).
func (c *ColorM) Element(i, j int) float64 {
return float64(c.affineColorM().At(i, j))
}
// SetElement sets an element at (i, j).
func (c *ColorM) SetElement(i, j int, element float64) {
c.impl = affine.ColorMSetElement(c.affineColorM(), i, j, float32(element))
}
// IsInvertible returns a boolean value indicating
// whether the matrix c is invertible or not.
func (c *ColorM) IsInvertible() bool {
return c.affineColorM().IsInvertible()
}
// Invert inverts the matrix.
// If c is not invertible, Invert panics.
func (c *ColorM) Invert() {
c.impl = c.affineColorM().Invert()
}
// ReadElements reads the body part and the translation part to the given float32 slices.
//
// len(body) must be 16 and len(translation) must be 4. Otherwise, ReadElements panics.
func (c *ColorM) ReadElements(body []float32, translation []float32) {
if len(body) != 16 {
panic(fmt.Sprintf("ebiten: len(body) must be 16 but %d", len(body)))
}
if len(translation) != 4 {
panic(fmt.Sprintf("ebiten: len(translation) must be 4 but %d", len(translation)))
}
c.affineColorM().Elements(body, translation)
}
func uniforms(c ColorM) map[string]interface{} {
var body [16]float32
var translation [4]float32
c.ReadElements(body[:], translation[:])
c.affineColorM().Elements(body[:], translation[:])
uniforms := map[string]interface{}{}
uniforms[builtinshader.UniformColorMBody] = body[:]