ebiten/image.go

331 lines
9.3 KiB
Go
Raw Normal View History

// 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
package ebiten
2013-10-27 14:58:56 +01:00
import (
"fmt"
"image"
"image/color"
"runtime"
"sync"
"github.com/hajimehoshi/ebiten/internal/graphics"
"github.com/hajimehoshi/ebiten/internal/opengl"
2013-10-27 14:58:56 +01:00
)
func glContext() *opengl.Context {
// This is called from finalizers even when the context or the program is not set.
g, ok := theGraphicsContext.Load().(*graphicsContext)
if !ok {
return nil
}
if g == nil {
return nil
}
return g.GLContext()
}
type images struct {
images map[*imageImpl]struct{}
m sync.Mutex
lastChecked *imageImpl
}
var theImagesForRestoring = images{
images: map[*imageImpl]struct{}{},
}
func (i *images) add(img *imageImpl) *Image {
i.m.Lock()
defer i.m.Unlock()
i.images[img] = struct{}{}
eimg := &Image{img}
runtime.SetFinalizer(eimg, theImagesForRestoring.remove)
return eimg
}
func (i *images) remove(img *Image) {
if err := img.Dispose(); err != nil {
panic(err)
}
i.m.Lock()
defer i.m.Unlock()
delete(i.images, img.impl)
runtime.SetFinalizer(img, nil)
}
func (i *images) resolveStalePixels(context *opengl.Context) error {
i.m.Lock()
defer i.m.Unlock()
i.lastChecked = nil
for img := range i.images {
if err := img.resolveStalePixels(context); err != nil {
return err
}
}
return nil
}
func (i *images) resetPixelsIfDependingOn(target *Image, context *opengl.Context) {
i.m.Lock()
defer i.m.Unlock()
if i.lastChecked == target.impl {
return
}
i.lastChecked = target.impl
if target.impl.isDisposed() {
return
}
for img := range i.images {
img.resetPixelsIfDependingOn(target.impl, context)
}
}
func (i *images) restore(context *opengl.Context) error {
i.m.Lock()
defer i.m.Unlock()
// Framebuffers/textures cannot be disposed since framebuffers/textures that
// don't belong to the current context.
2016-07-26 18:28:16 +02:00
imagesWithoutDependency := []*imageImpl{}
imagesWithDependency := []*imageImpl{}
for img := range i.images {
2016-07-26 18:28:16 +02:00
if img.hasDependency() {
imagesWithDependency = append(imagesWithDependency, img)
} else {
2016-07-26 18:28:16 +02:00
imagesWithoutDependency = append(imagesWithoutDependency, img)
}
}
2016-07-26 18:28:16 +02:00
// Images depending on other images should be processed first.
for _, img := range imagesWithoutDependency {
if err := img.restore(context); err != nil {
return err
}
}
2016-07-26 18:28:16 +02:00
for _, img := range imagesWithDependency {
if err := img.restore(context); err != nil {
return err
}
}
return nil
}
func (i *images) clearVolatileImages() error {
i.m.Lock()
defer i.m.Unlock()
for img := range i.images {
img.clearIfVolatile()
}
return nil
}
2014-12-22 03:20:14 +01:00
// Image represents an image.
// The pixel format is alpha-premultiplied.
2014-12-22 20:10:28 +01:00
// Image implements image.Image.
type Image struct {
impl *imageImpl
}
// Size returns the size of the image.
//
// This function is concurrent-safe.
func (i *Image) Size() (width, height int) {
return i.impl.restorable.Size()
}
// Clear resets the pixels of the image into 0.
//
// When the image is disposed, Clear does nothing.
//
// Clear always returns nil as of 1.5.0-alpha.
//
// This function is concurrent-safe.
func (i *Image) Clear() error {
theImagesForRestoring.resetPixelsIfDependingOn(i, glContext())
i.impl.Fill(color.Transparent)
return nil
}
// Fill fills the image with a solid color.
//
// When the image is disposed, Fill does nothing.
//
// Fill always returns nil as of 1.5.0-alpha.
//
// This function is concurrent-safe.
func (i *Image) Fill(clr color.Color) error {
theImagesForRestoring.resetPixelsIfDependingOn(i, glContext())
i.impl.Fill(clr)
return nil
}
// 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)
//
2017-02-27 15:53:21 +01:00
// For drawing, the pixels of the argument image at the time of this call is adopted.
// Even if the argument image is mutated after this call,
// the drawing result is never affected.
//
// This function is concurrent-safe.
func (i *Image) DrawImage(image *Image, options *DrawImageOptions) error {
theImagesForRestoring.resetPixelsIfDependingOn(i, glContext())
return i.impl.DrawImage(image, options)
}
// Bounds returns the bounds of the image.
//
// This function is concurrent-safe.
func (i *Image) Bounds() image.Rectangle {
w, h := i.impl.restorable.Size()
return image.Rect(0, 0, w, h)
}
// 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
}
// 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 {
return i.impl.At(x, y, glContext())
}
// 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 {
if i.impl.isDisposed() {
return nil
}
theImagesForRestoring.resetPixelsIfDependingOn(i, glContext())
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).
//
// ReplacePixels may be slow (as for implementation, this calls glTexSubImage2D).
//
// This function is concurrent-safe.
func (i *Image) ReplacePixels(p []uint8) error {
theImagesForRestoring.resetPixelsIfDependingOn(i, glContext())
return i.impl.ReplacePixels(p)
}
2014-12-28 16:21:40 +01:00
// A DrawImageOptions represents options to render an image on an image.
type DrawImageOptions struct {
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.
//
// If width or height is less than 1 or more than MaxImageSize, NewImage panics.
//
// Error returned by NewImage is always nil as of 1.5.0-alpha.
//
// This function is concurrent-safe.
2016-02-05 15:20:41 +01:00
func NewImage(width, height int, filter Filter) (*Image, error) {
checkSize(width, height)
img := newImageImpl(width, height, filter, false)
img.Fill(color.Transparent)
return theImagesForRestoring.add(img), nil
2016-07-04 20:40:40 +02:00
}
// newVolatileImage returns an empty 'volatile' image.
// 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.
// 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.
//
// If width or height is less than 1 or more than MaxImageSize, newVolatileImage panics.
//
// Error returned by newVolatileImage is always nil as of 1.5.0-alpha.
//
2016-07-04 20:40:40 +02:00
// This function is concurrent-safe.
func newVolatileImage(width, height int, filter Filter) (*Image, error) {
checkSize(width, height)
img := newImageImpl(width, height, filter, true)
img.Fill(color.Transparent)
return theImagesForRestoring.add(img), 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
//
// If source's width or height is less than 1 or more than MaxImageSize, NewImageFromImage panics.
//
// Error returned by NewImageFromImage is always nil as of 1.5.0-alpha.
//
// This function is concurrent-safe.
func NewImageFromImage(source image.Image, filter Filter) (*Image, error) {
size := source.Bounds().Size()
checkSize(size.X, size.Y)
img := newImageImplFromImage(source, filter)
return theImagesForRestoring.add(img), nil
2016-02-05 15:20:41 +01:00
}
func newImageWithScreenFramebuffer(width, height int) (*Image, error) {
checkSize(width, height)
img := newScreenImageImpl(width, height)
return theImagesForRestoring.add(img), nil
}
const MaxImageSize = graphics.MaxImageSize
func checkSize(width, height int) {
if width <= 0 {
panic("ebiten: width must be more than 0")
}
if height <= 0 {
panic("ebiten: height must be more than 0")
}
if width > MaxImageSize {
panic(fmt.Sprintf("ebiten: width must be less than or equal to %d", MaxImageSize))
}
if height > MaxImageSize {
panic(fmt.Sprintf("ebiten: height must be less than or equal to %d", MaxImageSize))
}
}