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 (
|
2017-03-03 17:22:51 +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-02-06 18:24:35 +01:00
|
|
|
|
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"
|
2017-05-02 18:54:25 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/restorable"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2017-07-22 22:46:32 +02:00
|
|
|
// Image represents a rectangle set of pixels.
|
|
|
|
// The pixel format is alpha-premultiplied RGBA.
|
2014-12-22 20:10:28 +01:00
|
|
|
// Image implements image.Image.
|
2017-03-03 18:30:10 +01:00
|
|
|
//
|
|
|
|
// Functions of Image never returns error as of 1.5.0-alpha, and error values are always nil.
|
2014-12-22 02:36:42 +01:00
|
|
|
type Image struct {
|
2017-05-02 19:41:44 +02:00
|
|
|
restorable *restorable.Image
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Size returns the size of the image.
|
|
|
|
func (i *Image) Size() (width, height int) {
|
2017-05-02 19:41:44 +02:00
|
|
|
return i.restorable.Size()
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear resets the pixels of the image into 0.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// When the image is disposed, Clear does nothing.
|
2017-03-03 16:53:49 +01:00
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// Clear always returns nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Clear() error {
|
2017-07-02 14:06:36 +02:00
|
|
|
i.restorable.Fill(0, 0, 0, 0)
|
2017-03-03 16:53:49 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill fills the image with a solid color.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// When the image is disposed, Fill does nothing.
|
2017-03-03 16:53:49 +01:00
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// Fill always returns nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Fill(clr color.Color) error {
|
2017-07-02 14:06:36 +02:00
|
|
|
r, g, b, a := clr.RGBA()
|
|
|
|
i.restorable.Fill(uint8(r>>8), uint8(g>>8), uint8(b>>8), uint8(a>>8))
|
2017-03-03 16:53:49 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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:
|
2017-01-17 17:35:21 +01:00
|
|
|
// SourceRect: nil. When SourceRect is nil, the whole source image is used.
|
2016-05-16 18:03:28 +02:00
|
|
|
// 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.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-03-03 17:33:43 +01:00
|
|
|
// When the image is disposed, DrawImage does nothing.
|
|
|
|
//
|
2017-05-29 17:56:01 +02:00
|
|
|
// When the given image is as same as i, DrawImage panics.
|
2017-03-03 17:33:43 +01:00
|
|
|
//
|
|
|
|
// DrawImage always returns nil as of 1.5.0-alpha.
|
2017-01-17 17:35:21 +01:00
|
|
|
func (i *Image) DrawImage(img *Image, options *DrawImageOptions) error {
|
2017-05-29 17:56:01 +02:00
|
|
|
if i == img {
|
|
|
|
panic("ebiten: Image.DrawImage: img must be different from the receiver")
|
|
|
|
}
|
2017-05-02 20:03:13 +02:00
|
|
|
if i.restorable == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2017-05-02 19:41:44 +02:00
|
|
|
// Calculate vertices before locking because the user can do anything in
|
|
|
|
// options.ImageParts interface without deadlock (e.g. Call Image functions).
|
|
|
|
if options == nil {
|
|
|
|
options = &DrawImageOptions{}
|
|
|
|
}
|
|
|
|
parts := options.ImageParts
|
2017-01-17 17:35:21 +01:00
|
|
|
// Parts is deprecated. This implementations is for backward compatibility.
|
|
|
|
if parts == nil && options.Parts != nil {
|
|
|
|
parts = imageParts(options.Parts)
|
2017-05-02 19:41:44 +02:00
|
|
|
}
|
2017-01-17 17:35:21 +01:00
|
|
|
// ImageParts is deprecated. This implementations is for backward compatibility.
|
|
|
|
if parts != nil {
|
|
|
|
l := parts.Len()
|
|
|
|
for idx := 0; idx < l; idx++ {
|
|
|
|
sx0, sy0, sx1, sy1 := parts.Src(idx)
|
|
|
|
dx0, dy0, dx1, dy1 := parts.Dst(idx)
|
|
|
|
op := &DrawImageOptions{
|
|
|
|
ColorM: options.ColorM,
|
|
|
|
CompositeMode: options.CompositeMode,
|
|
|
|
}
|
|
|
|
r := image.Rect(sx0, sy0, sx1, sy1)
|
|
|
|
op.SourceRect = &r
|
|
|
|
op.GeoM.Scale(
|
|
|
|
float64(dx1-dx0)/float64(sx1-sx0),
|
|
|
|
float64(dy1-dy0)/float64(sy1-sy0))
|
|
|
|
op.GeoM.Translate(float64(dx0), float64(dy0))
|
|
|
|
op.GeoM.Concat(options.GeoM)
|
|
|
|
i.DrawImage(img, op)
|
|
|
|
}
|
2017-05-02 19:41:44 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-01-17 17:35:21 +01:00
|
|
|
w, h := img.restorable.Size()
|
|
|
|
sx0, sy0, sx1, sy1 := 0, 0, w, h
|
|
|
|
if r := options.SourceRect; r != nil {
|
|
|
|
sx0 = r.Min.X
|
|
|
|
sy0 = r.Min.Y
|
|
|
|
sx1 = r.Max.X
|
|
|
|
sy1 = r.Max.Y
|
|
|
|
}
|
|
|
|
vs := vertices(sx0, sy0, sx1, sy1, w, h, &options.GeoM.impl)
|
2017-05-02 19:41:44 +02:00
|
|
|
mode := opengl.CompositeMode(options.CompositeMode)
|
2017-01-17 17:35:21 +01:00
|
|
|
i.restorable.DrawImage(img.restorable, vs, &options.ColorM.impl, mode)
|
2017-03-03 17:33:43 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bounds returns the bounds of the image.
|
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2017-05-02 19:41:44 +02:00
|
|
|
w, h := i.restorable.Size()
|
2016-09-03 18:25:02 +02:00
|
|
|
return image.Rect(0, 0, w, h)
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ColorModel returns the color model of the image.
|
|
|
|
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).
|
|
|
|
//
|
2017-06-05 16:22:38 +02:00
|
|
|
// This method loads pixels from GPU to system memory if necessary.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
|
|
|
// This method can't be called before the main loop (ebiten.Run) starts (as of version 1.4.0-alpha).
|
|
|
|
func (i *Image) At(x, y int) color.Color {
|
2017-05-02 19:41:44 +02:00
|
|
|
if i.restorable == nil {
|
|
|
|
return color.Transparent
|
|
|
|
}
|
|
|
|
// TODO: Error should be delayed until flushing. Do not panic here.
|
2017-05-30 19:09:27 +02:00
|
|
|
clr, err := i.restorable.At(x, y)
|
2017-05-02 19:41:44 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return clr
|
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.
|
|
|
|
//
|
2017-03-03 18:23:39 +01:00
|
|
|
// When the image is disposed, Dipose does nothing.
|
|
|
|
//
|
|
|
|
// Dipose always return nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) Dispose() error {
|
2017-05-02 19:41:44 +02:00
|
|
|
if i.restorable == nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-03 16:24:00 +02:00
|
|
|
i.restorable.Dispose()
|
2017-05-02 19:41:44 +02:00
|
|
|
i.restorable = nil
|
2017-05-03 16:15:03 +02:00
|
|
|
runtime.SetFinalizer(i, nil)
|
2017-03-03 18:23:39 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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).
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// ReplacePixels may be slow (as for implementation, this calls glTexSubImage2D).
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2017-03-03 18:23:39 +01:00
|
|
|
// When len(p) is not 4 * (width) * (height), ReplacePixels panics.
|
|
|
|
//
|
|
|
|
// When the image is disposed, ReplacePixels does nothing.
|
|
|
|
//
|
|
|
|
// ReplacePixels always returns nil as of 1.5.0-alpha.
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) ReplacePixels(p []uint8) error {
|
2017-05-02 20:03:13 +02:00
|
|
|
if i.restorable == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2017-05-02 19:41:44 +02:00
|
|
|
w, h := i.restorable.Size()
|
|
|
|
if l := 4 * w * h; len(p) != l {
|
|
|
|
panic(fmt.Sprintf("ebiten: len(p) was %d but must be %d", len(p), l))
|
|
|
|
}
|
2017-08-06 13:05:14 +02:00
|
|
|
w2, h2 := math.NextPowerOf2Int(w), math.NextPowerOf2Int(h)
|
2017-05-02 19:41:44 +02:00
|
|
|
pix := make([]uint8, 4*w2*h2)
|
|
|
|
for j := 0; j < h; j++ {
|
|
|
|
copy(pix[j*w2*4:], p[j*w*4:(j+1)*w*4])
|
|
|
|
}
|
|
|
|
i.restorable.ReplacePixels(pix)
|
2017-03-03 18:23:39 +01:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02: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 {
|
2017-01-17 17:35:21 +01:00
|
|
|
SourceRect *image.Rectangle
|
2016-02-29 18:16:32 +01:00
|
|
|
GeoM GeoM
|
|
|
|
ColorM ColorM
|
|
|
|
CompositeMode CompositeMode
|
2015-01-04 16:42:20 +01:00
|
|
|
|
2017-01-17 17:35:21 +01:00
|
|
|
// Deprecated (as of 1.5.0-alpha): Use Part instead.
|
|
|
|
ImageParts ImageParts
|
|
|
|
|
|
|
|
// Deprecated (as of 1.1.0-alpha): Use Part 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.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// 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.
|
2016-02-05 15:20:41 +01:00
|
|
|
func NewImage(width, height int, filter Filter) (*Image, error) {
|
2017-03-03 17:22:51 +01:00
|
|
|
checkSize(width, height)
|
2017-05-02 19:41:44 +02:00
|
|
|
r := restorable.NewImage(width, height, glFilter(filter), false)
|
2017-07-02 14:06:36 +02:00
|
|
|
r.Fill(0, 0, 0, 0)
|
2017-05-03 16:11:43 +02:00
|
|
|
i := &Image{r}
|
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
|
|
|
return i, nil
|
2016-07-04 20:40:40 +02:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
//
|
2017-05-29 20:31:29 +02:00
|
|
|
// Note that volatile images are internal only and will never be source of drawing.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// 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.
|
2017-05-31 03:47:52 +02:00
|
|
|
func newVolatileImage(width, height int, filter Filter) *Image {
|
2017-03-03 17:22:51 +01:00
|
|
|
checkSize(width, height)
|
2017-05-02 19:41:44 +02:00
|
|
|
r := restorable.NewImage(width, height, glFilter(filter), true)
|
2017-07-02 14:06:36 +02:00
|
|
|
r.Fill(0, 0, 0, 0)
|
2017-05-03 16:11:43 +02:00
|
|
|
i := &Image{r}
|
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
2017-05-31 03:47:52 +02:00
|
|
|
return i
|
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
|
|
|
//
|
2017-03-03 17:22:51 +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.
|
2016-05-16 18:03:28 +02:00
|
|
|
func NewImageFromImage(source image.Image, filter Filter) (*Image, error) {
|
2017-03-03 17:22:51 +01:00
|
|
|
size := source.Bounds().Size()
|
2017-09-14 17:48:44 +02:00
|
|
|
checkSize(size.X, size.Y)
|
|
|
|
r := restorable.NewImageFromImage(source, glFilter(filter))
|
2017-05-03 16:11:43 +02:00
|
|
|
i := &Image{r}
|
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
|
|
|
return i, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2016-05-15 14:08:39 +02:00
|
|
|
|
2017-06-30 21:12:09 +02:00
|
|
|
func newImageWithScreenFramebuffer(width, height int, offsetX, offsetY float64) *Image {
|
2017-03-03 17:22:51 +01:00
|
|
|
checkSize(width, height)
|
2017-06-30 21:12:09 +02:00
|
|
|
r := restorable.NewScreenFramebufferImage(width, height, offsetX, offsetY)
|
2017-05-03 16:11:43 +02:00
|
|
|
i := &Image{r}
|
|
|
|
runtime.SetFinalizer(i, (*Image).Dispose)
|
2017-05-31 03:47:52 +02:00
|
|
|
return i
|
2016-05-15 14:08:39 +02:00
|
|
|
}
|
2017-03-03 17:22:51 +01:00
|
|
|
|
2017-09-16 08:49:29 +02:00
|
|
|
// MaxImageSize represents the maximum width/height of an image.
|
2017-08-06 14:24:10 +02:00
|
|
|
const MaxImageSize = restorable.MaxImageSize
|
2017-03-03 17:22:51 +01:00
|
|
|
|
|
|
|
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 {
|
2017-06-29 19:08:12 +02:00
|
|
|
panic(fmt.Sprintf("ebiten: width (%d) must be less than or equal to %d", width, MaxImageSize))
|
2017-03-03 17:22:51 +01:00
|
|
|
}
|
|
|
|
if height > MaxImageSize {
|
2017-06-29 19:08:12 +02:00
|
|
|
panic(fmt.Sprintf("ebiten: height (%d) must be less than or equal to %d", height, MaxImageSize))
|
2017-03-03 17:22:51 +01:00
|
|
|
}
|
|
|
|
}
|