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-02-06 18:24:35 +01:00
|
|
|
|
2020-01-07 16:15:46 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/buffered"
|
2019-06-25 17:43:09 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/driver"
|
2018-10-28 12:25:52 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
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.
|
2019-01-13 16:39:37 +01:00
|
|
|
// Image implements image.Image and draw.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 {
|
2018-02-25 13:54:35 +01:00
|
|
|
// addr holds self to check copying.
|
|
|
|
// See strings.Builder for similar examples.
|
|
|
|
addr *Image
|
|
|
|
|
2020-01-07 16:15:46 +01:00
|
|
|
buffered *buffered.Image
|
2018-02-25 13:54:35 +01:00
|
|
|
|
2019-02-21 15:18:17 +01:00
|
|
|
bounds image.Rectangle
|
2018-10-23 16:27:27 +02:00
|
|
|
original *Image
|
2020-06-13 12:03:01 +02:00
|
|
|
subs map[image.Rectangle]*Image
|
2018-10-23 16:27:27 +02:00
|
|
|
|
2018-02-25 13:54:35 +01:00
|
|
|
filter Filter
|
2020-06-13 12:03:01 +02:00
|
|
|
|
|
|
|
disposed bool
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) copyCheck() {
|
|
|
|
if i.addr != i {
|
|
|
|
panic("ebiten: illegal use of non-zero Image copied by value")
|
|
|
|
}
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Size returns the size of the image.
|
|
|
|
func (i *Image) Size() (width, height int) {
|
2018-11-07 20:22:19 +01:00
|
|
|
s := i.Bounds().Size()
|
|
|
|
return s.X, s.Y
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2018-04-07 18:39:06 +02:00
|
|
|
func (i *Image) isDisposed() bool {
|
2020-06-13 12:03:01 +02:00
|
|
|
return i.disposed
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) isEmpty() bool {
|
|
|
|
return i.bounds.Dx() == 0 || i.bounds.Dy() == 0
|
2018-04-07 18:39:06 +02:00
|
|
|
}
|
|
|
|
|
2019-02-21 15:24:02 +01:00
|
|
|
func (i *Image) isSubImage() bool {
|
2019-02-21 15:25:41 +01:00
|
|
|
return i.original != nil
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
2019-01-12 16:56:33 +01:00
|
|
|
i.Fill(color.Transparent)
|
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 {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2018-04-07 18:39:06 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
return nil
|
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
if i.isEmpty() {
|
|
|
|
return nil
|
|
|
|
}
|
2018-10-23 16:27:27 +02:00
|
|
|
|
|
|
|
// TODO: Implement this.
|
2019-02-21 15:24:02 +01:00
|
|
|
if i.isSubImage() {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("ebiten: render to a subimage is not implemented (Fill)")
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
i.desyncSubImages()
|
2020-01-07 16:15:46 +01:00
|
|
|
i.buffered.Fill(color.RGBAModel.Convert(clr).(color.RGBA))
|
2020-06-13 12:03:01 +02:00
|
|
|
|
2019-01-12 16:56:33 +01:00
|
|
|
return nil
|
2018-02-23 15:58:17 +01:00
|
|
|
}
|
|
|
|
|
2017-09-30 18:59:34 +02:00
|
|
|
// DrawImage draws the given image on the image i.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2019-01-21 03:58:41 +01:00
|
|
|
// DrawImage accepts the options. For details, see the document of
|
|
|
|
// DrawImageOptions.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2019-01-21 03:58:41 +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
|
|
|
//
|
2018-02-26 03:35:55 +01:00
|
|
|
// When the image i is disposed, DrawImage does nothing.
|
|
|
|
// When the given image img is disposed, DrawImage panics.
|
2017-03-03 17:33:43 +01:00
|
|
|
//
|
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
|
|
|
//
|
2017-09-23 18:14:16 +02:00
|
|
|
// DrawImage works more efficiently as batches
|
2019-01-21 03:58:41 +01:00
|
|
|
// when the successive calls of DrawImages satisfy the below conditions:
|
2017-09-23 18:14:16 +02:00
|
|
|
//
|
|
|
|
// * All render targets are same (A in A.DrawImage(B, op))
|
2019-01-21 03:58:41 +01:00
|
|
|
// * Either all ColorM element values are same or all the ColorM have only
|
|
|
|
// diagonal ('scale') elements
|
2019-01-21 16:18:32 +01:00
|
|
|
// * If only (*ColorM).Scale is applied to a ColorM, the ColorM has only
|
|
|
|
// diagonal elements. The other ColorM functions might modify the other
|
|
|
|
// elements.
|
2017-09-23 18:14:16 +02:00
|
|
|
// * All CompositeMode values are same
|
2018-02-13 18:02:48 +01:00
|
|
|
// * All Filter values are same
|
2017-09-23 18:14:16 +02:00
|
|
|
//
|
2019-01-21 03:58:41 +01:00
|
|
|
// Even when all the above conditions are satisfied, multiple draw commands can
|
|
|
|
// be used in really rare cases. Ebiten images usually share an internal
|
|
|
|
// automatic texture atlas, but when you consume the atlas, or you create a huge
|
|
|
|
// image, those images cannot be on the same texture atlas. In this case, draw
|
|
|
|
// commands are separated. The texture atlas size is 4096x4096 so far. Another
|
|
|
|
// case is when you use an offscreen as a render source. An offscreen doesn't
|
2019-01-19 19:27:02 +01:00
|
|
|
// share the texture atlas with high probability.
|
2019-01-19 14:14:04 +01:00
|
|
|
//
|
2019-11-18 17:59:27 +01:00
|
|
|
// For more performance tips, see https://ebiten.org/documents/performancetips.html
|
2017-09-23 18:14:16 +02:00
|
|
|
//
|
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 {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2018-02-26 03:35:55 +01:00
|
|
|
if img.isDisposed() {
|
|
|
|
panic("ebiten: the given image to DrawImage must not be disposed")
|
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
if img.isEmpty() {
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2019-06-12 16:54:59 +02:00
|
|
|
return nil
|
2017-05-02 20:03:13 +02:00
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
if i.isEmpty() {
|
|
|
|
return nil
|
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2018-10-23 16:27:27 +02:00
|
|
|
// TODO: Implement this.
|
2019-02-21 15:24:02 +01:00
|
|
|
if i.isSubImage() {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("ebiten: render to a subimage is not implemented (drawImage)")
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
if err := img.syncWithOriginalIfNeeded(); err != nil {
|
|
|
|
theUIContext.setError(err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
i.desyncSubImages()
|
|
|
|
|
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{}
|
|
|
|
}
|
2017-12-13 16:25:35 +01:00
|
|
|
|
2017-05-02 19:41:44 +02:00
|
|
|
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-12-13 16:25:35 +01: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,
|
2019-01-24 06:22:53 +01:00
|
|
|
Filter: options.Filter,
|
2017-01-17 17:35:21 +01:00
|
|
|
}
|
|
|
|
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)
|
2018-10-23 16:27:27 +02:00
|
|
|
i.DrawImage(img.SubImage(image.Rect(sx0, sy0, sx1, sy1)).(*Image), op)
|
2017-01-17 17:35:21 +01:00
|
|
|
}
|
2019-06-12 16:54:59 +02:00
|
|
|
return nil
|
2017-05-02 19:41:44 +02:00
|
|
|
}
|
2017-12-13 16:25:35 +01:00
|
|
|
|
2018-11-07 20:22:19 +01:00
|
|
|
bounds := img.Bounds()
|
2018-10-23 16:27:27 +02:00
|
|
|
|
|
|
|
// SourceRect is deprecated. This implementation is for backward compatibility.
|
2018-11-07 20:22:19 +01:00
|
|
|
if options.SourceRect != nil {
|
2018-11-08 17:39:49 +01:00
|
|
|
bounds = bounds.Intersect(*options.SourceRect)
|
|
|
|
if bounds.Empty() {
|
2019-06-12 16:54:59 +02:00
|
|
|
return nil
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2017-01-17 17:35:21 +01:00
|
|
|
}
|
2018-10-23 16:27:27 +02:00
|
|
|
|
2018-06-17 13:38:07 +02:00
|
|
|
geom := &options.GeoM
|
2019-06-25 17:43:09 +02:00
|
|
|
mode := driver.CompositeMode(options.CompositeMode)
|
2018-02-13 18:02:48 +01:00
|
|
|
|
2019-06-25 17:43:09 +02:00
|
|
|
filter := driver.FilterNearest
|
2018-02-13 18:02:48 +01:00
|
|
|
if options.Filter != FilterDefault {
|
2019-06-25 17:43:09 +02:00
|
|
|
filter = driver.Filter(options.Filter)
|
2018-02-13 18:02:48 +01:00
|
|
|
} else if img.filter != FilterDefault {
|
2019-06-25 17:43:09 +02:00
|
|
|
filter = driver.Filter(img.filter)
|
2018-02-13 18:02:48 +01:00
|
|
|
}
|
|
|
|
|
2020-03-15 16:38:31 +01:00
|
|
|
a, b, c, d, tx, ty := geom.elements32()
|
2020-06-13 12:03:01 +02:00
|
|
|
w, h := img.Size()
|
|
|
|
i.buffered.DrawImage(img.buffered, image.Rect(0, 0, w, h), a, b, c, d, tx, ty, options.ColorM.impl, mode, filter)
|
|
|
|
|
2019-06-12 16:54:59 +02:00
|
|
|
return nil
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// Vertex represents a vertex passed to DrawTriangles.
|
|
|
|
//
|
|
|
|
// Note that this API is experimental.
|
|
|
|
type Vertex struct {
|
|
|
|
// DstX and DstY represents a point on a destination image.
|
|
|
|
DstX float32
|
|
|
|
DstY float32
|
|
|
|
|
|
|
|
// SrcX and SrcY represents a point on a source image.
|
2018-12-22 22:14:05 +01:00
|
|
|
// Be careful that SrcX/SrcY coordinates are on the image's bounds.
|
|
|
|
// This means that a left-upper point of a sub-image might not be (0, 0).
|
2018-06-12 03:33:09 +02:00
|
|
|
SrcX float32
|
|
|
|
SrcY float32
|
|
|
|
|
|
|
|
// ColorR/ColorG/ColorB/ColorA represents color scaling values.
|
|
|
|
// 1 means the original source image color is used.
|
|
|
|
// 0 means a transparent color is used.
|
|
|
|
ColorR float32
|
|
|
|
ColorG float32
|
|
|
|
ColorB float32
|
|
|
|
ColorA float32
|
|
|
|
}
|
|
|
|
|
2018-12-23 19:00:00 +01:00
|
|
|
// Address represents a sampler address mode.
|
|
|
|
type Address int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// AddressClampToZero means that out-of-range texture coordinates return 0 (transparent).
|
2019-06-25 17:43:09 +02:00
|
|
|
AddressClampToZero Address = Address(driver.AddressClampToZero)
|
2018-12-23 19:00:00 +01:00
|
|
|
|
|
|
|
// AddressRepeat means that texture coordinates wrap to the other side of the texture.
|
2019-06-25 17:43:09 +02:00
|
|
|
AddressRepeat Address = Address(driver.AddressRepeat)
|
2018-12-23 19:00:00 +01:00
|
|
|
)
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// DrawTrianglesOptions represents options to render triangles on an image.
|
|
|
|
//
|
|
|
|
// Note that this API is experimental.
|
|
|
|
type DrawTrianglesOptions struct {
|
|
|
|
// ColorM is a color matrix to draw.
|
|
|
|
// The default (zero) value is identity, which doesn't change any color.
|
|
|
|
// ColorM is applied before vertex color scale is applied.
|
|
|
|
ColorM ColorM
|
|
|
|
|
|
|
|
// CompositeMode is a composite mode to draw.
|
|
|
|
// The default (zero) value is regular alpha blending.
|
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
|
|
|
// Filter is a type of texture filter.
|
|
|
|
// The default (zero) value is FilterDefault.
|
|
|
|
Filter Filter
|
2018-12-23 19:00:00 +01:00
|
|
|
|
|
|
|
// Address is a sampler address mode.
|
|
|
|
// The default (zero) value is AddressClampToZero.
|
|
|
|
Address Address
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2018-11-23 11:01:16 +01:00
|
|
|
// MaxIndicesNum is the maximum number of indices for DrawTriangles.
|
|
|
|
const MaxIndicesNum = graphics.IndicesNum
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// DrawTriangles draws a triangle with the specified vertices and their indices.
|
|
|
|
//
|
|
|
|
// If len(indices) is not multiple of 3, DrawTriangles panics.
|
|
|
|
//
|
2018-11-23 11:01:16 +01:00
|
|
|
// If len(indices) is more than MaxIndicesNum, DrawTriangles panics.
|
|
|
|
//
|
2018-06-12 03:33:09 +02:00
|
|
|
// The rule in which DrawTriangles works effectively is same as DrawImage's.
|
|
|
|
//
|
2018-10-27 18:43:28 +02:00
|
|
|
// When the image i is disposed, DrawTriangles does nothing.
|
|
|
|
//
|
2018-10-28 11:41:39 +01:00
|
|
|
// Internal mipmap is not used on DrawTriangles.
|
|
|
|
//
|
2018-06-12 03:33:09 +02:00
|
|
|
// Note that this API is experimental.
|
|
|
|
func (i *Image) DrawTriangles(vertices []Vertex, indices []uint16, img *Image, options *DrawTrianglesOptions) {
|
2018-10-27 18:43:28 +02:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2020-06-13 11:12:21 +02:00
|
|
|
if img.isDisposed() {
|
|
|
|
panic("ebiten: the given image to DrawTriangles must not be disposed")
|
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
if img.isEmpty() {
|
|
|
|
return
|
|
|
|
}
|
2018-10-27 18:43:28 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
2019-02-21 15:24:02 +01:00
|
|
|
if i.isSubImage() {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("ebiten: render to a subimage is not implemented (DrawTriangles)")
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
if len(indices)%3 != 0 {
|
|
|
|
panic("ebiten: len(indices) % 3 must be 0")
|
|
|
|
}
|
2018-11-23 11:01:16 +01:00
|
|
|
if len(indices) > MaxIndicesNum {
|
|
|
|
panic("ebiten: len(indices) must be <= MaxIndicesNum")
|
|
|
|
}
|
2018-06-12 03:33:09 +02:00
|
|
|
// TODO: Check the maximum value of indices and len(vertices)?
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
if err := img.syncWithOriginalIfNeeded(); err != nil {
|
|
|
|
theUIContext.setError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
i.desyncSubImages()
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawTrianglesOptions{}
|
|
|
|
}
|
|
|
|
|
2019-06-25 17:43:09 +02:00
|
|
|
mode := driver.CompositeMode(options.CompositeMode)
|
2018-06-12 03:33:09 +02:00
|
|
|
|
2019-06-25 17:43:09 +02:00
|
|
|
filter := driver.FilterNearest
|
2018-06-12 03:33:09 +02:00
|
|
|
if options.Filter != FilterDefault {
|
2019-06-25 17:43:09 +02:00
|
|
|
filter = driver.Filter(options.Filter)
|
2018-06-12 03:33:09 +02:00
|
|
|
} else if img.filter != FilterDefault {
|
2019-06-25 17:43:09 +02:00
|
|
|
filter = driver.Filter(img.filter)
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
w, h := img.Size()
|
|
|
|
bx0 := float32(0)
|
|
|
|
by0 := float32(0)
|
|
|
|
bx1 := float32(w)
|
|
|
|
by1 := float32(h)
|
2020-01-07 16:15:46 +01:00
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
dx, dy := float32(img.Bounds().Min.X), float32(img.Bounds().Min.Y)
|
2020-01-07 16:15:46 +01:00
|
|
|
vs := make([]float32, len(vertices)*graphics.VertexFloatNum)
|
|
|
|
for i, v := range vertices {
|
|
|
|
vs[i*graphics.VertexFloatNum] = v.DstX
|
|
|
|
vs[i*graphics.VertexFloatNum+1] = v.DstY
|
2020-06-13 12:03:01 +02:00
|
|
|
vs[i*graphics.VertexFloatNum+2] = v.SrcX - dx
|
|
|
|
vs[i*graphics.VertexFloatNum+3] = v.SrcY - dy
|
2020-01-07 16:15:46 +01:00
|
|
|
vs[i*graphics.VertexFloatNum+4] = bx0
|
|
|
|
vs[i*graphics.VertexFloatNum+5] = by0
|
|
|
|
vs[i*graphics.VertexFloatNum+6] = bx1
|
|
|
|
vs[i*graphics.VertexFloatNum+7] = by1
|
|
|
|
vs[i*graphics.VertexFloatNum+8] = v.ColorR
|
|
|
|
vs[i*graphics.VertexFloatNum+9] = v.ColorG
|
|
|
|
vs[i*graphics.VertexFloatNum+10] = v.ColorB
|
|
|
|
vs[i*graphics.VertexFloatNum+11] = v.ColorA
|
|
|
|
}
|
|
|
|
is := make([]uint16, len(indices))
|
|
|
|
copy(is, indices)
|
|
|
|
|
2020-05-29 20:21:45 +02:00
|
|
|
i.buffered.DrawTriangles(img.buffered, vs, is, options.ColorM.impl, mode, filter, driver.Address(options.Address), nil, nil)
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2020-05-29 21:36:24 +02:00
|
|
|
type DrawTrianglesWithShaderOptions struct {
|
|
|
|
Uniforms []interface{}
|
|
|
|
CompositeMode CompositeMode
|
|
|
|
}
|
|
|
|
|
2020-06-13 11:12:21 +02:00
|
|
|
// TODO: Add comments and tests
|
2020-05-29 21:36:24 +02:00
|
|
|
func (i *Image) DrawTrianglesWithShader(vertices []Vertex, indices []uint16, shader *Shader, options *DrawTrianglesWithShaderOptions) {
|
|
|
|
i.copyCheck()
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.isSubImage() {
|
|
|
|
panic("ebiten: render to a subimage is not implemented (DrawTriangles)")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(indices)%3 != 0 {
|
|
|
|
panic("ebiten: len(indices) % 3 must be 0")
|
|
|
|
}
|
|
|
|
if len(indices) > MaxIndicesNum {
|
|
|
|
panic("ebiten: len(indices) must be <= MaxIndicesNum")
|
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
i.desyncSubImages()
|
|
|
|
|
2020-05-29 21:36:24 +02:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawTrianglesWithShaderOptions{}
|
|
|
|
}
|
|
|
|
|
|
|
|
mode := driver.CompositeMode(options.CompositeMode)
|
|
|
|
|
|
|
|
us := []interface{}{}
|
|
|
|
var firstImage *Image
|
|
|
|
for _, v := range options.Uniforms {
|
|
|
|
switch v := v.(type) {
|
|
|
|
case *Image:
|
2020-06-13 11:12:21 +02:00
|
|
|
if v.isDisposed() {
|
|
|
|
panic("ebiten: the given image to DrawTriangles must not be disposed")
|
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
if v.isEmpty() {
|
|
|
|
// TODO: Fix this
|
|
|
|
panic("ebiten: zero-sized image for DrawTrianglesWithShader is not implemented so far")
|
|
|
|
}
|
|
|
|
if err := v.syncWithOriginalIfNeeded(); err != nil {
|
|
|
|
theUIContext.setError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-29 21:36:24 +02:00
|
|
|
us = append(us, v.buffered)
|
|
|
|
if firstImage == nil {
|
|
|
|
firstImage = v
|
|
|
|
} else {
|
2020-06-13 12:03:01 +02:00
|
|
|
w, h := v.Size()
|
2020-05-29 21:36:24 +02:00
|
|
|
us = append(us, []float32{
|
2020-06-13 12:03:01 +02:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
float32(w),
|
|
|
|
float32(h),
|
2020-05-29 21:36:24 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
us = append(us, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 20:00:43 +02:00
|
|
|
// The first uniform variable is Internal_ViewportSize.
|
|
|
|
// The actual value is set at graphicscommand package.
|
|
|
|
us = append([]interface{}{[]float32{0, 0}}, us...)
|
|
|
|
|
2020-06-16 18:47:01 +02:00
|
|
|
var dx, dy, bx0, by0, bx1, by1 float32
|
2020-05-29 21:36:24 +02:00
|
|
|
if firstImage != nil {
|
2020-06-16 18:47:01 +02:00
|
|
|
dx = float32(firstImage.Bounds().Min.X)
|
|
|
|
dy = float32(firstImage.Bounds().Min.Y)
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
w, h := firstImage.Size()
|
|
|
|
bx0 = float32(0)
|
|
|
|
by0 = float32(0)
|
|
|
|
bx1 = float32(w)
|
|
|
|
by1 = float32(h)
|
2020-05-29 21:36:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
vs := make([]float32, len(vertices)*graphics.VertexFloatNum)
|
|
|
|
for i, v := range vertices {
|
|
|
|
vs[i*graphics.VertexFloatNum] = v.DstX
|
|
|
|
vs[i*graphics.VertexFloatNum+1] = v.DstY
|
2020-06-13 12:03:01 +02:00
|
|
|
vs[i*graphics.VertexFloatNum+2] = v.SrcX - dx
|
|
|
|
vs[i*graphics.VertexFloatNum+3] = v.SrcY - dy
|
2020-05-29 21:36:24 +02:00
|
|
|
vs[i*graphics.VertexFloatNum+4] = bx0
|
|
|
|
vs[i*graphics.VertexFloatNum+5] = by0
|
|
|
|
vs[i*graphics.VertexFloatNum+6] = bx1
|
|
|
|
vs[i*graphics.VertexFloatNum+7] = by1
|
|
|
|
vs[i*graphics.VertexFloatNum+8] = v.ColorR
|
|
|
|
vs[i*graphics.VertexFloatNum+9] = v.ColorG
|
|
|
|
vs[i*graphics.VertexFloatNum+10] = v.ColorB
|
|
|
|
vs[i*graphics.VertexFloatNum+11] = v.ColorA
|
|
|
|
}
|
|
|
|
is := make([]uint16, len(indices))
|
|
|
|
copy(is, indices)
|
|
|
|
|
|
|
|
i.buffered.DrawTriangles(nil, vs, is, nil, mode, driver.FilterNearest, driver.AddressClampToZero, shader.shader, us)
|
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
// SubImage returns an image representing the portion of the image p visible through r.
|
|
|
|
// The returned value shares pixels with the original image.
|
2018-10-23 16:27:27 +02:00
|
|
|
//
|
|
|
|
// The returned value is always *ebiten.Image.
|
|
|
|
//
|
|
|
|
// If the image is disposed, SubImage returns nil.
|
|
|
|
//
|
|
|
|
// In the current Ebiten implementation, SubImage is available only as a rendering source.
|
|
|
|
func (i *Image) SubImage(r image.Rectangle) image.Image {
|
|
|
|
i.copyCheck()
|
|
|
|
if i.isDisposed() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
// TODO: Check that SubImage cannot be called on a screen image.
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
r = r.Intersect(i.Bounds())
|
|
|
|
// Need to check Empty explicitly. See the standard image package implementations.
|
|
|
|
if r.Empty() {
|
|
|
|
r = image.ZR
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Keep the original image's reference not to dispose that by GC.
|
2020-06-13 10:10:05 +02:00
|
|
|
var orig = i
|
2019-02-21 15:24:02 +01:00
|
|
|
if i.isSubImage() {
|
2020-06-13 10:10:05 +02:00
|
|
|
orig = i.original
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
if sub, ok := orig.subs[r]; ok {
|
|
|
|
return sub
|
|
|
|
}
|
|
|
|
|
|
|
|
// In the initial state, the image doesn't have its own pixels.
|
|
|
|
// Sync with its original image when necessary.
|
2020-06-13 10:10:05 +02:00
|
|
|
img := &Image{
|
|
|
|
filter: i.filter,
|
|
|
|
bounds: r,
|
|
|
|
original: orig,
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2020-06-13 10:10:05 +02:00
|
|
|
img.addr = img
|
2020-06-13 12:03:01 +02:00
|
|
|
orig.subs[img.Bounds()] = img
|
2020-06-13 10:10:05 +02:00
|
|
|
|
2018-10-23 16:27:27 +02:00
|
|
|
return img
|
|
|
|
}
|
|
|
|
|
2020-06-13 12:03:01 +02:00
|
|
|
func (i *Image) desyncSubImages() {
|
|
|
|
if i.isSubImage() {
|
|
|
|
panic("ebiten: desyncSubImages must be called on an original image")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range i.subs {
|
|
|
|
if s.buffered == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
s.buffered.MarkDisposed()
|
|
|
|
s.buffered = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) syncWithOriginalIfNeeded() error {
|
|
|
|
if !i.isSubImage() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if i.buffered != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
x, y, width, height := i.bounds.Min.X, i.bounds.Min.Y, i.bounds.Dx(), i.bounds.Dy()
|
|
|
|
i.buffered = buffered.NewImage(width, height, false)
|
|
|
|
if err := i.buffered.CopyPixels(i.original.buffered, x, y, width, height); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-16 18:03:28 +02:00
|
|
|
// Bounds returns the bounds of the image.
|
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2019-05-11 15:44:52 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
panic("ebiten: the image is already disposed")
|
|
|
|
}
|
2019-02-21 15:18:17 +01:00
|
|
|
return i.bounds
|
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-09-30 18:59:34 +02:00
|
|
|
// At loads pixels from GPU to system memory if necessary, which means that At can be slow.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2018-03-03 10:51:52 +01:00
|
|
|
// At always returns a transparent color if the image is disposed.
|
2017-09-30 18:59:34 +02:00
|
|
|
//
|
2019-04-11 23:12:22 +02:00
|
|
|
// Note that important logic should not rely on values returned by At, since
|
|
|
|
// the returned values can include very slight differences between some machines.
|
2018-05-01 11:07:52 +02:00
|
|
|
//
|
2019-01-18 18:30:06 +01:00
|
|
|
// At can't be called outside the main loop (ebiten.Run's updating function) starts (as of version 1.4.0-alpha).
|
2016-05-16 18:03:28 +02:00
|
|
|
func (i *Image) At(x, y int) color.Color {
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2018-03-03 10:51:52 +01:00
|
|
|
return color.RGBA{}
|
2017-05-02 19:41:44 +02:00
|
|
|
}
|
2020-06-13 14:21:37 +02:00
|
|
|
if !image.Pt(x, y).In(i.Bounds()) {
|
2018-10-23 16:27:27 +02:00
|
|
|
return color.RGBA{}
|
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
|
|
|
|
if i.isSubImage() {
|
|
|
|
return i.original.At(x, y)
|
|
|
|
}
|
|
|
|
|
2020-06-13 13:57:29 +02:00
|
|
|
pix, err := i.buffered.Pixels(x, y, 1, 1)
|
2020-01-18 17:18:56 +01:00
|
|
|
if err != nil {
|
|
|
|
theUIContext.setError(err)
|
2020-06-13 13:57:29 +02:00
|
|
|
return color.RGBA{}
|
2020-01-18 17:18:56 +01:00
|
|
|
}
|
2020-06-13 13:57:29 +02:00
|
|
|
return color.RGBA{pix[0], pix[1], pix[2], pix[3]}
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2019-01-13 16:39:37 +01:00
|
|
|
// Set sets the color at (x, y).
|
|
|
|
//
|
|
|
|
// Set loads pixels from GPU to system memory if necessary, which means that Set can be slow.
|
|
|
|
//
|
2019-10-11 20:09:43 +02:00
|
|
|
// In the current implementation, successive calls of Set invokes loading pixels at most once, so this is efficient.
|
2019-01-13 16:39:37 +01:00
|
|
|
//
|
|
|
|
// If the image is disposed, Set does nothing.
|
2019-10-11 20:09:43 +02:00
|
|
|
func (i *Image) Set(x, y int, clr color.Color) {
|
|
|
|
i.copyCheck()
|
|
|
|
if i.isDisposed() {
|
2019-01-13 16:39:37 +01:00
|
|
|
return
|
|
|
|
}
|
2019-10-11 20:09:43 +02:00
|
|
|
if !image.Pt(x, y).In(i.Bounds()) {
|
2019-02-21 15:25:41 +01:00
|
|
|
return
|
2019-01-13 16:39:37 +01:00
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
|
2019-10-04 17:02:52 +02:00
|
|
|
if i.isSubImage() {
|
2020-06-13 12:03:01 +02:00
|
|
|
i.original.Set(x, y, clr)
|
|
|
|
return
|
2019-01-13 16:39:37 +01:00
|
|
|
}
|
|
|
|
|
2019-10-11 20:09:43 +02:00
|
|
|
r, g, b, a := clr.RGBA()
|
2020-02-16 13:45:26 +01:00
|
|
|
pix := []byte{byte(r >> 8), byte(g >> 8), byte(b >> 8), byte(a >> 8)}
|
|
|
|
if err := i.buffered.ReplacePixels(pix, x, y, 1, 1); err != nil {
|
2020-01-18 17:18:56 +01:00
|
|
|
theUIContext.setError(err)
|
2020-06-13 12:03:01 +02:00
|
|
|
return
|
2020-01-18 17:18:56 +01:00
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
i.desyncSubImages()
|
2019-01-13 16:39:37 +01:00
|
|
|
}
|
|
|
|
|
2020-06-13 10:10:05 +02:00
|
|
|
// Dispose disposes the image data.
|
|
|
|
// After disposing, most of image functions do nothing and returns meaningless values.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2020-06-13 12:03:01 +02:00
|
|
|
// If the callee is a sub-image, Dispose disposes only the callee.
|
|
|
|
// If the callee is not a sub-image, Dispose also diposes all its related sub-images.
|
|
|
|
//
|
2019-08-20 18:43:08 +02:00
|
|
|
// Calling Dispose is not mandatory. GC automatically collects internal resources that no objects refer to.
|
|
|
|
// However, calling Dispose explicitly is helpful if memory usage matters.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
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 {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2016-07-12 19:07:35 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
|
|
|
|
// Get the bound before the image is disposed.
|
|
|
|
b := i.Bounds()
|
|
|
|
|
|
|
|
if i.buffered != nil {
|
|
|
|
i.buffered.MarkDisposed()
|
|
|
|
i.buffered = nil
|
|
|
|
}
|
|
|
|
i.disposed = true
|
|
|
|
|
|
|
|
// If a sub-image is disposed, dispose only this image.
|
2019-02-21 16:08:15 +01:00
|
|
|
if i.isSubImage() {
|
2020-06-13 12:03:01 +02:00
|
|
|
delete(i.original.subs, b)
|
2019-02-21 16:08:15 +01:00
|
|
|
return nil
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
|
|
|
|
for _, s := range i.subs {
|
|
|
|
s.Dispose()
|
|
|
|
}
|
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.
|
|
|
|
//
|
2020-06-13 10:10:05 +02:00
|
|
|
// The given p must represent RGBA pre-multiplied alpha values.
|
2020-06-13 19:35:46 +02:00
|
|
|
// len(pix) must equal to 4 * (bounds width) * (bounds height).
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2020-02-16 14:25:32 +01:00
|
|
|
// ReplacePixels works on a sub-image.
|
2016-05-16 18:03:28 +02:00
|
|
|
//
|
2020-06-13 19:35:46 +02:00
|
|
|
// When len(pix) is not appropriate, ReplacePixels panics.
|
2017-03-03 18:23:39 +01:00
|
|
|
//
|
|
|
|
// When the image is disposed, ReplacePixels does nothing.
|
|
|
|
//
|
|
|
|
// ReplacePixels always returns nil as of 1.5.0-alpha.
|
2020-06-13 19:35:46 +02:00
|
|
|
func (i *Image) ReplacePixels(pix []byte) error {
|
2020-06-13 12:03:01 +02:00
|
|
|
// TODO: This is not very efficient. Fix this.
|
|
|
|
if i.isSubImage() {
|
|
|
|
i.original.replacePixels(pix, i.Bounds().Min.X, i.Bounds().Min.Y, i.Bounds().Dx(), i.Bounds().Dy())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
w, h := i.Size()
|
|
|
|
i.replacePixels(pix, 0, 0, w, h)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) replacePixels(pix []byte, x, y, width, height int) {
|
2018-02-25 13:54:35 +01:00
|
|
|
i.copyCheck()
|
2019-08-23 18:06:14 +02:00
|
|
|
|
2018-02-26 03:35:55 +01:00
|
|
|
if i.isDisposed() {
|
2020-06-13 12:03:01 +02:00
|
|
|
return
|
2017-05-02 20:03:13 +02:00
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
if i.isEmpty() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if i.isSubImage() {
|
|
|
|
panic("ebiten: replacePixels must be called on an original image")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := i.buffered.ReplacePixels(pix, x, y, width, height); err != nil {
|
2020-02-16 13:45:26 +01:00
|
|
|
theUIContext.setError(err)
|
2020-06-13 12:03:01 +02:00
|
|
|
return
|
2018-11-28 22:24:04 +01:00
|
|
|
}
|
2020-06-13 12:03:01 +02:00
|
|
|
i.desyncSubImages()
|
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-09-30 18:59:34 +02:00
|
|
|
// GeoM is a geometry matrix to draw.
|
|
|
|
// The default (zero) value is identify, which draws the image at (0, 0).
|
|
|
|
GeoM GeoM
|
|
|
|
|
|
|
|
// ColorM is a color matrix to draw.
|
|
|
|
// The default (zero) value is identity, which doesn't change any color.
|
|
|
|
ColorM ColorM
|
|
|
|
|
|
|
|
// CompositeMode is a composite mode to draw.
|
|
|
|
// The default (zero) value is regular alpha blending.
|
2016-02-29 18:16:32 +01:00
|
|
|
CompositeMode CompositeMode
|
2015-01-04 16:42:20 +01:00
|
|
|
|
2018-02-13 18:02:48 +01:00
|
|
|
// Filter is a type of texture filter.
|
|
|
|
// The default (zero) value is FilterDefault.
|
|
|
|
//
|
2018-02-13 19:07:17 +01:00
|
|
|
// Filter can also be specified at NewImage* functions, but
|
|
|
|
// specifying filter at DrawImageOptions is recommended (as of 1.7.0-alpha).
|
|
|
|
//
|
2018-02-13 18:02:48 +01:00
|
|
|
// If both Filter specified at NewImage* and DrawImageOptions are FilterDefault,
|
|
|
|
// FilterNearest is used.
|
|
|
|
// If either is FilterDefault and the other is not, the latter is used.
|
|
|
|
// Otherwise, Filter specified at DrawImageOptions is used.
|
|
|
|
Filter Filter
|
|
|
|
|
2020-05-18 18:50:53 +02:00
|
|
|
// Deprecated: (as of 1.5.0) Use SubImage instead.
|
2017-01-17 17:35:21 +01:00
|
|
|
ImageParts ImageParts
|
|
|
|
|
2020-05-18 18:50:53 +02:00
|
|
|
// Deprecated: (as of 1.1.0) Use SubImage instead.
|
2015-01-04 16:42:20 +01:00
|
|
|
Parts []ImagePart
|
2018-10-23 16:27:27 +02:00
|
|
|
|
2020-05-18 18:50:53 +02:00
|
|
|
// Deprecated: (as of 1.9.0) Use SubImage instead.
|
2018-10-23 16:27:27 +02:00
|
|
|
SourceRect *image.Rectangle
|
2014-12-24 14:46:00 +01:00
|
|
|
}
|
2016-02-05 15:20:41 +01:00
|
|
|
|
|
|
|
// NewImage returns an empty image.
|
|
|
|
//
|
2018-03-11 18:01:30 +01:00
|
|
|
// If width or height is less than 1 or more than device-dependent maximum size, NewImage panics.
|
2017-03-03 17:22:51 +01:00
|
|
|
//
|
2018-02-13 18:02:48 +01:00
|
|
|
// filter argument is just for backward compatibility.
|
|
|
|
// If you are not sure, specify FilterDefault.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// 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) {
|
2019-09-21 07:53:52 +02:00
|
|
|
return newImage(width, height, filter, false), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newImage(width, height int, filter Filter, volatile bool) *Image {
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2020-01-07 16:15:46 +01:00
|
|
|
buffered: buffered.NewImage(width, height, volatile),
|
|
|
|
filter: filter,
|
|
|
|
bounds: image.Rect(0, 0, width, height),
|
2020-06-13 12:03:01 +02:00
|
|
|
subs: map[image.Rectangle]*Image{},
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2018-04-05 17:35:18 +02:00
|
|
|
i.addr = i
|
2019-09-21 07:53: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
|
|
|
//
|
2018-03-11 18:01:30 +01:00
|
|
|
// If source's width or height is less than 1 or more than device-dependent maximum size, NewImageFromImage panics.
|
2017-03-03 17:22:51 +01:00
|
|
|
//
|
2018-02-13 18:02:48 +01:00
|
|
|
// filter argument is just for backward compatibility.
|
|
|
|
// If you are not sure, specify FilterDefault.
|
|
|
|
//
|
2017-03-03 17:22:51 +01:00
|
|
|
// 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()
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2018-02-25 15:13:06 +01:00
|
|
|
width, height := size.X, size.Y
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2020-01-07 16:15:46 +01:00
|
|
|
buffered: buffered.NewImage(width, height, false),
|
|
|
|
filter: filter,
|
|
|
|
bounds: image.Rect(0, 0, width, height),
|
2020-06-13 12:03:01 +02:00
|
|
|
subs: map[image.Rectangle]*Image{},
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
2018-04-05 17:35:18 +02:00
|
|
|
i.addr = i
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2019-06-26 15:17:45 +02:00
|
|
|
_ = i.ReplacePixels(copyImage(source))
|
2017-05-03 16:11:43 +02:00
|
|
|
return i, nil
|
2016-02-05 15:20:41 +01:00
|
|
|
}
|
2016-05-15 14:08:39 +02:00
|
|
|
|
2019-08-24 17:43:26 +02:00
|
|
|
func newScreenFramebufferImage(width, height int) *Image {
|
2018-02-25 13:54:35 +01:00
|
|
|
i := &Image{
|
2020-01-07 16:15:46 +01:00
|
|
|
buffered: buffered.NewScreenFramebufferImage(width, height),
|
|
|
|
filter: FilterDefault,
|
|
|
|
bounds: image.Rect(0, 0, width, height),
|
2018-02-25 13:54:35 +01:00
|
|
|
}
|
2018-04-05 17:35:18 +02:00
|
|
|
i.addr = i
|
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
|
|
|
|
2020-05-18 18:50:53 +02:00
|
|
|
// MaxImageSize represented the maximum size of an image, but now this constant is deprecated.
|
|
|
|
//
|
|
|
|
// Deprecated: (as of 1.7.0) No replacement so far.
|
2018-03-09 03:03:55 +01:00
|
|
|
//
|
|
|
|
// TODO: Make this replacement (#541)
|
|
|
|
var MaxImageSize = 4096
|