2014-12-24 03:04:10 +01:00
|
|
|
// Copyright 2014 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.
|
2014-12-09 15:16:04 +01:00
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
package ebiten
|
2013-10-27 14:58:56 +01:00
|
|
|
|
|
|
|
import (
|
2015-01-06 15:50:02 +01:00
|
|
|
"errors"
|
2015-01-20 15:58:58 +01:00
|
|
|
"fmt"
|
2014-12-22 17:26:44 +01:00
|
|
|
"image"
|
2014-12-19 22:18:28 +01:00
|
|
|
"image/color"
|
2016-05-07 21:39:37 +02:00
|
|
|
"runtime"
|
2016-04-06 04:11:31 +02:00
|
|
|
"sync"
|
2016-02-06 18:24:35 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2016-05-07 21:39:37 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2016-04-06 20:49:11 +02:00
|
|
|
var imageM sync.Mutex
|
2016-04-06 04:11:31 +02:00
|
|
|
|
2016-05-07 21:39:37 +02:00
|
|
|
var (
|
|
|
|
imageCommandQueue = []func() error{}
|
|
|
|
)
|
|
|
|
|
|
|
|
func execBufferedImageCommands() error {
|
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
|
|
|
for _, f := range imageCommandQueue {
|
|
|
|
if err := f(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
imageCommandQueue = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-12-22 03:20:14 +01:00
|
|
|
// Image represents an image.
|
2014-12-22 13:39:25 +01:00
|
|
|
// The pixel format is alpha-premultiplied.
|
2014-12-22 20:10:28 +01:00
|
|
|
// Image implements image.Image.
|
2014-12-22 02:36:42 +01:00
|
|
|
type Image struct {
|
2015-01-12 11:54:25 +01:00
|
|
|
framebuffer *graphics.Framebuffer
|
|
|
|
texture *graphics.Texture
|
2016-05-07 20:42:22 +02:00
|
|
|
disposed bool
|
2015-01-12 11:54:25 +01:00
|
|
|
pixels []uint8
|
2015-02-17 20:01:11 +01:00
|
|
|
width int
|
|
|
|
height int
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// Size returns the size of the image.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *Image) Size() (width, height int) {
|
2015-02-17 20:01:11 +01:00
|
|
|
return i.width, i.height
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// Clear resets the pixels of the image into 0.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *Image) Clear() (err error) {
|
2016-04-06 20:49:11 +02:00
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
|
|
|
return i.clear()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) clear() (err error) {
|
|
|
|
return i.fill(color.Transparent)
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// Fill fills the image with a solid color.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *Image) Fill(clr color.Color) (err error) {
|
2016-04-06 20:49:11 +02:00
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
|
|
|
return i.fill(clr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) fill(clr color.Color) (err error) {
|
2016-05-07 21:39:37 +02:00
|
|
|
f := func() error {
|
|
|
|
if i.isDisposed() {
|
|
|
|
return errors.New("ebiten: image is already disposed")
|
|
|
|
}
|
|
|
|
i.pixels = nil
|
|
|
|
return i.framebuffer.Fill(glContext, clr)
|
2016-02-06 18:24:35 +01:00
|
|
|
}
|
2016-05-07 20:21:39 +02:00
|
|
|
if imageCommandQueue != nil {
|
2016-05-07 21:39:37 +02:00
|
|
|
imageCommandQueue = append(imageCommandQueue, f)
|
2016-05-07 20:21:39 +02:00
|
|
|
return
|
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
return f()
|
2016-05-07 20:21:39 +02:00
|
|
|
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-23 18:08:03 +01:00
|
|
|
// DrawImage draws the given image on the receiver image.
|
|
|
|
//
|
2014-12-25 19:58:33 +01:00
|
|
|
// This method accepts the options.
|
|
|
|
// The parts of the given image at the parts of the destination.
|
|
|
|
// After determining parts to draw, this applies the geometry matrix and the color matrix.
|
|
|
|
//
|
2014-12-26 03:43:31 +01:00
|
|
|
// Here are the default values:
|
2016-03-25 20:27:07 +01:00
|
|
|
// ImageParts: (0, 0) - (source width, source height) to (0, 0) - (source width, source height)
|
|
|
|
// (i.e. the whole source image)
|
|
|
|
// GeoM: Identity matrix
|
|
|
|
// ColorM: Identity matrix (that changes no colors)
|
|
|
|
// CompositeMode: CompositeModeSourceOver (regular alpha blending)
|
2015-01-05 15:55:40 +01:00
|
|
|
//
|
|
|
|
// Be careful that this method is potentially slow.
|
|
|
|
// It would be better if you could call this method fewer times.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2014-12-25 19:46:25 +01:00
|
|
|
func (i *Image) DrawImage(image *Image, options *DrawImageOptions) (err error) {
|
2016-04-07 20:18:52 +02:00
|
|
|
// Calculate vertices before locking because the user can do anything in
|
|
|
|
// options.ImageParts interface without deadlock (e.g. Call Image functions).
|
2015-01-12 11:54:25 +01:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawImageOptions{}
|
|
|
|
}
|
|
|
|
parts := options.ImageParts
|
|
|
|
if parts == nil {
|
|
|
|
// Check options.Parts for backward-compatibility.
|
|
|
|
dparts := options.Parts
|
|
|
|
if dparts != nil {
|
|
|
|
parts = imageParts(dparts)
|
|
|
|
} else {
|
2016-04-06 20:49:11 +02:00
|
|
|
parts = &wholeImage{image.width, image.height}
|
2015-01-12 11:54:25 +01:00
|
|
|
}
|
|
|
|
}
|
2016-04-06 20:49:11 +02:00
|
|
|
quads := &textureQuads{parts: parts, width: image.width, height: image.height}
|
2016-04-07 20:18:52 +02:00
|
|
|
// TODO: Reuse one vertices instead of making here, but this would need locking.
|
2016-04-07 21:08:45 +02:00
|
|
|
vertices := make([]int16, parts.Len()*16)
|
2016-04-07 20:18:52 +02:00
|
|
|
n := quads.vertices(vertices)
|
|
|
|
if n == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
|
|
|
if i == image {
|
|
|
|
return errors.New("ebiten: Image.DrawImage: image should be different from the receiver")
|
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
f := func() error {
|
|
|
|
if i.isDisposed() {
|
|
|
|
return errors.New("ebiten: image is already disposed")
|
|
|
|
}
|
|
|
|
i.pixels = nil
|
|
|
|
m := opengl.CompositeMode(options.CompositeMode)
|
|
|
|
return i.framebuffer.DrawTexture(glContext, image.texture, vertices[:16*n], &options.GeoM, &options.ColorM, m)
|
2016-05-07 20:21:39 +02:00
|
|
|
}
|
|
|
|
if imageCommandQueue != nil {
|
2016-05-07 21:39:37 +02:00
|
|
|
imageCommandQueue = append(imageCommandQueue, f)
|
2016-05-07 20:21:39 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
return f()
|
2015-01-12 12:47:49 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 17:26:44 +01:00
|
|
|
// Bounds returns the bounds of the image.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2014-12-22 17:26:44 +01:00
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2016-04-06 20:49:11 +02:00
|
|
|
return image.Rect(0, 0, i.width, i.height)
|
2014-12-22 17:26:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ColorModel returns the color model of the image.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2014-12-22 17:26:44 +01:00
|
|
|
func (i *Image) ColorModel() color.Model {
|
|
|
|
return color.RGBAModel
|
|
|
|
}
|
|
|
|
|
|
|
|
// At returns the color of the image at (x, y).
|
2014-12-23 18:04:56 +01:00
|
|
|
//
|
2015-01-10 20:20:28 +01:00
|
|
|
// This method loads pixels from VRAM to system memory if necessary.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
2016-05-07 20:21:39 +02:00
|
|
|
// This method can't be called before the main loop (ebiten.Run) starts (as of version 1.4.0-alpha).
|
|
|
|
//
|
2016-04-07 21:09:43 +02:00
|
|
|
// This function is concurrent-safe.
|
2014-12-22 17:26:44 +01:00
|
|
|
func (i *Image) At(x, y int) color.Color {
|
2016-04-06 20:49:11 +02:00
|
|
|
// TODO: What if At is called internaly (like from image parts?)
|
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
2016-05-07 20:21:39 +02:00
|
|
|
if imageCommandQueue != nil {
|
|
|
|
panic("ebiten: At can't be called when the GL context is not initialized")
|
|
|
|
}
|
2016-02-06 18:24:35 +01:00
|
|
|
if i.isDisposed() {
|
|
|
|
return color.Transparent
|
|
|
|
}
|
2014-12-22 17:26:44 +01:00
|
|
|
if i.pixels == nil {
|
2016-02-19 20:39:43 +01:00
|
|
|
var err error
|
|
|
|
i.pixels, err = i.framebuffer.Pixels(glContext)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-12-22 17:26:44 +01:00
|
|
|
}
|
2016-04-06 20:49:11 +02:00
|
|
|
w := int(graphics.NextPowerOf2Int32(int32(i.width)))
|
2014-12-22 17:26:44 +01:00
|
|
|
idx := 4*x + 4*y*w
|
|
|
|
r, g, b, a := i.pixels[idx], i.pixels[idx+1], i.pixels[idx+2], i.pixels[idx+3]
|
|
|
|
return color.RGBA{r, g, b, a}
|
|
|
|
}
|
2014-12-24 14:46:00 +01:00
|
|
|
|
2016-02-06 17:27:55 +01:00
|
|
|
// Dispose disposes the image data. After disposing, the image becomes invalid.
|
|
|
|
// This is useful to save memory.
|
2016-02-06 18:24:35 +01:00
|
|
|
//
|
|
|
|
// The behavior of any functions for a disposed image is undefined.
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2016-02-06 18:24:35 +01:00
|
|
|
func (i *Image) Dispose() error {
|
2016-04-06 20:49:11 +02:00
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
2016-05-07 21:39:37 +02:00
|
|
|
f := func() error {
|
|
|
|
if i.isDisposed() {
|
|
|
|
return errors.New("ebiten: image is already disposed")
|
|
|
|
}
|
|
|
|
if i.framebuffer != nil {
|
|
|
|
if err := i.framebuffer.Dispose(glContext); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
i.framebuffer = nil
|
|
|
|
}
|
|
|
|
if i.texture != nil {
|
|
|
|
if err := i.texture.Dispose(glContext); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
i.texture = nil
|
|
|
|
}
|
|
|
|
i.disposed = true
|
|
|
|
i.pixels = nil
|
|
|
|
runtime.SetFinalizer(i, nil)
|
|
|
|
return nil
|
2016-02-20 17:41:48 +01:00
|
|
|
}
|
2016-05-07 20:21:39 +02:00
|
|
|
if imageCommandQueue != nil {
|
2016-05-07 21:39:37 +02:00
|
|
|
imageCommandQueue = append(imageCommandQueue, f)
|
2016-05-07 20:21:39 +02:00
|
|
|
return nil
|
2016-02-20 17:41:48 +01:00
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
return f()
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
|
|
|
|
2016-02-06 18:24:35 +01:00
|
|
|
func (i *Image) isDisposed() bool {
|
2016-05-07 20:42:22 +02:00
|
|
|
return i.disposed
|
2016-02-06 17:27:55 +01:00
|
|
|
}
|
|
|
|
|
2015-01-20 16:42:27 +01:00
|
|
|
// ReplacePixels replaces the pixels of the image with p.
|
2015-01-20 15:58:58 +01:00
|
|
|
//
|
2015-01-20 16:42:27 +01:00
|
|
|
// The given p must represent RGBA pre-multiplied alpha values. len(p) must equal to 4 * (image width) * (image height).
|
2015-01-20 15:58:58 +01:00
|
|
|
//
|
2015-01-20 16:42:27 +01:00
|
|
|
// This function may be slow (as for implementation, this calls glTexSubImage2D).
|
2016-04-07 21:09:43 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2015-01-20 15:58:58 +01:00
|
|
|
func (i *Image) ReplacePixels(p []uint8) error {
|
2016-04-06 04:11:31 +02:00
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
2016-05-07 17:52:30 +02:00
|
|
|
if l := 4 * i.width * i.height; len(p) != l {
|
2016-04-06 20:49:11 +02:00
|
|
|
return fmt.Errorf("ebiten: p's length must be %d", l)
|
2015-01-20 15:58:58 +01:00
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
f := func() error {
|
|
|
|
// Don't set i.pixels here because i.pixels is used not every time.
|
|
|
|
i.pixels = nil
|
|
|
|
if i.isDisposed() {
|
|
|
|
return errors.New("ebiten: image is already disposed")
|
|
|
|
}
|
|
|
|
return i.framebuffer.ReplacePixels(glContext, i.texture, p)
|
2016-05-07 20:21:39 +02:00
|
|
|
}
|
|
|
|
if imageCommandQueue != nil {
|
2016-05-07 21:39:37 +02:00
|
|
|
imageCommandQueue = append(imageCommandQueue, f)
|
2016-05-07 20:21:39 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
return f()
|
2015-01-20 15:58:58 +01:00
|
|
|
}
|
|
|
|
|
2014-12-28 16:21:40 +01:00
|
|
|
// A DrawImageOptions represents options to render an image on an image.
|
2014-12-25 17:39:32 +01:00
|
|
|
type DrawImageOptions struct {
|
2016-02-29 18:16:32 +01:00
|
|
|
ImageParts ImageParts
|
|
|
|
GeoM GeoM
|
|
|
|
ColorM ColorM
|
|
|
|
CompositeMode CompositeMode
|
2015-01-04 16:42:20 +01:00
|
|
|
|
2015-01-05 02:08:54 +01:00
|
|
|
// Deprecated (as of 1.1.0-alpha): Use ImageParts instead.
|
2015-01-04 16:42:20 +01:00
|
|
|
Parts []ImagePart
|
2014-12-24 14:46:00 +01:00
|
|
|
}
|
2016-02-05 15:20:41 +01:00
|
|
|
|
|
|
|
// NewImage returns an empty image.
|
|
|
|
//
|
|
|
|
// NewImage generates a new texture and a new framebuffer.
|
|
|
|
// Be careful that image objects will never be released
|
|
|
|
// even though nothing refers the image object and GC works.
|
|
|
|
// It is because there is no way to define finalizers for Go objects if you use GopherJS.
|
2016-04-06 04:11:31 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2016-02-05 15:20:41 +01:00
|
|
|
func NewImage(width, height int, filter Filter) (*Image, error) {
|
2016-04-06 04:11:31 +02:00
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
2016-05-07 21:39:37 +02:00
|
|
|
image := &Image{
|
2016-05-07 20:21:39 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
2016-05-07 21:39:37 +02:00
|
|
|
}
|
|
|
|
f := func() error {
|
|
|
|
texture, err := graphics.NewTexture(glContext, width, height, glFilter(glContext, filter))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
framebuffer, err := graphics.NewFramebufferFromTexture(glContext, texture)
|
|
|
|
if err != nil {
|
|
|
|
// TODO: texture should be removed here?
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
image.framebuffer = framebuffer
|
|
|
|
image.texture = texture
|
|
|
|
runtime.SetFinalizer(image, (*Image).Dispose)
|
|
|
|
if err := image.framebuffer.Fill(glContext, color.Transparent); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2016-05-07 20:21:39 +02:00
|
|
|
if imageCommandQueue != nil {
|
2016-05-07 21:39:37 +02:00
|
|
|
imageCommandQueue = append(imageCommandQueue, f)
|
|
|
|
return image, nil
|
2016-04-06 20:49:11 +02:00
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
if err := f(); err != nil {
|
2016-02-19 20:39:43 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
return image, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewImageFromImage creates a new image with the given image (img).
|
|
|
|
//
|
|
|
|
// NewImageFromImage generates a new texture and a new framebuffer.
|
|
|
|
// Be careful that image objects will never be released
|
|
|
|
// even though nothing refers the image object and GC works.
|
|
|
|
// It is because there is no way to define finalizers for Go objects if you use GopherJS.
|
2016-04-06 04:11:31 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2016-02-05 15:20:41 +01:00
|
|
|
func NewImageFromImage(img image.Image, filter Filter) (*Image, error) {
|
2016-04-06 04:11:31 +02:00
|
|
|
imageM.Lock()
|
|
|
|
defer imageM.Unlock()
|
2016-05-07 20:21:39 +02:00
|
|
|
size := img.Bounds().Size()
|
|
|
|
w, h := size.X, size.Y
|
2016-05-07 21:39:37 +02:00
|
|
|
image := &Image{
|
|
|
|
width: w,
|
|
|
|
height: h,
|
|
|
|
}
|
|
|
|
f := func() error {
|
|
|
|
texture, err := graphics.NewTextureFromImage(glContext, img, glFilter(glContext, filter))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
framebuffer, err := graphics.NewFramebufferFromTexture(glContext, texture)
|
|
|
|
if err != nil {
|
|
|
|
// TODO: texture should be removed here?
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
image.framebuffer = framebuffer
|
|
|
|
image.texture = texture
|
|
|
|
runtime.SetFinalizer(image, (*Image).Dispose)
|
|
|
|
return nil
|
2016-02-19 20:39:43 +01:00
|
|
|
}
|
2016-05-07 20:21:39 +02:00
|
|
|
if imageCommandQueue != nil {
|
2016-05-07 21:39:37 +02:00
|
|
|
imageCommandQueue = append(imageCommandQueue, f)
|
|
|
|
return image, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
if err := f(); err != nil {
|
2016-05-07 20:21:39 +02:00
|
|
|
return nil, err
|
2016-04-06 20:49:11 +02:00
|
|
|
}
|
2016-05-07 21:39:37 +02:00
|
|
|
return image, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|