ebiten/internal/graphicscommand/image.go

255 lines
6.3 KiB
Go
Raw Normal View History

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 (
"fmt"
"image"
"os"
"sort"
2019-07-19 18:42:19 +02:00
"strings"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2/internal/affine"
"github.com/hajimehoshi/ebiten/v2/internal/debug"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2/internal/driver"
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
"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 {
image driver.Image
width int
height int
internalWidth int
internalHeight int
screen bool
// id is an indentifier for the image. This is used only when dummping the information.
//
// This is duplicated with driver.Image's ID, but this id is still necessary because this image might not
// have its driver.Image.
id int
bufferedRP []*driver.ReplacePixelsArgs
}
var nextID = 1
func genNextID() int {
id := nextID
nextID++
return id
2016-06-11 18:45:40 +02:00
}
// NewImage returns a new image.
//
// Note that the image is not initialized yet.
func NewImage(width, height int) *Image {
2016-07-04 17:24:06 +02:00
i := &Image{
width: width,
height: height,
id: genNextID(),
2016-07-04 17:24:06 +02:00
}
2016-06-11 18:45:40 +02:00
c := &newImageCommand{
result: i,
width: width,
height: height,
2016-06-11 18:45:40 +02:00
}
theCommandQueue.Enqueue(c)
return i
2016-06-11 18:45:40 +02:00
}
func NewScreenFramebufferImage(width, height int) *Image {
2016-07-04 17:24:06 +02:00
i := &Image{
width: width,
height: height,
screen: true,
id: genNextID(),
2016-07-04 17:24:06 +02:00
}
c := &newScreenFramebufferImageCommand{
result: i,
width: width,
height: height,
2016-06-11 18:45:40 +02:00
}
theCommandQueue.Enqueue(c)
return i
2016-06-11 18:45:40 +02:00
}
func (i *Image) resolveBufferedReplacePixels() {
if len(i.bufferedRP) == 0 {
return
}
c := &replacePixelsCommand{
dst: i,
args: i.bufferedRP,
}
theCommandQueue.Enqueue(c)
i.bufferedRP = nil
}
func (i *Image) Dispose() {
c := &disposeImageCommand{
target: i,
2016-06-11 18:45:40 +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) {
if i.screen {
return i.width, i.height
}
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
}
// DrawTriangles draws triangles with the given image.
//
// The vertex floats are:
//
// 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
//
// src and shader are exclusive and only either is non-nil.
//
// 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.
func (i *Image) DrawTriangles(srcs [graphics.ShaderImageNum]*Image, offsets [graphics.ShaderImageNum - 1][2]float32, vertices []float32, indices []uint16, clr affine.ColorM, mode driver.CompositeMode, filter driver.Filter, address driver.Address, dstRegion, srcRegion driver.Region, shader *Shader, uniforms []driver.Uniform, evenOdd bool) {
if shader == nil {
// Fast path for rendering without a shader (#1355).
img := srcs[0]
if img.screen {
panic("graphicscommand: the screen image cannot be the rendering source")
}
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()
}
}
i.resolveBufferedReplacePixels()
theCommandQueue.EnqueueDrawTrianglesCommand(i, srcs, offsets, vertices, indices, clr, mode, filter, address, dstRegion, srcRegion, shader, uniforms, evenOdd)
2016-06-11 18:45:40 +02:00
}
// Pixels returns the image's pixels.
// Pixels might return nil when OpenGL error happens.
func (i *Image) Pixels() ([]byte, error) {
i.resolveBufferedReplacePixels()
c := &pixelsCommand{
img: i,
2016-06-11 18:45:40 +02:00
}
theCommandQueue.Enqueue(c)
if err := theCommandQueue.Flush(); err != nil {
return nil, err
}
return c.result, nil
2016-06-11 18:45:40 +02:00
}
func (i *Image) ReplacePixels(pixels []byte, x, y, width, height int) {
i.bufferedRP = append(i.bufferedRP, &driver.ReplacePixelsArgs{
Pixels: pixels,
X: x,
Y: y,
Width: width,
Height: height,
})
2016-06-11 18:45:40 +02:00
}
2016-06-12 16:54:36 +02:00
func (i *Image) IsInvalidated() bool {
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 18:42:19 +02:00
// Dump dumps the image to the specified path.
// In the path, '*' is replaced with the image's ID.
//
// If blackbg is true, any alpha values in the dumped image will be 255.
//
// This is for testing usage.
func (i *Image) Dump(path string, blackbg bool, rect image.Rectangle) error {
// 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)
if err != nil {
return err
}
defer f.Close()
pix, err := i.Pixels()
if err != nil {
return err
}
if blackbg {
for i := 0; i < len(pix)/4; i++ {
pix[4*i+3] = 0xff
}
}
if err := png.Encode(f, (&image.RGBA{
Pix: pix,
Stride: 4 * i.width,
Rect: image.Rect(0, 0, i.width, i.height),
}).SubImage(rect)); err != nil {
return err
}
return nil
}
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)
}
}