2022-03-19 17:24:47 +01:00
|
|
|
// Copyright 2022 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 ui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/affine"
|
2022-06-07 16:57:56 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/atlas"
|
2022-03-19 17:24:47 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/mipmap"
|
|
|
|
)
|
|
|
|
|
2022-03-20 08:51:23 +01:00
|
|
|
// panicOnErrorOnReadingPixels indicates whether reading pixels panics on an error or not.
|
2022-03-20 08:26:26 +01:00
|
|
|
// This value is set only on testing.
|
2022-03-20 08:51:23 +01:00
|
|
|
var panicOnErrorOnReadingPixels bool
|
2022-03-20 08:26:26 +01:00
|
|
|
|
2022-03-20 08:51:23 +01:00
|
|
|
func SetPanicOnErrorOnReadingPixelsForTesting(value bool) {
|
|
|
|
panicOnErrorOnReadingPixels = value
|
2022-03-20 08:26:26 +01:00
|
|
|
}
|
|
|
|
|
2022-03-19 17:24:47 +01:00
|
|
|
type Image struct {
|
2022-06-07 16:16:40 +02:00
|
|
|
mipmap *mipmap.Mipmap
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
volatile bool
|
2022-09-28 16:44:27 +02:00
|
|
|
|
|
|
|
dotsCache map[[2]int][4]byte
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-06-07 16:57:56 +02:00
|
|
|
func NewImage(width, height int, imageType atlas.ImageType) *Image {
|
2022-03-19 17:24:47 +01:00
|
|
|
return &Image{
|
2022-06-08 02:26:18 +02:00
|
|
|
mipmap: mipmap.New(width, height, imageType),
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
volatile: imageType == atlas.ImageTypeVolatile,
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) MarkDisposed() {
|
2022-04-02 17:21:21 +02:00
|
|
|
if i.mipmap == nil {
|
|
|
|
return
|
|
|
|
}
|
2022-03-19 17:24:47 +01:00
|
|
|
i.mipmap.MarkDisposed()
|
|
|
|
i.mipmap = nil
|
2022-09-28 16:44:27 +02:00
|
|
|
i.dotsCache = nil
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:46:02 +02:00
|
|
|
func (i *Image) DrawTriangles(srcs [graphics.ShaderImageCount]*Image, vertices []float32, indices []uint16, colorm affine.ColorM, mode graphicsdriver.CompositeMode, filter graphicsdriver.Filter, address graphicsdriver.Address, dstRegion, srcRegion graphicsdriver.Region, subimageOffsets [graphics.ShaderImageCount - 1][2]float32, shader *Shader, uniforms [][]float32, evenOdd bool, canSkipMipmap bool) {
|
2022-09-28 16:44:27 +02:00
|
|
|
i.resolveDotsCacheIfNeeded()
|
|
|
|
|
2022-07-12 18:46:02 +02:00
|
|
|
var srcMipmaps [graphics.ShaderImageCount]*mipmap.Mipmap
|
2022-03-19 17:24:47 +01:00
|
|
|
for i, src := range srcs {
|
|
|
|
if src == nil {
|
|
|
|
continue
|
|
|
|
}
|
2022-09-28 16:44:27 +02:00
|
|
|
src.resolveDotsCacheIfNeeded()
|
2022-03-19 17:24:47 +01:00
|
|
|
srcMipmaps[i] = src.mipmap
|
|
|
|
}
|
|
|
|
|
2022-10-02 16:05:45 +02:00
|
|
|
i.mipmap.DrawTriangles(srcMipmaps, vertices, indices, mode, dstRegion, srcRegion, subimageOffsets, shader.shader, uniforms, evenOdd, canSkipMipmap)
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-08-07 20:31:36 +02:00
|
|
|
func (i *Image) WritePixels(pix []byte, x, y, width, height int) {
|
2022-09-28 16:44:27 +02:00
|
|
|
if width == 1 && height == 1 {
|
|
|
|
if i.dotsCache == nil {
|
|
|
|
i.dotsCache = map[[2]int][4]byte{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var clr [4]byte
|
|
|
|
copy(clr[:], pix)
|
|
|
|
i.dotsCache[[2]int{x, y}] = clr
|
|
|
|
|
|
|
|
// One square requires 6 indices (= 2 triangles).
|
|
|
|
if len(i.dotsCache) >= graphics.IndicesCount/6 {
|
|
|
|
i.resolveDotsCacheIfNeeded()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
i.resolveDotsCacheIfNeeded()
|
2022-08-07 20:30:37 +02:00
|
|
|
i.mipmap.WritePixels(pix, x, y, width, height)
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-08-07 19:48:23 +02:00
|
|
|
func (i *Image) ReadPixels(pixels []byte, x, y, width, height int) {
|
2022-03-20 08:26:26 +01:00
|
|
|
// Check the error existence and avoid unnecessary calls.
|
|
|
|
if theGlobalState.error() != nil {
|
2022-08-07 19:48:23 +02:00
|
|
|
return
|
2022-03-20 08:26:26 +01:00
|
|
|
}
|
|
|
|
|
2022-09-28 16:44:27 +02:00
|
|
|
if width == 1 && height == 1 {
|
|
|
|
if c, ok := i.dotsCache[[2]int{x, y}]; ok {
|
|
|
|
copy(pixels, c[:])
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Do not call resolveDotsCacheIfNeeded here. This would slow (image/draw).Draw.
|
|
|
|
// See ebiten.TestImageDrawOver.
|
|
|
|
} else {
|
|
|
|
i.resolveDotsCacheIfNeeded()
|
|
|
|
}
|
|
|
|
|
2022-08-07 19:48:23 +02:00
|
|
|
if err := theUI.readPixels(i.mipmap, pixels, x, y, width, height); err != nil {
|
2022-03-20 08:51:23 +01:00
|
|
|
if panicOnErrorOnReadingPixels {
|
2022-03-20 08:26:26 +01:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
theGlobalState.setError(err)
|
|
|
|
}
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-08-31 06:10:41 +02:00
|
|
|
func (i *Image) DumpScreenshot(name string, blackbg bool) (string, error) {
|
2022-03-21 14:47:13 +01:00
|
|
|
return theUI.dumpScreenshot(i.mipmap, name, blackbg)
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-09-28 16:44:27 +02:00
|
|
|
func (i *Image) resolveDotsCacheIfNeeded() {
|
|
|
|
if len(i.dotsCache) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
l := len(i.dotsCache)
|
|
|
|
vs := graphics.Vertices(l * 4)
|
|
|
|
is := make([]uint16, l*6)
|
|
|
|
sx, sy := float32(1), float32(1)
|
|
|
|
var idx int
|
|
|
|
for p, c := range i.dotsCache {
|
|
|
|
dx := float32(p[0])
|
|
|
|
dy := float32(p[1])
|
2022-10-02 06:26:33 +02:00
|
|
|
crf := float32(c[0]) / 0xff
|
|
|
|
cgf := float32(c[1]) / 0xff
|
|
|
|
cbf := float32(c[2]) / 0xff
|
|
|
|
caf := float32(c[3]) / 0xff
|
2022-09-28 16:44:27 +02:00
|
|
|
|
|
|
|
vs[graphics.VertexFloatCount*4*idx] = dx
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+1] = dy
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+2] = sx
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+3] = sy
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+4] = crf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+5] = cgf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+6] = cbf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+7] = caf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+8] = dx + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+9] = dy
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+10] = sx + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+11] = sy
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+12] = crf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+13] = cgf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+14] = cbf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+15] = caf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+16] = dx
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+17] = dy + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+18] = sx
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+19] = sy + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+20] = crf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+21] = cgf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+22] = cbf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+23] = caf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+24] = dx + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+25] = dy + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+26] = sx + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+27] = sy + 1
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+28] = crf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+29] = cgf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+30] = cbf
|
|
|
|
vs[graphics.VertexFloatCount*4*idx+31] = caf
|
|
|
|
|
|
|
|
is[6*idx] = uint16(4 * idx)
|
|
|
|
is[6*idx+1] = uint16(4*idx + 1)
|
|
|
|
is[6*idx+2] = uint16(4*idx + 2)
|
|
|
|
is[6*idx+3] = uint16(4*idx + 1)
|
|
|
|
is[6*idx+4] = uint16(4*idx + 2)
|
|
|
|
is[6*idx+5] = uint16(4*idx + 3)
|
|
|
|
|
|
|
|
idx++
|
|
|
|
}
|
|
|
|
i.dotsCache = nil
|
|
|
|
|
|
|
|
srcs := [graphics.ShaderImageCount]*mipmap.Mipmap{emptyImage.mipmap}
|
|
|
|
dr := graphicsdriver.Region{
|
|
|
|
X: 0,
|
|
|
|
Y: 0,
|
|
|
|
Width: float32(i.width),
|
|
|
|
Height: float32(i.height),
|
|
|
|
}
|
2022-10-02 16:05:45 +02:00
|
|
|
i.mipmap.DrawTriangles(srcs, vs, is, graphicsdriver.CompositeModeCopy, dr, graphicsdriver.Region{}, [graphics.ShaderImageCount - 1][2]float32{}, NearestFilterShader.shader, nil, false, true)
|
2022-09-28 16:44:27 +02:00
|
|
|
}
|
|
|
|
|
2022-08-31 06:10:41 +02:00
|
|
|
func DumpImages(dir string) (string, error) {
|
2022-04-01 11:16:03 +02:00
|
|
|
return theUI.dumpImages(dir)
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-01 11:16:03 +02:00
|
|
|
var (
|
2022-06-07 16:57:56 +02:00
|
|
|
emptyImage = NewImage(3, 3, atlas.ImageTypeRegular)
|
2022-04-01 11:16:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
pix := make([]byte, 4*emptyImage.width*emptyImage.height)
|
|
|
|
for i := range pix {
|
|
|
|
pix[i] = 0xff
|
|
|
|
}
|
2022-08-07 20:31:36 +02:00
|
|
|
// As emptyImage is used at Fill, use WritePixels instead.
|
|
|
|
emptyImage.WritePixels(pix, 0, 0, emptyImage.width, emptyImage.height)
|
2022-03-19 17:24:47 +01:00
|
|
|
}
|
2022-03-19 15:55:14 +01:00
|
|
|
|
2022-04-01 11:16:03 +02:00
|
|
|
func (i *Image) clear() {
|
|
|
|
i.Fill(0, 0, 0, 0, 0, 0, i.width, i.height)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) Fill(r, g, b, a float32, x, y, width, height int) {
|
|
|
|
dstRegion := graphicsdriver.Region{
|
|
|
|
X: float32(x),
|
|
|
|
Y: float32(y),
|
|
|
|
Width: float32(width),
|
|
|
|
Height: float32(height),
|
|
|
|
}
|
|
|
|
|
|
|
|
vs := graphics.QuadVertices(
|
|
|
|
1, 1, float32(emptyImage.width-1), float32(emptyImage.height-1),
|
|
|
|
float32(i.width), 0, 0, float32(i.height), 0, 0,
|
|
|
|
r, g, b, a)
|
|
|
|
is := graphics.QuadIndices()
|
|
|
|
|
2022-07-12 18:46:02 +02:00
|
|
|
srcs := [graphics.ShaderImageCount]*Image{emptyImage}
|
2022-04-01 11:16:03 +02:00
|
|
|
|
2022-10-02 13:33:43 +02:00
|
|
|
i.DrawTriangles(srcs, vs, is, affine.ColorMIdentity{}, graphicsdriver.CompositeModeCopy, graphicsdriver.FilterNearest, graphicsdriver.AddressUnsafe, dstRegion, graphicsdriver.Region{}, [graphics.ShaderImageCount - 1][2]float32{}, NearestFilterShader, nil, false, true)
|
2022-03-19 15:55:14 +01:00
|
|
|
}
|