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.
|
|
|
|
|
|
|
|
package graphics
|
|
|
|
|
|
|
|
import (
|
2016-06-03 05:41:18 +02:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2016-06-11 17:23:26 +02:00
|
|
|
"image"
|
2016-06-02 19:34:34 +02:00
|
|
|
"image/color"
|
2016-06-11 18:45:40 +02:00
|
|
|
"image/draw"
|
2016-06-02 19:34:34 +02:00
|
|
|
"math"
|
2016-07-03 15:55:15 +02:00
|
|
|
"sync"
|
2016-06-02 19:34:34 +02:00
|
|
|
|
2016-10-31 16:20:27 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2016-06-02 19:34:34 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type command interface {
|
2016-07-15 21:17:44 +02:00
|
|
|
Exec(context *opengl.Context, indexOffsetInBytes int) error
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandQueue struct {
|
2016-07-15 21:17:44 +02:00
|
|
|
commands []command
|
|
|
|
m sync.Mutex
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var theCommandQueue = &commandQueue{
|
|
|
|
commands: []command{},
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *commandQueue) Enqueue(command command) {
|
2016-07-03 15:55:15 +02:00
|
|
|
q.m.Lock()
|
|
|
|
defer q.m.Unlock()
|
2016-11-03 09:40:52 +01:00
|
|
|
if 0 < len(q.commands) {
|
|
|
|
if c1, ok := q.commands[len(q.commands)-1].(*drawImageCommand); ok {
|
|
|
|
if c2, ok := command.(*drawImageCommand); ok {
|
|
|
|
if c1.isMergeable(c2) {
|
|
|
|
c1.vertices = append(c1.vertices, c2.vertices...)
|
|
|
|
return
|
|
|
|
}
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-03 09:40:52 +01:00
|
|
|
q.commands = append(q.commands, command)
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 12:34:36 +02:00
|
|
|
// commandGroups separates q.commands into some groups.
|
|
|
|
// The number of quads of drawImageCommand in one groups must be equal to or less than
|
|
|
|
// its limit (maxQuads).
|
2016-07-16 12:17:57 +02:00
|
|
|
func (q *commandQueue) commandGroups() [][]command {
|
2016-11-03 09:40:52 +01:00
|
|
|
cs := q.commands
|
2016-07-16 12:17:57 +02:00
|
|
|
gs := [][]command{}
|
|
|
|
quads := 0
|
|
|
|
for 0 < len(cs) {
|
|
|
|
if len(gs) == 0 {
|
|
|
|
gs = append(gs, []command{})
|
|
|
|
}
|
|
|
|
c := cs[0]
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawImageCommand:
|
|
|
|
if maxQuads >= quads+c.quadsNum() {
|
|
|
|
quads += c.quadsNum()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
cc := c.split(maxQuads - quads)
|
|
|
|
gs[len(gs)-1] = append(gs[len(gs)-1], cc[0])
|
|
|
|
cs[0] = cc[1]
|
|
|
|
quads = 0
|
|
|
|
gs = append(gs, []command{})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
gs[len(gs)-1] = append(gs[len(gs)-1], c)
|
|
|
|
cs = cs[1:]
|
|
|
|
}
|
|
|
|
return gs
|
|
|
|
}
|
|
|
|
|
2016-06-02 20:24:27 +02:00
|
|
|
func (q *commandQueue) Flush(context *opengl.Context) error {
|
2016-07-03 15:55:15 +02:00
|
|
|
q.m.Lock()
|
|
|
|
defer q.m.Unlock()
|
2016-07-03 15:35:27 +02:00
|
|
|
// glViewport must be called at least at every frame on iOS.
|
|
|
|
context.ResetViewportSize()
|
2016-07-16 12:17:57 +02:00
|
|
|
for _, g := range q.commandGroups() {
|
2016-10-26 18:42:18 +02:00
|
|
|
n := 0
|
|
|
|
for _, c := range g {
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawImageCommand:
|
|
|
|
n += len(c.vertices)
|
|
|
|
}
|
|
|
|
}
|
2016-11-01 18:06:37 +01:00
|
|
|
vertices := make([]float32, 0, n)
|
2016-07-16 12:17:57 +02:00
|
|
|
for _, c := range g {
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawImageCommand:
|
|
|
|
vertices = append(vertices, c.vertices...)
|
|
|
|
}
|
2016-06-03 05:41:18 +02:00
|
|
|
}
|
2016-07-16 12:17:57 +02:00
|
|
|
if 0 < len(vertices) {
|
|
|
|
context.BufferSubData(opengl.ArrayBuffer, vertices)
|
|
|
|
}
|
|
|
|
// NOTE: WebGL doesn't seem to have Check gl.MAX_ELEMENTS_VERTICES or gl.MAX_ELEMENTS_INDICES so far.
|
|
|
|
// Let's use them to compare to len(quads) in the future.
|
2016-11-01 18:06:37 +01:00
|
|
|
if maxQuads < len(vertices)*opengl.Float.SizeInBytes()/QuadVertexSizeInBytes() {
|
2016-10-22 18:52:55 +02:00
|
|
|
return fmt.Errorf("len(quads) must be equal to or less than %d", maxQuads)
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
2016-07-16 12:17:57 +02:00
|
|
|
numc := len(g)
|
|
|
|
indexOffsetInBytes := 0
|
|
|
|
for _, c := range g {
|
|
|
|
if err := c.Exec(context, indexOffsetInBytes); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if c, ok := c.(*drawImageCommand); ok {
|
2016-11-01 18:06:37 +01:00
|
|
|
n := len(c.vertices) * opengl.Float.SizeInBytes() / QuadVertexSizeInBytes()
|
2016-10-25 17:20:41 +02:00
|
|
|
indexOffsetInBytes += 6 * n * 2
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if 0 < numc {
|
|
|
|
// Call glFlush to prevent black flicking (especially on Android (#226) and iOS).
|
|
|
|
context.Flush()
|
2016-07-15 21:17:44 +02:00
|
|
|
}
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
q.commands = []command{}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-10 22:48:09 +02:00
|
|
|
func FlushCommands(context *opengl.Context) error {
|
|
|
|
return theCommandQueue.Flush(context)
|
|
|
|
}
|
|
|
|
|
2016-06-02 19:34:34 +02:00
|
|
|
type fillCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
dst *Image
|
2016-08-30 16:31:59 +02:00
|
|
|
color color.RGBA
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *fillCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-12-14 15:40:43 +01:00
|
|
|
f, err := c.dst.createFramebufferIfNeeded(context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := f.setAsViewport(context); err != nil {
|
2016-06-02 19:34:34 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-08-30 16:31:59 +02:00
|
|
|
cr, cg, cb, ca := c.color.R, c.color.G, c.color.B, c.color.A
|
|
|
|
const max = math.MaxUint8
|
2016-06-02 19:34:34 +02:00
|
|
|
r := float64(cr) / max
|
|
|
|
g := float64(cg) / max
|
|
|
|
b := float64(cb) / max
|
|
|
|
a := float64(ca) / max
|
|
|
|
return context.FillFramebuffer(r, g, b, a)
|
|
|
|
}
|
|
|
|
|
|
|
|
type drawImageCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
dst *Image
|
|
|
|
src *Image
|
2016-11-01 18:06:37 +01:00
|
|
|
vertices []float32
|
2016-10-31 16:20:27 +01:00
|
|
|
color affine.ColorM
|
2016-06-02 19:34:34 +02:00
|
|
|
mode opengl.CompositeMode
|
|
|
|
}
|
|
|
|
|
2016-10-22 20:12:11 +02:00
|
|
|
func QuadVertexSizeInBytes() int {
|
2016-10-28 18:07:19 +02:00
|
|
|
return 4 * theArrayBufferLayout.totalBytes()
|
2016-10-22 20:12:11 +02:00
|
|
|
}
|
2016-10-17 04:16:17 +02:00
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *drawImageCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-12-14 15:40:43 +01:00
|
|
|
f, err := c.dst.createFramebufferIfNeeded(context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := f.setAsViewport(context); err != nil {
|
2016-06-02 19:34:34 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-06-03 05:41:18 +02:00
|
|
|
context.BlendFunc(c.mode)
|
|
|
|
|
2016-07-16 12:17:57 +02:00
|
|
|
n := c.quadsNum()
|
2016-06-03 05:41:18 +02:00
|
|
|
if n == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2016-07-04 17:29:46 +02:00
|
|
|
_, h := c.dst.Size()
|
2016-12-14 15:40:43 +01:00
|
|
|
proj := f.projectionMatrix(h)
|
2016-06-03 05:41:18 +02:00
|
|
|
p := programContext{
|
|
|
|
state: &theOpenGLState,
|
|
|
|
program: theOpenGLState.programTexture,
|
|
|
|
context: context,
|
2016-07-04 17:29:46 +02:00
|
|
|
projectionMatrix: proj,
|
2016-06-12 15:44:23 +02:00
|
|
|
texture: c.src.texture.native,
|
2016-06-03 05:41:18 +02:00
|
|
|
colorM: c.color,
|
|
|
|
}
|
2016-08-01 19:23:23 +02:00
|
|
|
if err := p.begin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-06-03 05:41:18 +02:00
|
|
|
defer p.end()
|
|
|
|
// TODO: We should call glBindBuffer here?
|
|
|
|
// The buffer is already bound at begin() but it is counterintuitive.
|
2016-07-15 21:17:44 +02:00
|
|
|
context.DrawElements(opengl.Triangles, 6*n, indexOffsetInBytes)
|
2016-06-03 05:41:18 +02:00
|
|
|
return nil
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 12:17:57 +02:00
|
|
|
func (c *drawImageCommand) split(quadsNum int) [2]*drawImageCommand {
|
|
|
|
c1 := *c
|
|
|
|
c2 := *c
|
2016-11-01 18:06:37 +01:00
|
|
|
s := opengl.Float.SizeInBytes()
|
|
|
|
c1.vertices = c.vertices[:quadsNum*QuadVertexSizeInBytes()/s]
|
|
|
|
c2.vertices = c.vertices[quadsNum*QuadVertexSizeInBytes()/s:]
|
2016-07-16 12:17:57 +02:00
|
|
|
return [2]*drawImageCommand{&c1, &c2}
|
|
|
|
}
|
|
|
|
|
2016-10-25 04:53:00 +02:00
|
|
|
func (c *drawImageCommand) isMergeable(other *drawImageCommand) bool {
|
|
|
|
if c.dst != other.dst {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if c.src != other.src {
|
|
|
|
return false
|
|
|
|
}
|
2016-10-31 16:28:07 +01:00
|
|
|
if !c.color.Equals(&other.color) {
|
|
|
|
return false
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
if c.mode != other.mode {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-07-16 12:17:57 +02:00
|
|
|
func (c *drawImageCommand) quadsNum() int {
|
2016-11-01 18:06:37 +01:00
|
|
|
return len(c.vertices) * opengl.Float.SizeInBytes() / QuadVertexSizeInBytes()
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
|
2016-06-02 19:34:34 +02:00
|
|
|
type replacePixelsCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
dst *Image
|
|
|
|
pixels []uint8
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *replacePixelsCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-12-14 15:40:43 +01:00
|
|
|
f, err := c.dst.createFramebufferIfNeeded(context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := f.setAsViewport(context); err != nil {
|
2016-06-27 06:00:32 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-06-02 19:34:34 +02:00
|
|
|
// Filling with non black or white color is required here for glTexSubImage2D.
|
2016-06-27 20:05:47 +02:00
|
|
|
// Very mysterious but this actually works (Issue #186).
|
|
|
|
// This is needed even after fixing a shader bug at f537378f2a6a8ef56e1acf1c03034967b77c7b51.
|
2016-06-02 19:34:34 +02:00
|
|
|
if err := context.FillFramebuffer(0, 0, 0.5, 1); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-07-09 22:59:21 +02:00
|
|
|
// This is necessary on Android. We can't call glClear just before glTexSubImage2D without
|
|
|
|
// glFlush. glTexSubImage2D didn't work without this hack at least on Nexus 5x (#211).
|
2016-07-10 07:49:41 +02:00
|
|
|
// This also happens when a fillCommand precedes a replacePixelsCommand.
|
2016-07-09 22:59:21 +02:00
|
|
|
// TODO: Can we have a better way like optimizing commands?
|
|
|
|
context.Flush()
|
2016-08-03 04:05:10 +02:00
|
|
|
if err := context.BindTexture(c.dst.texture.native); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-07-04 17:31:02 +02:00
|
|
|
context.TexSubImage2D(c.pixels, c.dst.width, c.dst.height)
|
2016-06-02 19:34:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 15:52:07 +02:00
|
|
|
|
|
|
|
type disposeCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
target *Image
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *disposeCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-07-04 19:57:41 +02:00
|
|
|
if c.target.framebuffer != nil {
|
2016-06-12 15:44:23 +02:00
|
|
|
context.DeleteFramebuffer(c.target.framebuffer.native)
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
2016-06-12 15:44:23 +02:00
|
|
|
if c.target.texture != nil {
|
|
|
|
context.DeleteTexture(c.target.texture.native)
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
|
|
|
|
type newImageFromImageCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
result *Image
|
|
|
|
img *image.RGBA
|
|
|
|
filter opengl.Filter
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
|
|
|
|
2016-06-11 18:45:40 +02:00
|
|
|
func adjustImageForTexture(img *image.RGBA) *image.RGBA {
|
|
|
|
width, height := img.Bounds().Size().X, img.Bounds().Size().Y
|
|
|
|
adjustedImageBounds := image.Rectangle{
|
|
|
|
image.ZP,
|
|
|
|
image.Point{
|
2016-10-22 18:58:58 +02:00
|
|
|
NextPowerOf2Int(width),
|
|
|
|
NextPowerOf2Int(height),
|
2016-06-11 18:45:40 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
if img.Bounds() == adjustedImageBounds {
|
|
|
|
return img
|
|
|
|
}
|
|
|
|
|
|
|
|
adjustedImage := image.NewRGBA(adjustedImageBounds)
|
|
|
|
dstBounds := image.Rectangle{
|
|
|
|
image.ZP,
|
|
|
|
img.Bounds().Size(),
|
|
|
|
}
|
|
|
|
draw.Draw(adjustedImage, dstBounds, img, img.Bounds().Min, draw.Src)
|
|
|
|
return adjustedImage
|
|
|
|
}
|
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *newImageFromImageCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-06-11 17:23:26 +02:00
|
|
|
origSize := c.img.Bounds().Size()
|
2016-08-07 10:27:17 +02:00
|
|
|
if origSize.X < 1 {
|
|
|
|
return errors.New("graphics: width must be equal or more than 1.")
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
2016-08-07 10:27:17 +02:00
|
|
|
if origSize.Y < 1 {
|
|
|
|
return errors.New("graphics: height must be equal or more than 1.")
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
|
|
|
adjustedImage := adjustImageForTexture(c.img)
|
|
|
|
size := adjustedImage.Bounds().Size()
|
|
|
|
native, err := context.NewTexture(size.X, size.Y, adjustedImage.Pix, c.filter)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-06-12 15:44:23 +02:00
|
|
|
c.result.texture = &texture{
|
|
|
|
native: native,
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type newImageCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
result *Image
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
filter opengl.Filter
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *newImageCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-10-22 18:58:58 +02:00
|
|
|
w := NextPowerOf2Int(c.width)
|
|
|
|
h := NextPowerOf2Int(c.height)
|
2016-08-07 10:27:17 +02:00
|
|
|
if w < 1 {
|
|
|
|
return errors.New("graphics: width must be equal or more than 1.")
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
2016-08-07 10:27:17 +02:00
|
|
|
if h < 1 {
|
|
|
|
return errors.New("graphics: height must be equal or more than 1.")
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
|
|
|
native, err := context.NewTexture(w, h, nil, c.filter)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-06-12 15:44:23 +02:00
|
|
|
c.result.texture = &texture{
|
|
|
|
native: native,
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
|
|
|
|
type newScreenFramebufferImageCommand struct {
|
|
|
|
result *Image
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
}
|
|
|
|
|
2016-07-15 21:17:44 +02:00
|
|
|
func (c *newScreenFramebufferImageCommand) Exec(context *opengl.Context, indexOffsetInBytes int) error {
|
2016-08-07 10:27:17 +02:00
|
|
|
if c.width < 1 {
|
|
|
|
return errors.New("graphics: width must be equal or more than 1.")
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
2016-08-07 10:27:17 +02:00
|
|
|
if c.height < 1 {
|
|
|
|
return errors.New("graphics: height must be equal or more than 1.")
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
|
|
|
f := &framebuffer{
|
|
|
|
native: context.ScreenFramebuffer(),
|
|
|
|
flipY: true,
|
|
|
|
}
|
|
|
|
c.result.framebuffer = f
|
|
|
|
return nil
|
|
|
|
}
|