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.
|
|
|
|
|
|
|
|
package graphics
|
|
|
|
|
|
|
|
import (
|
2016-10-31 16:20:27 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2017-08-06 13:05:14 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/math"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2016-06-11 18:45:40 +02:00
|
|
|
)
|
|
|
|
|
2018-03-09 03:03:55 +01:00
|
|
|
var (
|
|
|
|
// maxTextureSize is the maximum texture size
|
|
|
|
//
|
|
|
|
// maxTextureSize also represents the default size (width or height) of viewport.
|
2018-03-25 16:55:38 +02:00
|
|
|
maxTextureSize = 0
|
2018-03-09 03:03:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// MaxImageSize returns the maximum of width/height of an image.
|
|
|
|
func MaxImageSize() int {
|
|
|
|
if maxTextureSize == 0 {
|
|
|
|
maxTextureSize = opengl.GetContext().MaxTextureSize()
|
|
|
|
if maxTextureSize == 0 {
|
|
|
|
panic("graphics: failed to get the max texture size")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s := maxTextureSize
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
texture *texture
|
|
|
|
framebuffer *framebuffer
|
2016-07-04 17:24:06 +02:00
|
|
|
width int
|
|
|
|
height int
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2018-02-13 18:02:48 +01:00
|
|
|
func NewImage(width, height int) *Image {
|
2016-07-04 17:24:06 +02:00
|
|
|
i := &Image{
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(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{
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
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
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
theCommandQueue.Enqueue(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() {
|
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
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
}
|
|
|
|
|
2016-07-04 17:24:06 +02:00
|
|
|
func (i *Image) Size() (int, int) {
|
|
|
|
return i.width, i.height
|
|
|
|
}
|
|
|
|
|
2018-02-13 18:02:48 +01:00
|
|
|
func (i *Image) DrawImage(src *Image, vertices []float32, clr *affine.ColorM, mode opengl.CompositeMode, filter Filter) {
|
2018-06-09 21:55:44 +02:00
|
|
|
for len(vertices) > 0 {
|
|
|
|
var next []float32
|
2018-06-10 10:53:57 +02:00
|
|
|
nq := len(vertices) * opengl.Float.SizeInBytes() / VertexSizeInBytes() / 4
|
2018-06-09 21:55:44 +02:00
|
|
|
if nq > maxQuads {
|
|
|
|
nq = maxQuads
|
2018-06-10 10:53:57 +02:00
|
|
|
i := 4 * nq * VertexSizeInBytes() / opengl.Float.SizeInBytes()
|
2018-06-09 21:55:44 +02:00
|
|
|
next = vertices[i:]
|
|
|
|
vertices = vertices[:i]
|
|
|
|
}
|
|
|
|
indices := make([]uint16, 6*nq)
|
|
|
|
for i := 0; i < nq; i++ {
|
|
|
|
indices[6*i+0] = uint16(4*i + 0)
|
|
|
|
indices[6*i+1] = uint16(4*i + 1)
|
|
|
|
indices[6*i+2] = uint16(4*i + 2)
|
|
|
|
indices[6*i+3] = uint16(4*i + 1)
|
|
|
|
indices[6*i+4] = uint16(4*i + 2)
|
|
|
|
indices[6*i+5] = uint16(4*i + 3)
|
|
|
|
}
|
|
|
|
theCommandQueue.EnqueueDrawImageCommand(i, src, vertices, indices, clr, mode, filter)
|
|
|
|
vertices = next
|
|
|
|
}
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2018-01-28 14:40:36 +01:00
|
|
|
func (i *Image) Pixels() ([]byte, error) {
|
2016-06-11 18:45:40 +02:00
|
|
|
// Flush the enqueued commands so that pixels are certainly read.
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := theCommandQueue.Flush(); err != nil {
|
2016-06-11 18:45:40 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
f, err := i.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-02-28 16:45:37 +01:00
|
|
|
return opengl.GetContext().FramebufferPixels(f.native, i.width, i.height)
|
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) {
|
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
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
}
|
2016-06-12 16:54:36 +02:00
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (i *Image) IsInvalidated() bool {
|
|
|
|
return !opengl.GetContext().IsTexture(i.texture.native)
|
2016-06-12 16:54:36 +02:00
|
|
|
}
|
2016-12-14 15:40:43 +01:00
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (i *Image) createFramebufferIfNeeded() (*framebuffer, error) {
|
2016-12-14 15:40:43 +01:00
|
|
|
if i.framebuffer != nil {
|
|
|
|
return i.framebuffer, nil
|
|
|
|
}
|
2017-09-06 20:08:22 +02:00
|
|
|
f, err := newFramebufferFromTexture(i.texture, math.NextPowerOf2Int(i.width), math.NextPowerOf2Int(i.height))
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
i.framebuffer = f
|
|
|
|
return i.framebuffer, nil
|
|
|
|
}
|