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"
|
2019-09-18 17:51:55 +02:00
|
|
|
"sort"
|
2019-07-19 18:42:19 +02:00
|
|
|
"strings"
|
2019-07-19 16:29:19 +02:00
|
|
|
|
2018-08-05 14:30:06 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2019-03-30 14:26:27 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/driver"
|
2018-10-28 12:25:52 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2019-07-19 16:29:19 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/png"
|
2016-06-11 18:45:40 +02:00
|
|
|
)
|
|
|
|
|
2019-01-05 19:15:32 +01:00
|
|
|
type lastCommand int
|
|
|
|
|
|
|
|
const (
|
|
|
|
lastCommandNone lastCommand = iota
|
|
|
|
lastCommandClear
|
2019-04-22 16:12:03 +02:00
|
|
|
lastCommandDrawTriangles
|
2019-01-05 19:15:32 +01:00
|
|
|
lastCommandReplacePixels
|
|
|
|
)
|
|
|
|
|
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 {
|
2019-06-25 16:18:00 +02:00
|
|
|
image driver.Image
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
internalWidth int
|
|
|
|
internalHeight int
|
|
|
|
screen bool
|
2019-07-19 16:18:07 +02:00
|
|
|
id int
|
|
|
|
|
|
|
|
lastCommand lastCommand
|
|
|
|
}
|
|
|
|
|
|
|
|
var nextID = 1
|
|
|
|
|
|
|
|
func genNextID() int {
|
|
|
|
id := nextID
|
|
|
|
nextID++
|
|
|
|
return id
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2019-09-18 17:51:55 +02:00
|
|
|
var delayedCommands []interface{}
|
|
|
|
|
|
|
|
type drawTrianglesCommandArgs struct {
|
|
|
|
dst *Image
|
|
|
|
src *Image
|
|
|
|
vertices []float32
|
|
|
|
indices []uint16
|
|
|
|
color *affine.ColorM
|
|
|
|
mode driver.CompositeMode
|
|
|
|
filter driver.Filter
|
|
|
|
address driver.Address
|
|
|
|
}
|
|
|
|
|
|
|
|
func enqueueDelayedCommand(c interface{}) {
|
|
|
|
delayedCommands = append(delayedCommands, c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func flushDelayedCommandsFor(dstID int) {
|
|
|
|
// Choose commands that are needed to solve an image that ID is dstID.
|
|
|
|
indices := map[int]struct{}{}
|
|
|
|
ids := map[int]struct{}{dstID: {}}
|
|
|
|
for len(ids) > 0 {
|
|
|
|
newIDs := map[int]struct{}{}
|
|
|
|
for i, c := range delayedCommands {
|
|
|
|
if _, ok := indices[i]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawTrianglesCommandArgs:
|
|
|
|
if _, ok := ids[c.dst.id]; ok {
|
|
|
|
indices[i] = struct{}{}
|
|
|
|
newIDs[c.src.id] = struct{}{}
|
|
|
|
}
|
|
|
|
case command:
|
|
|
|
if _, ok := ids[c.Dst().id]; ok {
|
|
|
|
indices[i] = struct{}{}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("graphicscommands: unexpected command: %v", c))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ids = newIDs
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enqueue the chosen commands. Replace the used command with nil.
|
|
|
|
var sortedIndices []int
|
|
|
|
for i := range indices {
|
|
|
|
sortedIndices = append(sortedIndices, i)
|
|
|
|
}
|
|
|
|
sort.Ints(sortedIndices)
|
|
|
|
for _, i := range sortedIndices {
|
|
|
|
switch c := delayedCommands[i].(type) {
|
|
|
|
case *drawTrianglesCommandArgs:
|
|
|
|
theCommandQueue.EnqueueDrawTrianglesCommand(c.dst, c.src, c.vertices, c.indices, c.color, c.mode, c.filter, c.address)
|
|
|
|
case command:
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("graphicscommands: unexpected command: %v", c))
|
|
|
|
}
|
|
|
|
delayedCommands[i] = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the used commands from delayedCommands.
|
|
|
|
var newDelayedCommands []interface{}
|
|
|
|
for _, c := range delayedCommands {
|
|
|
|
if c == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
newDelayedCommands = append(newDelayedCommands, c)
|
|
|
|
}
|
|
|
|
delayedCommands = newDelayedCommands
|
|
|
|
}
|
|
|
|
|
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-06-25 16:18:00 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
internalWidth: graphics.InternalImageSize(width),
|
|
|
|
internalHeight: graphics.InternalImageSize(height),
|
2019-07-19 16:18:07 +02:00
|
|
|
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 17:51:55 +02:00
|
|
|
enqueueDelayedCommand(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-06-25 16:18:00 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
internalWidth: graphics.InternalImageSize(width),
|
|
|
|
internalHeight: graphics.InternalImageSize(height),
|
|
|
|
screen: true,
|
2019-07-19 16:18:07 +02:00
|
|
|
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 17:51:55 +02:00
|
|
|
enqueueDelayedCommand(c)
|
2017-03-03 15:51:25 +01:00
|
|
|
return i
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func (i *Image) Dispose() {
|
2019-09-18 17:51:55 +02:00
|
|
|
// TODO: We can remove unnecessary commands from delayedCommand.
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &disposeCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
target: i,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2019-09-18 17:51:55 +02:00
|
|
|
enqueueDelayedCommand(c)
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 16:18:00 +02:00
|
|
|
func (i *Image) InternalSize() (int, int) {
|
|
|
|
return i.internalWidth, i.internalHeight
|
|
|
|
}
|
|
|
|
|
2019-06-25 17:43:09 +02:00
|
|
|
func (i *Image) DrawTriangles(src *Image, vertices []float32, indices []uint16, clr *affine.ColorM, mode driver.CompositeMode, filter driver.Filter, address driver.Address) {
|
2019-04-12 17:22:11 +02:00
|
|
|
if src.screen {
|
|
|
|
panic("graphicscommand: the screen image cannot be the rendering source")
|
|
|
|
}
|
|
|
|
|
2019-01-05 19:15:32 +01:00
|
|
|
if i.lastCommand == lastCommandNone {
|
2019-06-25 17:43:09 +02:00
|
|
|
if !i.screen && mode != driver.CompositeModeClear {
|
2019-01-05 19:15:32 +01:00
|
|
|
panic("graphicscommand: the image must be cleared first")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 17:51:55 +02:00
|
|
|
// vertices and indices are created internally and it is fine to assume they are immutable.
|
|
|
|
enqueueDelayedCommand(&drawTrianglesCommandArgs{
|
|
|
|
dst: i,
|
|
|
|
src: src,
|
|
|
|
vertices: vertices,
|
|
|
|
indices: indices,
|
|
|
|
color: clr,
|
|
|
|
mode: mode,
|
|
|
|
filter: filter,
|
|
|
|
address: address,
|
|
|
|
})
|
|
|
|
if i.screen {
|
|
|
|
flushDelayedCommandsFor(i.id)
|
|
|
|
}
|
2019-01-05 19:15:32 +01:00
|
|
|
|
|
|
|
if i.lastCommand == lastCommandNone && !i.screen {
|
|
|
|
i.lastCommand = lastCommandClear
|
|
|
|
} else {
|
2019-04-22 16:12:03 +02:00
|
|
|
i.lastCommand = lastCommandDrawTriangles
|
2019-01-05 19:15:32 +01:00
|
|
|
}
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2018-07-11 19:11:18 +02:00
|
|
|
// Pixels returns the image's pixels.
|
|
|
|
// Pixels might return nil when OpenGL error happens.
|
|
|
|
func (i *Image) Pixels() []byte {
|
2019-09-18 17:51:55 +02:00
|
|
|
flushDelayedCommandsFor(i.id)
|
2018-07-11 19:40:06 +02:00
|
|
|
c := &pixelsCommand{
|
2018-07-11 19:11:18 +02:00
|
|
|
result: nil,
|
|
|
|
img: i,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2018-07-11 19:40:06 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
2018-07-11 19:11:18 +02:00
|
|
|
theCommandQueue.Flush()
|
|
|
|
return c.result
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2018-02-28 16:27:55 +01:00
|
|
|
func (i *Image) ReplacePixels(p []byte, x, y, width, height int) {
|
2019-04-22 16:12:03 +02:00
|
|
|
// ReplacePixels for a part might invalidate the current image that are drawn by DrawTriangles (#593, #738).
|
|
|
|
if i.lastCommand == lastCommandDrawTriangles {
|
2019-01-05 19:15:32 +01:00
|
|
|
if x != 0 || y != 0 || i.width != width || i.height != height {
|
2019-04-22 16:12:03 +02:00
|
|
|
panic("graphicscommand: ReplacePixels for a part after DrawTriangles is forbidden")
|
2019-01-05 19:15:32 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-28 14:40:36 +01:00
|
|
|
pixels := make([]byte, len(p))
|
2016-08-17 15:10:29 +02:00
|
|
|
copy(pixels, p)
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &replacePixelsCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
dst: i,
|
2016-08-17 15:10:29 +02:00
|
|
|
pixels: pixels,
|
2018-02-28 16:27:55 +01:00
|
|
|
x: x,
|
|
|
|
y: y,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
2019-09-18 17:51:55 +02:00
|
|
|
enqueueDelayedCommand(c)
|
2019-01-05 19:15:32 +01:00
|
|
|
i.lastCommand = lastCommandReplacePixels
|
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
|
|
|
//
|
|
|
|
// This is for testing usage.
|
2019-07-19 18:42:19 +02:00
|
|
|
func (i *Image) Dump(path string) 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()
|
|
|
|
|
|
|
|
if err := png.Encode(f, &image.RGBA{
|
|
|
|
Pix: i.Pixels(),
|
|
|
|
Stride: 4 * i.width,
|
|
|
|
Rect: image.Rect(0, 0, i.width, i.height),
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|