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"
|
|
|
|
"math"
|
|
|
|
|
2016-10-31 16:20:27 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2017-08-06 13:05:14 +02:00
|
|
|
emath "github.com/hajimehoshi/ebiten/internal/math"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2017-05-26 19:37:01 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/sync"
|
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 {
|
2017-05-30 19:09:27 +02:00
|
|
|
Exec(indexOffsetInBytes int) error
|
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
|
|
|
|
|
|
|
|
// verticesNum represents the current length of vertices.
|
|
|
|
// verticesNum must <= len(vertices).
|
|
|
|
// vertices is never shrunk since re-extending a vertices buffer is heavy.
|
2017-01-18 17:26:56 +01:00
|
|
|
verticesNum int
|
2017-09-18 18:37:24 +02:00
|
|
|
|
|
|
|
m sync.Mutex
|
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.
|
2017-05-26 15:32:38 +02:00
|
|
|
var theCommandQueue = &commandQueue{}
|
2017-01-18 17:26:56 +01:00
|
|
|
|
2017-09-18 18:37:24 +02:00
|
|
|
// appendVertices appends vertices to the queue.
|
2017-05-02 15:45:09 +02:00
|
|
|
func (q *commandQueue) appendVertices(vertices []float32) {
|
2017-01-18 17:26:56 +01:00
|
|
|
if len(q.vertices) < q.verticesNum+len(vertices) {
|
|
|
|
n := q.verticesNum + len(vertices) - len(q.vertices)
|
|
|
|
q.vertices = append(q.vertices, make([]float32, n)...)
|
|
|
|
}
|
2017-05-27 17:08:10 +02:00
|
|
|
// for-loop might be faster than copy:
|
|
|
|
// On GopherJS, copy might cause subarray calls.
|
|
|
|
for i := 0; i < len(vertices); i++ {
|
|
|
|
q.vertices[q.verticesNum+i] = vertices[i]
|
|
|
|
}
|
2017-01-18 17:26:56 +01:00
|
|
|
q.verticesNum += len(vertices)
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-18 18:37:24 +02:00
|
|
|
// EnqueueDrawImageCommand enqueues a drawing-image command.
|
2017-05-27 09:14:48 +02:00
|
|
|
func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float32, clr *affine.ColorM, mode opengl.CompositeMode) {
|
2017-05-27 14:35:38 +02:00
|
|
|
// Avoid defer for performance
|
2016-07-03 15:55:15 +02:00
|
|
|
q.m.Lock()
|
2017-05-02 15:45:09 +02:00
|
|
|
q.appendVertices(vertices)
|
2016-11-03 09:40:52 +01:00
|
|
|
if 0 < len(q.commands) {
|
2017-05-02 15:45:09 +02:00
|
|
|
if c, ok := q.commands[len(q.commands)-1].(*drawImageCommand); ok {
|
2017-09-19 18:35:56 +02:00
|
|
|
if c.canMerge(dst, src, clr, mode) {
|
2017-05-02 15:45:09 +02:00
|
|
|
c.verticesNum += len(vertices)
|
2017-05-27 14:35:38 +02:00
|
|
|
q.m.Unlock()
|
2017-05-02 15:45:09 +02:00
|
|
|
return
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-02 15:45:09 +02:00
|
|
|
c := &drawImageCommand{
|
|
|
|
dst: dst,
|
|
|
|
src: src,
|
|
|
|
verticesNum: len(vertices),
|
2017-05-27 09:14:48 +02:00
|
|
|
color: *clr,
|
2017-05-02 15:45:09 +02:00
|
|
|
mode: mode,
|
|
|
|
}
|
|
|
|
q.commands = append(q.commands, c)
|
2017-05-27 14:35:38 +02:00
|
|
|
q.m.Unlock()
|
2017-05-02 15:45:09 +02:00
|
|
|
}
|
|
|
|
|
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.
|
2017-05-02 15:45:09 +02:00
|
|
|
func (q *commandQueue) Enqueue(command command) {
|
|
|
|
q.m.Lock()
|
2016-11-03 09:40:52 +01:00
|
|
|
q.commands = append(q.commands, command)
|
2017-05-27 14:35:38 +02:00
|
|
|
q.m.Unlock()
|
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
|
2017-05-26 15:32:38 +02:00
|
|
|
var gs [][]command
|
2016-07-16 12:17:57 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Flush flushes the command queue.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (q *commandQueue) Flush() 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.
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().ResetViewportSize()
|
2017-01-18 17:26:56 +01:00
|
|
|
n := 0
|
|
|
|
lastN := 0
|
2016-07-16 12:17:57 +02:00
|
|
|
for _, g := range q.commandGroups() {
|
|
|
|
for _, c := range g {
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawImageCommand:
|
2017-01-18 17:26:56 +01:00
|
|
|
n += c.verticesNum
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
2016-06-03 05:41:18 +02:00
|
|
|
}
|
2017-01-18 17:26:56 +01:00
|
|
|
if 0 < n-lastN {
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().BufferSubData(opengl.ArrayBuffer, q.vertices[lastN:n])
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
// 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.
|
2017-01-18 17:26:56 +01:00
|
|
|
if maxQuads < (n-lastN)*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 {
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := c.Exec(indexOffsetInBytes); err != nil {
|
2016-07-16 12:17:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if c, ok := c.(*drawImageCommand); ok {
|
2017-01-18 17:26:56 +01:00
|
|
|
n := c.verticesNum * 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).
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().Flush()
|
2016-07-15 21:17:44 +02:00
|
|
|
}
|
2017-01-18 17:26:56 +01:00
|
|
|
lastN = n
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
2017-05-26 15:32:38 +02:00
|
|
|
q.commands = nil
|
2017-01-18 17:26:56 +01:00
|
|
|
q.verticesNum = 0
|
2016-06-02 19:34:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// FlushCommands flushes the command queue.
|
2017-05-30 19:09:27 +02:00
|
|
|
func FlushCommands() error {
|
|
|
|
return theCommandQueue.Flush()
|
2016-06-10 22:48:09 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// fillCommand represents a drawing command to fill an image with a solid color.
|
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
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the fillCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *fillCommand) Exec(indexOffsetInBytes int) error {
|
|
|
|
f, err := c.dst.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := f.setAsViewport(); 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
|
2017-08-23 17:11:08 +02:00
|
|
|
if err := opengl.GetContext().FillFramebuffer(r, g, b, a); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush is needed after filling (#419)
|
|
|
|
opengl.GetContext().Flush()
|
|
|
|
return nil
|
2016-06-02 19:34:34 +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 {
|
2017-01-18 17:26:56 +01:00
|
|
|
dst *Image
|
|
|
|
src *Image
|
|
|
|
verticesNum int
|
|
|
|
color affine.ColorM
|
|
|
|
mode opengl.CompositeMode
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// QuadVertexSizeInBytes returns the size in bytes of vertices for a quadrangle.
|
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
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the drawImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *drawImageCommand) Exec(indexOffsetInBytes int) error {
|
|
|
|
f, err := c.dst.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := f.setAsViewport(); err != nil {
|
2016-06-02 19:34:34 +02:00
|
|
|
return err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().BlendFunc(c.mode)
|
2016-06-03 05:41:18 +02:00
|
|
|
|
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)
|
2017-09-24 17:06:45 +02:00
|
|
|
if err := theOpenGLState.useProgram(proj, c.src.texture.native, c.color); err != nil {
|
2016-08-01 19:23:23 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-06-03 05:41:18 +02:00
|
|
|
// TODO: We should call glBindBuffer here?
|
|
|
|
// The buffer is already bound at begin() but it is counterintuitive.
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().DrawElements(opengl.Triangles, 6*n, indexOffsetInBytes)
|
2016-06-03 05:41:18 +02:00
|
|
|
return nil
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// split splits the drawImageCommand c into two drawImageCommands.
|
|
|
|
//
|
|
|
|
// split is called when the number of vertices reaches of the maximum and
|
|
|
|
// a command is needed to be executed as another draw call.
|
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()
|
2017-01-18 17:26:56 +01:00
|
|
|
n := quadsNum * QuadVertexSizeInBytes() / s
|
|
|
|
c1.verticesNum = n
|
|
|
|
c2.verticesNum -= n
|
2016-07-16 12:17:57 +02:00
|
|
|
return [2]*drawImageCommand{&c1, &c2}
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// canMerge returns a boolean value indicating whether the other drawImageCommand can be merged
|
|
|
|
// with the drawImageCommand c.
|
|
|
|
func (c *drawImageCommand) canMerge(dst, src *Image, clr *affine.ColorM, mode opengl.CompositeMode) bool {
|
2017-05-02 15:45:09 +02:00
|
|
|
if c.dst != dst {
|
2016-10-25 04:53:00 +02:00
|
|
|
return false
|
|
|
|
}
|
2017-05-02 15:45:09 +02:00
|
|
|
if c.src != src {
|
2016-10-25 04:53:00 +02:00
|
|
|
return false
|
|
|
|
}
|
2017-05-27 09:14:48 +02:00
|
|
|
if !c.color.Equals(clr) {
|
2016-10-31 16:28:07 +01:00
|
|
|
return false
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
2017-05-02 15:45:09 +02:00
|
|
|
if c.mode != mode {
|
2016-10-25 04:53:00 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// quadsNum returns the number of quadrangles.
|
2016-07-16 12:17:57 +02:00
|
|
|
func (c *drawImageCommand) quadsNum() int {
|
2017-01-18 17:26:56 +01:00
|
|
|
return c.verticesNum * opengl.Float.SizeInBytes() / QuadVertexSizeInBytes()
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
2016-06-12 15:44:23 +02:00
|
|
|
dst *Image
|
|
|
|
pixels []uint8
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the replacePixelsCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *replacePixelsCommand) Exec(indexOffsetInBytes int) error {
|
|
|
|
f, err := c.dst.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := f.setAsViewport(); 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.
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := opengl.GetContext().FillFramebuffer(0, 0, 0.5, 1); err != nil {
|
2016-06-02 19:34:34 +02:00
|
|
|
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?
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().Flush()
|
|
|
|
if err := opengl.GetContext().BindTexture(c.dst.texture.native); err != nil {
|
2016-08-03 04:05:10 +02:00
|
|
|
return err
|
|
|
|
}
|
2017-08-06 13:05:14 +02:00
|
|
|
opengl.GetContext().TexSubImage2D(c.pixels, emath.NextPowerOf2Int(c.dst.width), emath.NextPowerOf2Int(c.dst.height))
|
2016-06-02 19:34:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 15:52:07 +02:00
|
|
|
|
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 {
|
2016-06-12 15:44:23 +02:00
|
|
|
target *Image
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the disposeCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *disposeCommand) Exec(indexOffsetInBytes int) error {
|
2016-07-04 19:57:41 +02:00
|
|
|
if c.target.framebuffer != nil {
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().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 {
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().DeleteTexture(c.target.texture.native)
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// newImageFromImageCommand represents a command to create an image from an image.RGBA.
|
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
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the newImageFromImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *newImageFromImageCommand) Exec(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
|
|
|
}
|
2016-12-26 19:18:56 +01:00
|
|
|
w, h := c.img.Bounds().Size().X, c.img.Bounds().Size().Y
|
2017-08-06 13:05:14 +02:00
|
|
|
if c.img.Bounds() != image.Rect(0, 0, emath.NextPowerOf2Int(w), emath.NextPowerOf2Int(h)) {
|
2016-12-26 19:18:56 +01:00
|
|
|
panic(fmt.Sprintf("graphics: invalid image bounds: %v", c.img.Bounds()))
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
native, err := opengl.GetContext().NewTexture(w, h, c.img.Pix, c.filter)
|
2016-06-11 17:23:26 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// newImageCommand represents a command to create an empty image with given width and height.
|
2016-06-11 17:23:26 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes a newImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *newImageCommand) Exec(indexOffsetInBytes int) error {
|
2017-08-06 13:05:14 +02:00
|
|
|
w := emath.NextPowerOf2Int(c.width)
|
|
|
|
h := emath.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
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
native, err := opengl.GetContext().NewTexture(w, h, nil, c.filter)
|
2016-06-11 17:23:26 +02:00
|
|
|
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
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// newScreenFramebufferImageCommand is a command to create a special image for the screen.
|
2016-06-17 21:46:33 +02:00
|
|
|
type newScreenFramebufferImageCommand struct {
|
2017-06-30 21:12:09 +02:00
|
|
|
result *Image
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
offsetX float64
|
|
|
|
offsetY float64
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes a newScreenFramebufferImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *newScreenFramebufferImageCommand) Exec(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
|
|
|
}
|
2017-09-21 18:13:37 +02:00
|
|
|
c.result.framebuffer = newScreenFramebuffer(c.width, c.height, c.offsetX, c.offsetY)
|
2016-06-17 21:46:33 +02:00
|
|
|
return nil
|
|
|
|
}
|