ebiten/internal/graphicscommand/command.go

468 lines
12 KiB
Go
Raw Normal View History

2016-06-02 19:34:34 +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-02 19:34:34 +02:00
import (
"fmt"
2016-06-02 19:34:34 +02:00
"github.com/hajimehoshi/ebiten/internal/affine"
"github.com/hajimehoshi/ebiten/internal/graphics"
2016-06-02 19:34:34 +02:00
)
2017-09-11 20:12:17 +02:00
// command represents a drawing command.
//
// A command for drawing that is created when Image functions are called like DrawImage,
// or Fill.
// A command is not immediately executed after created. Instaed, it is queued after created,
// and executed only when necessary.
2016-06-02 19:34:34 +02:00
type command interface {
fmt.Stringer
Exec(indexOffset int) error
NumVertices() int
2018-06-10 10:06:40 +02:00
NumIndices() int
2018-03-18 11:58:32 +01:00
AddNumVertices(n int)
2018-06-10 10:06:40 +02:00
AddNumIndices(n int)
CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool
2016-06-02 19:34:34 +02:00
}
2017-09-16 08:49:29 +02:00
// commandQueue is a command queue for drawing commands.
2016-06-02 19:34:34 +02:00
type commandQueue struct {
2017-09-18 18:37:24 +02:00
// commands is a queue of drawing commands.
commands []command
// vertices represents a vertices data in OpenGL's array buffer.
vertices []float32
// nvertices represents the current length of vertices.
// nvertices must <= len(vertices).
2017-09-18 18:37:24 +02:00
// vertices is never shrunk since re-extending a vertices buffer is heavy.
2018-06-10 10:10:11 +02:00
//
// TODO: This is a number of float32 values, not a number of vertices.
// Rename or fix the program.
nvertices int
2018-06-10 10:06:40 +02:00
indices []uint16
nindices int
2018-06-10 10:06:40 +02:00
tmpNumIndices int
nextIndex int
err error
2016-06-02 19:34:34 +02:00
}
2017-09-16 08:49:29 +02:00
// theCommandQueue is the command queue for the current process.
var theCommandQueue = &commandQueue{}
2017-09-18 18:37:24 +02:00
// appendVertices appends vertices to the queue.
func (q *commandQueue) appendVertices(vertices []float32) {
if len(q.vertices) < q.nvertices+len(vertices) {
n := q.nvertices + len(vertices) - len(q.vertices)
q.vertices = append(q.vertices, make([]float32, n)...)
}
copy(q.vertices[q.nvertices:], vertices)
q.nvertices += len(vertices)
2016-06-02 19:34:34 +02:00
}
2018-06-10 10:06:40 +02:00
func (q *commandQueue) appendIndices(indices []uint16, offset uint16) {
if len(q.indices) < q.nindices+len(indices) {
n := q.nindices + len(indices) - len(q.indices)
q.indices = append(q.indices, make([]uint16, n)...)
}
for i := range indices {
2018-06-10 10:06:40 +02:00
q.indices[q.nindices+i] = indices[i] + offset
}
2018-06-10 10:06:40 +02:00
q.nindices += len(indices)
}
func (q *commandQueue) doEnqueueDrawImageCommand(dst, src *Image, nvertices, nindices int, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address, forceNewCommand bool) {
if nindices > graphics.IndicesNum {
panic("not reached")
}
if !forceNewCommand && 0 < len(q.commands) {
if last := q.commands[len(q.commands)-1]; last.CanMerge(dst, src, color, mode, filter, address) {
last.AddNumVertices(nvertices)
2018-06-10 10:06:40 +02:00
last.AddNumIndices(nindices)
return
}
}
c := &drawImageCommand{
dst: dst,
src: src,
nvertices: nvertices,
2018-06-10 10:06:40 +02:00
nindices: nindices,
color: color,
mode: mode,
filter: filter,
address: address,
}
q.commands = append(q.commands, c)
}
2017-09-18 18:37:24 +02:00
// EnqueueDrawImageCommand enqueues a drawing-image command.
func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float32, indices []uint16, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) {
if len(indices) > graphics.IndicesNum {
panic("not reached")
}
split := false
if q.tmpNumIndices+len(indices) > graphics.IndicesNum {
2018-06-10 10:06:40 +02:00
q.tmpNumIndices = 0
q.nextIndex = 0
split = true
}
q.appendVertices(vertices)
2018-06-10 10:06:40 +02:00
q.appendIndices(indices, uint16(q.nextIndex))
2018-11-05 18:34:52 +01:00
q.nextIndex += len(vertices) / graphics.VertexFloatNum
2018-06-10 10:06:40 +02:00
q.tmpNumIndices += len(indices)
q.doEnqueueDrawImageCommand(dst, src, len(vertices), len(indices), color, mode, filter, address, split)
}
2017-09-19 18:35:56 +02:00
// Enqueue enqueues a drawing command other than a draw-image command.
//
2017-09-21 16:33:27 +02:00
// For a draw-image command, use EnqueueDrawImageCommand.
func (q *commandQueue) Enqueue(command command) {
q.commands = append(q.commands, command)
}
2017-09-19 18:35:56 +02:00
// Flush flushes the command queue.
func (q *commandQueue) Flush() {
if q.err != nil {
return
}
2018-06-10 10:06:40 +02:00
es := q.indices
vs := q.vertices
if recordLog() {
fmt.Println("--")
}
for len(q.commands) > 0 {
nv := 0
ne := 0
nc := 0
for _, c := range q.commands {
if c.NumIndices() > graphics.IndicesNum {
panic("not reached")
}
if ne+c.NumIndices() > graphics.IndicesNum {
break
}
nv += c.NumVertices()
2018-06-10 10:06:40 +02:00
ne += c.NumIndices()
nc++
}
if 0 < ne {
2018-11-12 16:00:10 +01:00
Driver().SetVertices(vs[:nv], es[:ne])
es = es[ne:]
vs = vs[nv:]
}
indexOffset := 0
for _, c := range q.commands[:nc] {
if err := c.Exec(indexOffset); err != nil {
q.err = err
return
}
if recordLog() {
fmt.Printf("%s\n", c)
}
// TODO: indexOffset should be reset if the command type is different
2018-05-27 17:49:16 +02:00
// from the previous one. This fix is needed when another drawing command is
// introduced than drawImageCommand.
indexOffset += c.NumIndices()
}
if 0 < nc {
// Call glFlush to prevent black flicking (especially on Android (#226) and iOS).
2018-11-12 16:00:10 +01:00
Driver().Flush()
}
q.commands = q.commands[nc:]
2016-06-02 19:34:34 +02:00
}
q.commands = nil
q.nvertices = 0
2018-06-10 10:06:40 +02:00
q.nindices = 0
q.tmpNumIndices = 0
q.nextIndex = 0
}
// Error returns an OpenGL error for the last command.
func Error() error {
return theCommandQueue.err
2016-06-02 19:34:34 +02:00
}
2017-09-19 18:35:56 +02:00
// FlushCommands flushes the command queue.
func FlushCommands() {
theCommandQueue.Flush()
2016-06-10 22:48:09 +02:00
}
2017-09-19 18:35:56 +02:00
// drawImageCommand represents a drawing command to draw an image on another image.
2016-06-02 19:34:34 +02:00
type drawImageCommand struct {
dst *Image
src *Image
nvertices int
2018-06-10 10:06:40 +02:00
nindices int
color *affine.ColorM
2018-10-28 12:42:57 +01:00
mode graphics.CompositeMode
filter graphics.Filter
address graphics.Address
2016-06-02 19:34:34 +02:00
}
func (c *drawImageCommand) String() string {
return fmt.Sprintf("draw-image: dst: %p <- src: %p, colorm: %v, mode %d, filter: %d", c.dst, c.src, c.color, c.mode, c.filter)
}
2017-09-19 18:35:56 +02:00
// Exec executes the drawImageCommand.
func (c *drawImageCommand) Exec(indexOffset int) error {
// TODO: Is it ok not to bind any framebuffer here?
2018-06-10 10:06:40 +02:00
if c.nindices == 0 {
return nil
}
c.dst.image.SetAsDestination()
c.src.image.SetAsSource()
if err := Driver().Draw(c.nindices, indexOffset, c.mode, c.color, c.filter, c.address); err != nil {
return err
}
return nil
2016-06-02 19:34:34 +02:00
}
func (c *drawImageCommand) NumVertices() int {
return c.nvertices
}
2018-06-10 10:06:40 +02:00
func (c *drawImageCommand) NumIndices() int {
return c.nindices
}
2018-03-18 11:58:32 +01:00
func (c *drawImageCommand) AddNumVertices(n int) {
c.nvertices += n
}
2018-06-10 10:06:40 +02:00
func (c *drawImageCommand) AddNumIndices(n int) {
c.nindices += n
}
2018-03-18 11:58:32 +01:00
// CanMerge returns a boolean value indicating whether the other drawImageCommand can be merged
2017-09-19 18:35:56 +02:00
// with the drawImageCommand c.
func (c *drawImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool {
if c.dst != dst {
return false
}
if c.src != src {
return false
}
if !c.color.Equals(color) {
return false
}
if c.mode != mode {
return false
}
if c.filter != filter {
return false
}
if c.address != address {
return false
}
return true
}
2017-09-19 18:35:56 +02:00
// replacePixelsCommand represents a command to replace pixels of an image.
2016-06-02 19:34:34 +02:00
type replacePixelsCommand struct {
dst *Image
2018-01-28 14:40:36 +01:00
pixels []byte
x int
y int
width int
height int
2016-06-02 19:34:34 +02:00
}
func (c *replacePixelsCommand) String() string {
return fmt.Sprintf("replace-pixels: dst: %p, x: %d, y: %d, width: %d, height: %d", c.dst, c.x, c.y, c.width, c.height)
}
2017-09-19 18:35:56 +02:00
// Exec executes the replacePixelsCommand.
func (c *replacePixelsCommand) Exec(indexOffset int) error {
c.dst.image.ReplacePixels(c.pixels, c.x, c.y, c.width, c.height)
2016-06-02 19:34:34 +02:00
return nil
}
2016-06-11 15:52:07 +02:00
func (c *replacePixelsCommand) NumVertices() int {
return 0
}
2018-06-10 10:06:40 +02:00
func (c *replacePixelsCommand) NumIndices() int {
return 0
}
2018-03-18 11:58:32 +01:00
func (c *replacePixelsCommand) AddNumVertices(n int) {
}
2018-06-10 10:06:40 +02:00
func (c *replacePixelsCommand) AddNumIndices(n int) {
}
func (c *replacePixelsCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool {
2018-03-18 11:58:32 +01:00
return false
}
type pixelsCommand struct {
result []byte
img *Image
}
// Exec executes a pixelsCommand.
func (c *pixelsCommand) Exec(indexOffset int) error {
p, err := c.img.image.Pixels()
if err != nil {
return err
}
c.result = p
return nil
}
func (c *pixelsCommand) String() string {
return fmt.Sprintf("pixels: img: %p", c.img)
}
func (c *pixelsCommand) NumVertices() int {
return 0
}
func (c *pixelsCommand) NumIndices() int {
return 0
}
func (c *pixelsCommand) AddNumVertices(n int) {
}
func (c *pixelsCommand) AddNumIndices(n int) {
}
func (c *pixelsCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool {
return false
}
2017-09-19 18:35:56 +02:00
// disposeCommand represents a command to dispose an image.
2016-06-11 15:52:07 +02:00
type disposeCommand struct {
target *Image
2016-06-11 15:52:07 +02:00
}
func (c *disposeCommand) String() string {
return fmt.Sprintf("dispose: target: %p", c.target)
}
2017-09-19 18:35:56 +02:00
// Exec executes the disposeCommand.
func (c *disposeCommand) Exec(indexOffset int) error {
c.target.image.Dispose()
2016-06-11 15:52:07 +02:00
return nil
}
func (c *disposeCommand) NumVertices() int {
return 0
}
2018-06-10 10:06:40 +02:00
func (c *disposeCommand) NumIndices() int {
return 0
}
2018-03-18 11:58:32 +01:00
func (c *disposeCommand) AddNumVertices(n int) {
}
2018-06-10 10:06:40 +02:00
func (c *disposeCommand) AddNumIndices(n int) {
}
func (c *disposeCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool {
2018-03-18 11:58:32 +01:00
return false
}
2017-09-19 18:35:56 +02:00
// newImageCommand represents a command to create an empty image with given width and height.
type newImageCommand struct {
result *Image
width int
height int
}
func (c *newImageCommand) String() string {
return fmt.Sprintf("new-image: result: %p, width: %d, height: %d", c.result, c.width, c.height)
}
2017-09-19 18:35:56 +02:00
// Exec executes a newImageCommand.
func (c *newImageCommand) Exec(indexOffset int) error {
2018-11-12 16:00:10 +01:00
i, err := Driver().NewImage(c.width, c.height)
if err != nil {
return err
}
2018-11-04 11:36:33 +01:00
c.result.image = i
return nil
}
func (c *newImageCommand) NumVertices() int {
return 0
}
2018-06-10 10:06:40 +02:00
func (c *newImageCommand) NumIndices() int {
return 0
}
2018-03-18 11:58:32 +01:00
func (c *newImageCommand) AddNumVertices(n int) {
}
2018-06-10 10:06:40 +02:00
func (c *newImageCommand) AddNumIndices(n int) {
}
func (c *newImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool {
2018-03-18 11:58:32 +01:00
return false
}
2017-09-19 18:35:56 +02:00
// newScreenFramebufferImageCommand is a command to create a special image for the screen.
type newScreenFramebufferImageCommand struct {
result *Image
width int
height int
}
func (c *newScreenFramebufferImageCommand) String() string {
return fmt.Sprintf("new-screen-framebuffer-image: result: %p, width: %d, height: %d", c.result, c.width, c.height)
}
2017-09-19 18:35:56 +02:00
// Exec executes a newScreenFramebufferImageCommand.
func (c *newScreenFramebufferImageCommand) Exec(indexOffset int) error {
2018-11-11 15:57:23 +01:00
var err error
2018-11-12 16:00:10 +01:00
c.result.image, err = Driver().NewScreenFramebufferImage(c.width, c.height)
2018-11-11 15:57:23 +01:00
return err
}
func (c *newScreenFramebufferImageCommand) NumVertices() int {
return 0
}
2018-03-18 11:58:32 +01:00
2018-06-10 10:06:40 +02:00
func (c *newScreenFramebufferImageCommand) NumIndices() int {
return 0
}
2018-03-18 11:58:32 +01:00
func (c *newScreenFramebufferImageCommand) AddNumVertices(n int) {
}
2018-06-10 10:06:40 +02:00
func (c *newScreenFramebufferImageCommand) AddNumIndices(n int) {
}
func (c *newScreenFramebufferImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address) bool {
2018-03-18 11:58:32 +01:00
return false
}
// ResetGraphicsDriverState resets or initializes the current graphics driver state.
func ResetGraphicsDriverState() error {
2018-11-12 16:00:10 +01:00
return Driver().Reset()
}