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 (
|
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
|
|
|
|
2016-05-07 21:39:37 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
|
2016-07-13 18:20:45 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/ui"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2016-05-16 17:22:32 +02:00
|
|
|
type images struct {
|
2016-06-10 18:13:38 +02:00
|
|
|
images map[*imageImpl]struct{}
|
|
|
|
m sync.Mutex
|
2016-05-16 17:22:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-04 18:34:40 +02:00
|
|
|
var theImagesForRestoring = images{
|
2016-05-16 18:03:28 +02:00
|
|
|
images: map[*imageImpl]struct{}{},
|
2016-05-16 17:22:32 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *images) add(img *imageImpl) (*Image, error) {
|
2016-05-16 17:22:32 +02:00
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
|
|
|
i.images[img] = struct{}{}
|
2016-05-16 18:03:28 +02:00
|
|
|
eimg := &Image{img}
|
2016-07-04 18:34:40 +02:00
|
|
|
runtime.SetFinalizer(eimg, theImagesForRestoring.remove)
|
2016-05-16 18:03:28 +02:00
|
|
|
return eimg, nil
|
2016-05-16 17:22:32 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *images) remove(img *Image) {
|
2016-07-12 19:07:35 +02:00
|
|
|
if err := img.Dispose(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-05-16 17:22:32 +02:00
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2016-05-16 18:03:28 +02:00
|
|
|
delete(i.images, img.impl)
|
2016-07-04 19:16:49 +02:00
|
|
|
runtime.SetFinalizer(img, nil)
|
2016-05-16 17:22:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-23 17:46:24 +02:00
|
|
|
func (i *images) flushPixelsIfNeeded(target *Image, context *opengl.Context) error {
|
2016-06-12 10:04:20 +02:00
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
|
|
|
for img := range i.images {
|
2016-07-23 17:46:24 +02:00
|
|
|
if err := img.flushPixelsIfNeeded(target, context); err != nil {
|
2016-06-12 10:04:20 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-04 20:01:32 +02:00
|
|
|
func (i *images) restore(context *opengl.Context) error {
|
2016-05-16 17:22:32 +02:00
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2016-07-02 19:47:12 +02:00
|
|
|
// Dispose all images first because framebuffer/texture numbers can be reused.
|
|
|
|
// If framebuffers/textures are not disposed here, a newly created framebuffer/texture
|
|
|
|
// number can be a same number as existing one.
|
2016-06-12 13:57:02 +02:00
|
|
|
for img := range i.images {
|
|
|
|
if img.isDisposed() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err := img.image.Dispose(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2016-07-12 19:07:35 +02:00
|
|
|
imagesWithoutHistory := []*imageImpl{}
|
|
|
|
imagesWithHistory := []*imageImpl{}
|
2016-05-16 17:22:32 +02:00
|
|
|
for img := range i.images {
|
2016-07-12 19:07:35 +02:00
|
|
|
if img.hasHistory() {
|
|
|
|
imagesWithHistory = append(imagesWithHistory, img)
|
|
|
|
} else {
|
|
|
|
imagesWithoutHistory = append(imagesWithoutHistory, img)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Images with history can depend on other images. Let's process images without history
|
|
|
|
// first.
|
|
|
|
for _, img := range imagesWithoutHistory {
|
|
|
|
if err := img.restore(context); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, img := range imagesWithHistory {
|
|
|
|
if err := img.restore(context); err != nil {
|
2016-05-16 17:22:32 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-05 18:30:49 +02:00
|
|
|
func (i *images) clearVolatileImages() error {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
|
|
|
for img := range i.images {
|
|
|
|
if err := img.clearIfVolatile(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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 {
|
2016-05-16 18:03:28 +02:00
|
|
|
impl *imageImpl
|
|
|
|
}
|
|
|
|
|
|
|
|
// Size returns the size of the image.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) Size() (width, height int) {
|
2016-05-16 18:06:30 +02:00
|
|
|
return i.impl.width, i.impl.height
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear resets the pixels of the image into 0.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) Clear() error {
|
2016-07-23 17:46:24 +02:00
|
|
|
if err := theImagesForRestoring.flushPixelsIfNeeded(i, ui.GLContext()); err != nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-05-16 18:06:30 +02:00
|
|
|
return i.impl.Fill(color.Transparent)
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill fills the image with a solid color.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) Fill(clr color.Color) error {
|
2016-07-23 17:46:24 +02:00
|
|
|
if err := theImagesForRestoring.flushPixelsIfNeeded(i, ui.GLContext()); err != nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
return i.impl.Fill(clr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DrawImage draws the given image on the receiver image.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// Here are the default values:
|
|
|
|
// 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)
|
|
|
|
//
|
2016-06-07 16:50:01 +02:00
|
|
|
// Note that this function returns immediately and actual drawing is done lazily.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) DrawImage(image *Image, options *DrawImageOptions) error {
|
2016-07-23 17:46:24 +02:00
|
|
|
if err := theImagesForRestoring.flushPixelsIfNeeded(i, ui.GLContext()); err != nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
return i.impl.DrawImage(image, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bounds returns the bounds of the image.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2016-05-16 18:06:30 +02:00
|
|
|
return image.Rect(0, 0, i.impl.width, i.impl.height)
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ColorModel returns the color model of the image.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) ColorModel() color.Model {
|
2016-05-16 18:06:30 +02:00
|
|
|
return color.RGBAModel
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// At returns the color of the image at (x, y).
|
|
|
|
//
|
|
|
|
// This method loads pixels from VRAM to system memory if necessary.
|
|
|
|
//
|
|
|
|
// This method can't be called before the main loop (ebiten.Run) starts (as of version 1.4.0-alpha).
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) At(x, y int) color.Color {
|
2016-07-13 18:20:45 +02:00
|
|
|
return i.impl.At(x, y, ui.GLContext())
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dispose disposes the image data. After disposing, the image becomes invalid.
|
|
|
|
// This is useful to save memory.
|
|
|
|
//
|
|
|
|
// The behavior of any functions for a disposed image is undefined.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) Dispose() error {
|
2016-07-23 17:46:24 +02:00
|
|
|
if err := theImagesForRestoring.flushPixelsIfNeeded(i, ui.GLContext()); err != nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if i.impl.isDisposed() {
|
|
|
|
return nil
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
return i.impl.Dispose()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplacePixels replaces the pixels of the image with p.
|
|
|
|
//
|
|
|
|
// The given p must represent RGBA pre-multiplied alpha values. len(p) must equal to 4 * (image width) * (image height).
|
|
|
|
//
|
|
|
|
// This function may be slow (as for implementation, this calls glTexSubImage2D).
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
|
|
|
func (i *Image) ReplacePixels(p []uint8) error {
|
2016-07-23 17:46:24 +02:00
|
|
|
if err := theImagesForRestoring.flushPixelsIfNeeded(i, ui.GLContext()); err != nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
return i.impl.ReplacePixels(p)
|
|
|
|
}
|
|
|
|
|
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.
|
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-07-04 20:40:40 +02:00
|
|
|
img, err := newImageImpl(width, height, filter, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := img.Fill(color.Transparent); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
eimg, err := theImagesForRestoring.add(img)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return eimg, nil
|
|
|
|
}
|
|
|
|
|
2016-07-11 18:58:04 +02:00
|
|
|
// newVolatileImage returns an empty 'volatile' image.
|
2016-07-05 18:30:49 +02:00
|
|
|
// A volatile image is always cleared at the start of a frame.
|
2016-07-04 20:40:40 +02:00
|
|
|
//
|
2016-07-05 04:40:23 +02:00
|
|
|
// This is suitable for offscreen images that pixels are changed often.
|
2016-07-04 20:40:40 +02:00
|
|
|
//
|
2016-07-05 04:40:23 +02:00
|
|
|
// Pixels in regular non-volatile images are saved at each end of a frame if the image
|
|
|
|
// is changed, and restored automatically from the saved pixels on GL context lost.
|
2016-07-05 18:30:49 +02:00
|
|
|
// On the other hand, pixels in volatile images are not saved.
|
2016-07-04 20:40:40 +02:00
|
|
|
// Saving pixels is an expensive operation, and it is desirable to avoid it if possible.
|
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2016-07-11 18:58:04 +02:00
|
|
|
func newVolatileImage(width, height int, filter Filter) (*Image, error) {
|
2016-07-04 20:40:40 +02:00
|
|
|
img, err := newImageImpl(width, height, filter, true)
|
2016-06-11 17:32:35 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-04-06 20:49:11 +02:00
|
|
|
}
|
2016-07-04 18:23:29 +02:00
|
|
|
if err := img.Fill(color.Transparent); err != nil {
|
2016-02-19 20:39:43 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-07-04 18:34:40 +02:00
|
|
|
eimg, err := theImagesForRestoring.add(img)
|
2016-07-04 16:41:57 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
return eimg, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
|
|
|
|
2016-05-16 18:38:31 +02:00
|
|
|
// NewImageFromImage creates a new image with the given image (source).
|
2016-02-05 15:20:41 +01:00
|
|
|
//
|
|
|
|
// NewImageFromImage generates a new texture and a new framebuffer.
|
2016-04-06 04:11:31 +02:00
|
|
|
//
|
|
|
|
// This function is concurrent-safe.
|
2016-05-16 18:03:28 +02:00
|
|
|
func NewImageFromImage(source image.Image, filter Filter) (*Image, error) {
|
2016-07-04 18:34:40 +02:00
|
|
|
img, err := newImageImplFromImage(source, filter)
|
2016-06-11 17:32:35 +02:00
|
|
|
if err != nil {
|
2016-05-07 20:21:39 +02:00
|
|
|
return nil, err
|
2016-04-06 20:49:11 +02:00
|
|
|
}
|
2016-07-04 18:34:40 +02:00
|
|
|
eimg, err := theImagesForRestoring.add(img)
|
2016-06-12 14:19:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-05-12 04:06:12 +02:00
|
|
|
return eimg, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2016-05-15 14:08:39 +02:00
|
|
|
|
2016-06-17 21:46:33 +02:00
|
|
|
func newImageWithScreenFramebuffer(width, height int) (*Image, error) {
|
2016-07-04 19:57:41 +02:00
|
|
|
img, err := newScreenImageImpl(width, height)
|
2016-05-15 14:08:39 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-07-04 19:57:41 +02:00
|
|
|
eimg, err := theImagesForRestoring.add(img)
|
2016-07-04 17:24:06 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-05-16 17:22:32 +02:00
|
|
|
}
|
2016-07-04 19:57:41 +02:00
|
|
|
return eimg, nil
|
2016-05-15 14:08:39 +02:00
|
|
|
}
|