2016-06-11 18:45:40 +02:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2018-10-28 12:10:05 +01:00
|
|
|
package graphicscommand
|
2016-06-11 18:45:40 +02:00
|
|
|
|
|
|
|
import (
|
2019-07-19 16:29:19 +02:00
|
|
|
"fmt"
|
|
|
|
"image"
|
|
|
|
"os"
|
2021-08-04 18:15:41 +02:00
|
|
|
"sort"
|
2019-07-19 18:42:19 +02:00
|
|
|
"strings"
|
2019-07-19 16:29:19 +02:00
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/affine"
|
2021-08-04 18:15:41 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/debug"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
2022-02-06 12:41:32 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/png"
|
2016-06-11 18:45:40 +02:00
|
|
|
)
|
|
|
|
|
2017-09-21 18:13:37 +02:00
|
|
|
// Image represents an image that is implemented with OpenGL.
|
2016-06-11 18:45:40 +02:00
|
|
|
type Image struct {
|
2022-02-06 12:41:32 +01:00
|
|
|
image graphicsdriver.Image
|
2019-09-28 16:03:11 +02:00
|
|
|
width int
|
|
|
|
height int
|
|
|
|
internalWidth int
|
|
|
|
internalHeight int
|
|
|
|
screen bool
|
2020-05-19 16:48:43 +02:00
|
|
|
|
|
|
|
// id is an indentifier for the image. This is used only when dummping the information.
|
|
|
|
//
|
2022-02-06 12:41:32 +01:00
|
|
|
// This is duplicated with graphicsdriver.Image's ID, but this id is still necessary because this image might not
|
|
|
|
// have its graphicsdriver.Image.
|
2020-05-19 16:48:43 +02:00
|
|
|
id int
|
2019-07-19 16:18:07 +02:00
|
|
|
|
2022-02-06 12:41:32 +01:00
|
|
|
bufferedRP []*graphicsdriver.ReplacePixelsArgs
|
2019-07-19 16:18:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var nextID = 1
|
|
|
|
|
|
|
|
func genNextID() int {
|
|
|
|
id := nextID
|
|
|
|
nextID++
|
|
|
|
return id
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 14:24:19 +01:00
|
|
|
// NewImage returns a new image.
|
|
|
|
//
|
|
|
|
// Note that the image is not initialized yet.
|
2018-02-13 18:02:48 +01:00
|
|
|
func NewImage(width, height int) *Image {
|
2016-07-04 17:24:06 +02:00
|
|
|
i := &Image{
|
2019-09-20 16:59:04 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
id: genNextID(),
|
2016-07-04 17:24:06 +02:00
|
|
|
}
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &newImageCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
result: i,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2019-09-18 18:18:53 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
2017-03-03 15:51:25 +01:00
|
|
|
return i
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2018-02-24 15:35:55 +01:00
|
|
|
func NewScreenFramebufferImage(width, height int) *Image {
|
2016-07-04 17:24:06 +02:00
|
|
|
i := &Image{
|
2019-09-20 16:59:04 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
screen: true,
|
|
|
|
id: genNextID(),
|
2016-07-04 17:24:06 +02:00
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
c := &newScreenFramebufferImageCommand{
|
2018-02-24 15:35:55 +01:00
|
|
|
result: i,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2019-09-18 18:18:53 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
2017-03-03 15:51:25 +01:00
|
|
|
return i
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2019-11-21 15:42:46 +01:00
|
|
|
func (i *Image) resolveBufferedReplacePixels() {
|
|
|
|
if len(i.bufferedRP) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c := &replacePixelsCommand{
|
|
|
|
dst: i,
|
|
|
|
args: i.bufferedRP,
|
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
i.bufferedRP = nil
|
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func (i *Image) Dispose() {
|
2020-05-17 20:45:58 +02:00
|
|
|
c := &disposeImageCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
target: i,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2019-09-18 18:18:53 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 16:18:00 +02:00
|
|
|
func (i *Image) InternalSize() (int, int) {
|
2020-08-08 09:01:33 +02:00
|
|
|
if i.screen {
|
|
|
|
return i.width, i.height
|
|
|
|
}
|
2019-09-28 16:03:11 +02:00
|
|
|
if i.internalWidth == 0 {
|
|
|
|
i.internalWidth = graphics.InternalImageSize(i.width)
|
|
|
|
}
|
|
|
|
if i.internalHeight == 0 {
|
|
|
|
i.internalHeight = graphics.InternalImageSize(i.height)
|
|
|
|
}
|
|
|
|
return i.internalWidth, i.internalHeight
|
2019-06-25 16:18:00 +02:00
|
|
|
}
|
|
|
|
|
2019-09-19 18:55:18 +02:00
|
|
|
// DrawTriangles draws triangles with the given image.
|
|
|
|
//
|
|
|
|
// The vertex floats are:
|
|
|
|
//
|
2020-07-02 16:06:58 +02:00
|
|
|
// 0: Destination X in pixels
|
|
|
|
// 1: Destination Y in pixels
|
|
|
|
// 2: Source X in pixels (not texels!)
|
|
|
|
// 3: Source Y in pixels
|
|
|
|
// 4: Color R [0.0-1.0]
|
|
|
|
// 5: Color G
|
|
|
|
// 6: Color B
|
|
|
|
// 7: Color Y
|
2020-05-23 19:36:09 +02:00
|
|
|
//
|
|
|
|
// src and shader are exclusive and only either is non-nil.
|
2020-05-24 09:43:08 +02:00
|
|
|
//
|
|
|
|
// The elements that index is in between 2 and 7 are used for the source images.
|
|
|
|
// The source image is 1) src argument if non-nil, or 2) an image value in the uniform variables if it exists.
|
|
|
|
// If there are multiple images in the uniform variables, the smallest ID's value is adopted.
|
|
|
|
//
|
2020-05-24 09:54:28 +02:00
|
|
|
// If the source image is not specified, i.e., src is nil and there is no image in the uniform variables, the
|
|
|
|
// elements for the source image are not used.
|
2022-03-21 09:48:47 +01:00
|
|
|
func (i *Image) DrawTriangles(srcs [graphics.ShaderImageNum]*Image, offsets [graphics.ShaderImageNum - 1][2]float32, vertices []float32, indices []uint16, clr affine.ColorM, mode graphicsdriver.CompositeMode, filter graphicsdriver.Filter, address graphicsdriver.Address, dstRegion, srcRegion graphicsdriver.Region, shader *Shader, uniforms map[string]interface{}, evenOdd bool) {
|
2020-09-20 22:36:47 +02:00
|
|
|
if shader == nil {
|
|
|
|
// Fast path for rendering without a shader (#1355).
|
|
|
|
img := srcs[0]
|
|
|
|
if img.screen {
|
2020-07-17 18:09:58 +02:00
|
|
|
panic("graphicscommand: the screen image cannot be the rendering source")
|
|
|
|
}
|
2020-09-20 22:36:47 +02:00
|
|
|
img.resolveBufferedReplacePixels()
|
|
|
|
} else {
|
|
|
|
for _, src := range srcs {
|
|
|
|
if src == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if src.screen {
|
|
|
|
panic("graphicscommand: the screen image cannot be the rendering source")
|
|
|
|
}
|
|
|
|
src.resolveBufferedReplacePixels()
|
|
|
|
}
|
2020-05-24 19:31:54 +02:00
|
|
|
}
|
2020-05-17 20:45:58 +02:00
|
|
|
i.resolveBufferedReplacePixels()
|
|
|
|
|
2021-07-02 12:26:09 +02:00
|
|
|
theCommandQueue.EnqueueDrawTrianglesCommand(i, srcs, offsets, vertices, indices, clr, mode, filter, address, dstRegion, srcRegion, shader, uniforms, evenOdd)
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2022-02-27 09:41:19 +01:00
|
|
|
// ReadPixels reads the image's pixels.
|
|
|
|
// ReadPixels returns an error when an error happens in the graphics driver.
|
2022-03-19 15:55:14 +01:00
|
|
|
func (i *Image) ReadPixels(graphicsDriver graphicsdriver.Graphics, buf []byte) error {
|
2019-11-21 15:42:46 +01:00
|
|
|
i.resolveBufferedReplacePixels()
|
2018-07-11 19:40:06 +02:00
|
|
|
c := &pixelsCommand{
|
2022-02-27 09:41:19 +01:00
|
|
|
img: i,
|
|
|
|
result: buf,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2018-07-11 19:40:06 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
2022-03-19 15:55:14 +01:00
|
|
|
if err := theCommandQueue.Flush(graphicsDriver); err != nil {
|
2022-02-27 09:41:19 +01:00
|
|
|
return err
|
2020-01-18 17:18:56 +01:00
|
|
|
}
|
2022-02-27 09:41:19 +01:00
|
|
|
return nil
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2022-03-20 17:03:00 +01:00
|
|
|
func (i *Image) ReplacePixels(pixels []byte, mask []byte, x, y, width, height int) {
|
2022-02-06 12:41:32 +01:00
|
|
|
i.bufferedRP = append(i.bufferedRP, &graphicsdriver.ReplacePixelsArgs{
|
2019-11-21 15:42:46 +01:00
|
|
|
Pixels: pixels,
|
2022-03-20 17:03:00 +01:00
|
|
|
Mask: mask,
|
2019-11-21 15:42:46 +01:00
|
|
|
X: x,
|
|
|
|
Y: y,
|
|
|
|
Width: width,
|
|
|
|
Height: height,
|
|
|
|
})
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2016-06-12 16:54:36 +02:00
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (i *Image) IsInvalidated() bool {
|
2019-05-28 04:26:08 +02:00
|
|
|
if i.screen {
|
|
|
|
// The screen image might not have a texture, and in this case it is impossible to detect whether
|
|
|
|
// the image is invalidated or not.
|
|
|
|
panic("graphicscommand: IsInvalidated cannot be called on the screen image")
|
|
|
|
}
|
|
|
|
|
2018-11-04 11:36:33 +01:00
|
|
|
// i.image can be nil before initializing.
|
|
|
|
if i.image == nil {
|
|
|
|
return false
|
|
|
|
}
|
2018-11-04 10:34:36 +01:00
|
|
|
return i.image.IsInvalidated()
|
2016-06-12 16:54:36 +02:00
|
|
|
}
|
2019-07-19 16:29:19 +02:00
|
|
|
|
2019-07-19 18:42:19 +02:00
|
|
|
// Dump dumps the image to the specified path.
|
|
|
|
// In the path, '*' is replaced with the image's ID.
|
2019-07-19 16:29:19 +02:00
|
|
|
//
|
2020-02-05 19:03:38 +01:00
|
|
|
// If blackbg is true, any alpha values in the dumped image will be 255.
|
|
|
|
//
|
2019-07-19 16:29:19 +02:00
|
|
|
// This is for testing usage.
|
2022-03-19 15:55:14 +01:00
|
|
|
func (i *Image) Dump(graphicsDriver graphicsdriver.Graphics, path string, blackbg bool, rect image.Rectangle) error {
|
2019-07-21 09:38:16 +02:00
|
|
|
// Screen image cannot be dumped.
|
|
|
|
if i.screen {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-19 18:42:19 +02:00
|
|
|
path = strings.ReplaceAll(path, "*", fmt.Sprintf("%d", i.id))
|
|
|
|
f, err := os.Create(path)
|
2019-07-19 16:29:19 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
2022-02-27 12:11:27 +01:00
|
|
|
pix := make([]byte, 4*i.width*i.height)
|
2022-03-19 15:55:14 +01:00
|
|
|
if err := i.ReadPixels(graphicsDriver, pix); err != nil {
|
2020-01-18 17:18:56 +01:00
|
|
|
return err
|
|
|
|
}
|
2020-02-05 19:03:38 +01:00
|
|
|
|
|
|
|
if blackbg {
|
|
|
|
for i := 0; i < len(pix)/4; i++ {
|
|
|
|
pix[4*i+3] = 0xff
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-29 09:09:25 +02:00
|
|
|
if err := png.Encode(f, (&image.RGBA{
|
2020-01-18 17:18:56 +01:00
|
|
|
Pix: pix,
|
2019-07-19 16:29:19 +02:00
|
|
|
Stride: 4 * i.width,
|
|
|
|
Rect: image.Rect(0, 0, i.width, i.height),
|
2021-07-29 09:09:25 +02:00
|
|
|
}).SubImage(rect)); err != nil {
|
2019-07-19 16:29:19 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-08-04 18:15:41 +02:00
|
|
|
|
|
|
|
func LogImagesInfo(images []*Image) {
|
|
|
|
sort.Slice(images, func(a, b int) bool {
|
|
|
|
return images[a].id < images[b].id
|
|
|
|
})
|
|
|
|
for _, i := range images {
|
|
|
|
w, h := i.InternalSize()
|
|
|
|
debug.Logf(" %d: (%d, %d)\n", i.id, w, h)
|
|
|
|
}
|
|
|
|
}
|