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 (
|
2020-07-17 18:09:58 +02:00
|
|
|
"fmt"
|
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-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/driver"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/mipmap"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2020-09-17 13:49:25 +02:00
|
|
|
// panicOnErrorAtImageAt indicates whether (*Image).At panics on an error or not.
|
|
|
|
// This value is set only on testing.
|
|
|
|
var panicOnErrorAtImageAt bool
|
|
|
|
|
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.
|
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-07-26 05:15:23 +02:00
|
|
|
mipmap *mipmap.Mipmap
|
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
|
2021-01-31 14:35:37 +01:00
|
|
|
screen 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-07-26 05:15:23 +02:00
|
|
|
return i.mipmap == nil
|
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.
|
2020-10-05 17:01:40 +02:00
|
|
|
func (i *Image) Clear() {
|
2019-01-12 16:56:33 +01:00
|
|
|
i.Fill(color.Transparent)
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2021-01-24 17:31:18 +01:00
|
|
|
var (
|
|
|
|
emptyImage = NewImage(3, 3)
|
|
|
|
emptySubImage = emptyImage.SubImage(image.Rect(1, 1, 2, 2)).(*Image)
|
|
|
|
)
|
2020-11-07 18:26:51 +01:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
w, h := emptyImage.Size()
|
|
|
|
pix := make([]byte, 4*w*h)
|
|
|
|
for i := range pix {
|
|
|
|
pix[i] = 0xff
|
|
|
|
}
|
|
|
|
// As emptyImage is used at Fill, use ReplacePixels instead.
|
|
|
|
emptyImage.ReplacePixels(pix)
|
|
|
|
}
|
|
|
|
|
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.
|
2020-10-05 17:01:40 +02:00
|
|
|
func (i *Image) Fill(clr color.Color) {
|
2020-11-07 18:26:51 +01:00
|
|
|
w, h := i.Size()
|
|
|
|
|
|
|
|
op := &DrawImageOptions{}
|
|
|
|
op.GeoM.Scale(float64(w), float64(h))
|
|
|
|
|
|
|
|
r, g, b, a := clr.RGBA()
|
|
|
|
var rf, gf, bf, af float64
|
|
|
|
if a > 0 {
|
|
|
|
rf = float64(r) / float64(a)
|
|
|
|
gf = float64(g) / float64(a)
|
|
|
|
bf = float64(b) / float64(a)
|
|
|
|
af = float64(a) / 0xffff
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2020-11-07 18:26:51 +01:00
|
|
|
op.ColorM.Scale(rf, gf, bf, af)
|
|
|
|
op.CompositeMode = CompositeModeCopy
|
2018-10-23 16:27:27 +02:00
|
|
|
|
2021-01-24 17:31:18 +01:00
|
|
|
i.DrawImage(emptySubImage, op)
|
2018-02-23 15:58:17 +01:00
|
|
|
}
|
|
|
|
|
2020-07-26 05:23:55 +02:00
|
|
|
func canSkipMipmap(geom GeoM, filter driver.Filter) bool {
|
2020-10-30 18:59:34 +01:00
|
|
|
if filter != driver.FilterLinear {
|
2020-07-26 05:23:55 +02:00
|
|
|
return true
|
|
|
|
}
|
2020-10-30 18:59:34 +01:00
|
|
|
return geom.det2x2() >= 0.999
|
2020-07-26 05:23:55 +02:00
|
|
|
}
|
|
|
|
|
2020-07-23 11:55:19 +02:00
|
|
|
// DrawImageOptions represents options for DrawImage.
|
|
|
|
type DrawImageOptions struct {
|
|
|
|
// GeoM is a geometry matrix to draw.
|
2020-08-07 20:12:18 +02:00
|
|
|
// The default (zero) value is identity, which draws the image at (0, 0).
|
2020-07-23 11:55:19 +02:00
|
|
|
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.
|
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
|
|
|
// Filter is a type of texture filter.
|
2020-10-04 18:48:45 +02:00
|
|
|
// The default (zero) value is FilterNearest.
|
2020-07-23 11:55:19 +02:00
|
|
|
Filter Filter
|
|
|
|
}
|
|
|
|
|
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
|
2020-10-05 17:21:11 +02:00
|
|
|
func (i *Image) DrawImage(img *Image, options *DrawImageOptions) {
|
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")
|
|
|
|
}
|
|
|
|
if i.isDisposed() {
|
2020-10-05 17:21:11 +02:00
|
|
|
return
|
2017-05-02 20:03:13 +02:00
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2020-11-07 11:14:06 +01:00
|
|
|
dstBounds := i.Bounds()
|
|
|
|
dstRegion := driver.Region{
|
|
|
|
X: float32(dstBounds.Min.X),
|
|
|
|
Y: float32(dstBounds.Min.Y),
|
|
|
|
Width: float32(dstBounds.Dx()),
|
|
|
|
Height: float32(dstBounds.Dy()),
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-11-07 20:22:19 +01:00
|
|
|
bounds := img.Bounds()
|
2019-06-25 17:43:09 +02:00
|
|
|
mode := driver.CompositeMode(options.CompositeMode)
|
2020-10-04 18:48:45 +02:00
|
|
|
filter := driver.Filter(options.Filter)
|
2018-02-13 18:02:48 +01:00
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
a, b, c, d, tx, ty := options.GeoM.elements32()
|
2020-07-15 18:53:46 +02:00
|
|
|
|
|
|
|
sx0 := float32(bounds.Min.X)
|
|
|
|
sy0 := float32(bounds.Min.Y)
|
|
|
|
sx1 := float32(bounds.Max.X)
|
|
|
|
sy1 := float32(bounds.Max.Y)
|
2021-03-20 08:18:50 +01:00
|
|
|
vs := graphics.QuadVertices(sx0, sy0, sx1, sy1, a, b, c, d, tx, ty, 1, 1, 1, 1)
|
2020-07-15 18:53:46 +02:00
|
|
|
is := graphics.QuadIndices()
|
2020-07-23 10:08:33 +02:00
|
|
|
|
2020-07-26 05:15:23 +02:00
|
|
|
srcs := [graphics.ShaderImageNum]*mipmap.Mipmap{img.mipmap}
|
2020-11-07 11:14:06 +01:00
|
|
|
i.mipmap.DrawTriangles(srcs, vs, is, options.ColorM.impl, mode, filter, driver.AddressUnsafe, dstRegion, driver.Region{}, [graphics.ShaderImageNum - 1][2]float32{}, nil, nil, canSkipMipmap(options.GeoM, filter))
|
2016-05-16 18:03:28 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 03:33:09 +02:00
|
|
|
// Vertex represents a vertex passed to DrawTriangles.
|
|
|
|
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 (
|
2020-10-04 16:48:20 +02:00
|
|
|
// AddressUnsafe means there is no guarantee when the texture coodinates are out of range.
|
|
|
|
AddressUnsafe Address = Address(driver.AddressUnsafe)
|
|
|
|
|
2018-12-23 19:00:00 +01:00
|
|
|
// 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
|
|
|
)
|
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
// DrawTrianglesOptions represents options for DrawTriangles.
|
2018-06-12 03:33:09 +02:00
|
|
|
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.
|
2020-07-25 16:29:06 +02:00
|
|
|
//
|
|
|
|
// If Shader is not nil, ColorM is ignored.
|
2018-06-12 03:33:09 +02:00
|
|
|
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.
|
2020-10-04 18:48:45 +02:00
|
|
|
// The default (zero) value is FilterNearest.
|
2018-06-12 03:33:09 +02:00
|
|
|
Filter Filter
|
2018-12-23 19:00:00 +01:00
|
|
|
|
|
|
|
// Address is a sampler address mode.
|
2020-10-04 16:48:20 +02:00
|
|
|
// The default (zero) value is AddressUnsafe.
|
2018-12-23 19:00:00 +01:00
|
|
|
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
|
|
|
|
|
2020-07-20 13:54:12 +02:00
|
|
|
// DrawTriangles draws triangles with the specified vertices and their indices.
|
2018-06-12 03:33:09 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2020-07-20 15:19:28 +02:00
|
|
|
// When the given image is disposed, DrawTriangles panics.
|
|
|
|
//
|
2018-10-27 18:43:28 +02:00
|
|
|
// When the image i is disposed, DrawTriangles does nothing.
|
2018-06-12 03:33:09 +02:00
|
|
|
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-07-25 16:29:06 +02:00
|
|
|
if img != nil && img.isDisposed() {
|
2020-06-13 11:12:21 +02:00
|
|
|
panic("ebiten: the given image to DrawTriangles must not be disposed")
|
|
|
|
}
|
2018-10-27 18:43:28 +02:00
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
2020-06-27 17:36:13 +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-11-07 11:14:06 +01:00
|
|
|
dstBounds := i.Bounds()
|
|
|
|
dstRegion := driver.Region{
|
|
|
|
X: float32(dstBounds.Min.X),
|
|
|
|
Y: float32(dstBounds.Min.Y),
|
|
|
|
Width: float32(dstBounds.Dx()),
|
|
|
|
Height: float32(dstBounds.Dy()),
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
address := driver.Address(options.Address)
|
|
|
|
var sr driver.Region
|
|
|
|
if address != driver.AddressUnsafe {
|
|
|
|
b := img.Bounds()
|
|
|
|
sr = driver.Region{
|
|
|
|
X: float32(b.Min.X),
|
|
|
|
Y: float32(b.Min.Y),
|
|
|
|
Width: float32(b.Dx()),
|
|
|
|
Height: float32(b.Dy()),
|
2020-07-25 16:29:06 +02:00
|
|
|
}
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2020-10-04 18:48:45 +02:00
|
|
|
filter := driver.Filter(options.Filter)
|
2020-09-20 11:32:18 +02:00
|
|
|
|
2021-03-20 12:24:32 +01:00
|
|
|
vs := graphics.Vertices(len(vertices))
|
2020-01-07 16:15:46 +01:00
|
|
|
for i, v := range vertices {
|
|
|
|
vs[i*graphics.VertexFloatNum] = v.DstX
|
|
|
|
vs[i*graphics.VertexFloatNum+1] = v.DstY
|
2020-06-27 17:36:13 +02:00
|
|
|
vs[i*graphics.VertexFloatNum+2] = v.SrcX
|
|
|
|
vs[i*graphics.VertexFloatNum+3] = v.SrcY
|
2020-07-02 16:06:58 +02:00
|
|
|
vs[i*graphics.VertexFloatNum+4] = v.ColorR
|
|
|
|
vs[i*graphics.VertexFloatNum+5] = v.ColorG
|
|
|
|
vs[i*graphics.VertexFloatNum+6] = v.ColorB
|
|
|
|
vs[i*graphics.VertexFloatNum+7] = v.ColorA
|
2020-01-07 16:15:46 +01:00
|
|
|
}
|
|
|
|
is := make([]uint16, len(indices))
|
|
|
|
copy(is, indices)
|
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
srcs := [graphics.ShaderImageNum]*mipmap.Mipmap{img.mipmap}
|
|
|
|
|
2020-11-07 11:14:06 +01:00
|
|
|
i.mipmap.DrawTriangles(srcs, vs, is, options.ColorM.impl, mode, filter, address, dstRegion, sr, [graphics.ShaderImageNum - 1][2]float32{}, nil, nil, false)
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 09:55:39 +02:00
|
|
|
// DrawTrianglesShaderOptions represents options for DrawTrianglesShader.
|
2020-09-20 11:32:18 +02:00
|
|
|
//
|
|
|
|
// This API is experimental.
|
|
|
|
type DrawTrianglesShaderOptions struct {
|
|
|
|
// CompositeMode is a composite mode to draw.
|
|
|
|
// The default (zero) value is regular alpha blending.
|
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
|
|
|
// Uniforms is a set of uniform variables for the shader.
|
2020-09-23 09:24:41 +02:00
|
|
|
// The keys are the names of the uniform variables.
|
|
|
|
// The values must be float or []float.
|
|
|
|
// If the uniform variable type is an array, a vector or a matrix,
|
|
|
|
// you have to specify linearly flattened values as a slice.
|
|
|
|
// For example, if the uniform variable type is [4]vec4, the number of the slice values will be 16.
|
2020-09-20 11:32:18 +02:00
|
|
|
Uniforms map[string]interface{}
|
|
|
|
|
|
|
|
// Images is a set of the source images.
|
|
|
|
// All the image must be the same size.
|
|
|
|
Images [4]*Image
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
var op DrawTrianglesShaderOptions
|
|
|
|
if got, want := len(op.Images), graphics.ShaderImageNum; got != want {
|
|
|
|
panic(fmt.Sprintf("ebiten: len((DrawTrianglesShaderOptions{}).Images) must be %d but %d", want, got))
|
2020-09-19 21:21:38 +02:00
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
}
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
// DrawTrianglesShader draws triangles with the specified vertices and their indices with the specified shader.
|
|
|
|
//
|
2020-09-23 09:45:00 +02:00
|
|
|
// For the details about the shader, see https://ebiten.org/documents/shader.html.
|
|
|
|
//
|
2020-09-20 11:32:18 +02:00
|
|
|
// If len(indices) is not multiple of 3, DrawTrianglesShader panics.
|
|
|
|
//
|
|
|
|
// If len(indices) is more than MaxIndicesNum, DrawTrianglesShader panics.
|
|
|
|
//
|
|
|
|
// When a specified image is non-nil and is disposed, DrawTrianglesShader panics.
|
|
|
|
//
|
|
|
|
// When the image i is disposed, DrawTrianglesShader does nothing.
|
|
|
|
//
|
|
|
|
// This API is experimental.
|
|
|
|
func (i *Image) DrawTrianglesShader(vertices []Vertex, indices []uint16, shader *Shader, options *DrawTrianglesShaderOptions) {
|
|
|
|
i.copyCheck()
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
2020-06-29 17:02:33 +02:00
|
|
|
}
|
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
if len(indices)%3 != 0 {
|
|
|
|
panic("ebiten: len(indices) % 3 must be 0")
|
2020-09-19 12:17:58 +02:00
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
if len(indices) > MaxIndicesNum {
|
|
|
|
panic("ebiten: len(indices) must be <= MaxIndicesNum")
|
|
|
|
}
|
|
|
|
// TODO: Check the maximum value of indices and len(vertices)?
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2020-11-07 11:14:06 +01:00
|
|
|
dstBounds := i.Bounds()
|
|
|
|
dstRegion := driver.Region{
|
|
|
|
X: float32(dstBounds.Min.X),
|
|
|
|
Y: float32(dstBounds.Min.Y),
|
|
|
|
Width: float32(dstBounds.Dx()),
|
|
|
|
Height: float32(dstBounds.Dy()),
|
|
|
|
}
|
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawTrianglesShaderOptions{}
|
|
|
|
}
|
|
|
|
|
|
|
|
mode := driver.CompositeMode(options.CompositeMode)
|
|
|
|
|
2021-03-20 12:24:32 +01:00
|
|
|
vs := graphics.Vertices(len(vertices))
|
2020-09-20 11:32:18 +02:00
|
|
|
for i, v := range vertices {
|
|
|
|
vs[i*graphics.VertexFloatNum] = v.DstX
|
|
|
|
vs[i*graphics.VertexFloatNum+1] = v.DstY
|
|
|
|
vs[i*graphics.VertexFloatNum+2] = v.SrcX
|
|
|
|
vs[i*graphics.VertexFloatNum+3] = v.SrcY
|
|
|
|
vs[i*graphics.VertexFloatNum+4] = v.ColorR
|
|
|
|
vs[i*graphics.VertexFloatNum+5] = v.ColorG
|
|
|
|
vs[i*graphics.VertexFloatNum+6] = v.ColorB
|
|
|
|
vs[i*graphics.VertexFloatNum+7] = v.ColorA
|
|
|
|
}
|
|
|
|
is := make([]uint16, len(indices))
|
|
|
|
copy(is, indices)
|
|
|
|
|
|
|
|
var imgs [graphics.ShaderImageNum]*mipmap.Mipmap
|
|
|
|
var imgw, imgh int
|
2020-09-19 12:17:58 +02:00
|
|
|
for i, img := range options.Images {
|
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if img.isDisposed() {
|
2020-09-20 11:32:18 +02:00
|
|
|
panic("ebiten: the given image to DrawRectShader must not be disposed")
|
2020-09-19 12:17:58 +02:00
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
if i == 0 {
|
|
|
|
imgw, imgh = img.Size()
|
|
|
|
} else {
|
|
|
|
// TODO: Check imgw > 0 && imgh > 0
|
|
|
|
if w, h := img.Size(); imgw != w || imgh != h {
|
|
|
|
panic("ebiten: all the source images must be the same size with the rectangle")
|
|
|
|
}
|
2020-09-19 12:17:58 +02:00
|
|
|
}
|
2020-09-20 11:32:18 +02:00
|
|
|
imgs[i] = img.mipmap
|
|
|
|
}
|
2020-09-19 21:21:38 +02:00
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
var sx, sy float32
|
|
|
|
if options.Images[0] != nil {
|
|
|
|
b := options.Images[0].Bounds()
|
|
|
|
sx = float32(b.Min.X)
|
|
|
|
sy = float32(b.Min.Y)
|
|
|
|
}
|
|
|
|
|
|
|
|
var sr driver.Region
|
|
|
|
if img := options.Images[0]; img != nil {
|
2020-09-19 21:21:38 +02:00
|
|
|
b := img.Bounds()
|
2020-09-20 11:32:18 +02:00
|
|
|
sr = driver.Region{
|
|
|
|
X: float32(b.Min.X),
|
|
|
|
Y: float32(b.Min.Y),
|
|
|
|
Width: float32(b.Dx()),
|
|
|
|
Height: float32(b.Dy()),
|
|
|
|
}
|
2020-07-25 16:29:06 +02:00
|
|
|
}
|
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
var offsets [graphics.ShaderImageNum - 1][2]float32
|
|
|
|
for i, img := range options.Images[1:] {
|
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
b := img.Bounds()
|
|
|
|
offsets[i][0] = -sx + float32(b.Min.X)
|
|
|
|
offsets[i][1] = -sy + float32(b.Min.Y)
|
2020-07-25 16:29:06 +02:00
|
|
|
}
|
2020-09-06 13:10:33 +02:00
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
us := shader.convertUniforms(options.Uniforms)
|
2020-11-07 11:14:06 +01:00
|
|
|
i.mipmap.DrawTriangles(imgs, vs, is, nil, mode, driver.FilterNearest, driver.AddressUnsafe, dstRegion, sr, offsets, shader.shader, us, false)
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2020-09-29 09:55:39 +02:00
|
|
|
// DrawRectShaderOptions represents options for DrawRectShader.
|
2020-07-20 13:37:04 +02:00
|
|
|
//
|
2020-07-20 15:19:28 +02:00
|
|
|
// This API is experimental.
|
2020-07-25 16:15:08 +02:00
|
|
|
type DrawRectShaderOptions struct {
|
2020-07-20 15:19:28 +02:00
|
|
|
// GeoM is a geometry matrix to draw.
|
2020-07-30 04:32:57 +02:00
|
|
|
// The default (zero) value is identity, which draws the rectangle at (0, 0).
|
2020-07-20 15:19:28 +02:00
|
|
|
GeoM GeoM
|
|
|
|
|
|
|
|
// CompositeMode is a composite mode to draw.
|
|
|
|
// The default (zero) value is regular alpha blending.
|
|
|
|
CompositeMode CompositeMode
|
|
|
|
|
|
|
|
// Uniforms is a set of uniform variables for the shader.
|
2020-09-23 09:24:41 +02:00
|
|
|
// The keys are the names of the uniform variables.
|
|
|
|
// The values must be float or []float.
|
|
|
|
// If the uniform variable type is an array, a vector or a matrix,
|
|
|
|
// you have to specify linearly flattened values as a slice.
|
|
|
|
// For example, if the uniform variable type is [4]vec4, the number of the slice values will be 16.
|
2020-09-06 13:10:33 +02:00
|
|
|
Uniforms map[string]interface{}
|
2020-07-20 13:37:04 +02:00
|
|
|
|
|
|
|
// Images is a set of the source images.
|
2020-07-20 15:19:28 +02:00
|
|
|
// All the image must be the same size with the rectangle.
|
2020-07-20 13:37:04 +02:00
|
|
|
Images [4]*Image
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2020-07-25 16:15:08 +02:00
|
|
|
var op DrawRectShaderOptions
|
2020-07-20 15:19:28 +02:00
|
|
|
if got, want := len(op.Images), graphics.ShaderImageNum; got != want {
|
2020-07-25 16:15:08 +02:00
|
|
|
panic(fmt.Sprintf("ebiten: len((DrawRectShaderOptions{}).Images) must be %d but %d", want, got))
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-25 16:15:08 +02:00
|
|
|
// DrawRectShader draws a rectangle with the specified width and height with the specified shader.
|
2020-07-20 15:19:28 +02:00
|
|
|
//
|
2020-09-23 09:45:00 +02:00
|
|
|
// For the details about the shader, see https://ebiten.org/documents/shader.html.
|
|
|
|
//
|
2020-07-25 16:15:08 +02:00
|
|
|
// When one of the specified image is non-nil and is disposed, DrawRectShader panics.
|
2020-07-20 15:19:28 +02:00
|
|
|
//
|
2020-07-25 16:15:08 +02:00
|
|
|
// When the image i is disposed, DrawRectShader does nothing.
|
2020-07-20 15:19:28 +02:00
|
|
|
//
|
|
|
|
// This API is experimental.
|
2020-07-25 16:15:08 +02:00
|
|
|
func (i *Image) DrawRectShader(width, height int, shader *Shader, options *DrawRectShaderOptions) {
|
2020-07-20 15:19:28 +02:00
|
|
|
i.copyCheck()
|
|
|
|
|
|
|
|
if i.isDisposed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-07 11:14:06 +01:00
|
|
|
dstBounds := i.Bounds()
|
|
|
|
dstRegion := driver.Region{
|
|
|
|
X: float32(dstBounds.Min.X),
|
|
|
|
Y: float32(dstBounds.Min.Y),
|
|
|
|
Width: float32(dstBounds.Dx()),
|
|
|
|
Height: float32(dstBounds.Dy()),
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if options == nil {
|
2020-07-25 16:15:08 +02:00
|
|
|
options = &DrawRectShaderOptions{}
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mode := driver.CompositeMode(options.CompositeMode)
|
|
|
|
|
2020-07-26 05:15:23 +02:00
|
|
|
var imgs [graphics.ShaderImageNum]*mipmap.Mipmap
|
2020-07-20 15:19:28 +02:00
|
|
|
for i, img := range options.Images {
|
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if img.isDisposed() {
|
2020-07-25 16:15:08 +02:00
|
|
|
panic("ebiten: the given image to DrawRectShader must not be disposed")
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
if w, h := img.Size(); width != w || height != h {
|
|
|
|
panic("ebiten: all the source images must be the same size with the rectangle")
|
|
|
|
}
|
2020-07-26 05:15:23 +02:00
|
|
|
imgs[i] = img.mipmap
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
2020-07-20 13:37:04 +02:00
|
|
|
|
2020-09-20 11:32:18 +02:00
|
|
|
var sx, sy float32
|
2020-09-19 21:21:38 +02:00
|
|
|
if options.Images[0] != nil {
|
|
|
|
b := options.Images[0].Bounds()
|
|
|
|
sx = float32(b.Min.X)
|
|
|
|
sy = float32(b.Min.Y)
|
|
|
|
}
|
|
|
|
|
2020-07-20 15:19:28 +02:00
|
|
|
a, b, c, d, tx, ty := options.GeoM.elements32()
|
2021-03-20 08:18:50 +01:00
|
|
|
vs := graphics.QuadVertices(sx, sy, sx+float32(width), sy+float32(height), a, b, c, d, tx, ty, 1, 1, 1, 1)
|
2020-07-20 15:19:28 +02:00
|
|
|
is := graphics.QuadIndices()
|
|
|
|
|
2020-08-10 18:11:19 +02:00
|
|
|
var sr driver.Region
|
|
|
|
if img := options.Images[0]; img != nil {
|
|
|
|
b := img.Bounds()
|
|
|
|
sr = driver.Region{
|
|
|
|
X: float32(b.Min.X),
|
|
|
|
Y: float32(b.Min.Y),
|
|
|
|
Width: float32(b.Dx()),
|
|
|
|
Height: float32(b.Dy()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-19 21:21:38 +02:00
|
|
|
var offsets [graphics.ShaderImageNum - 1][2]float32
|
|
|
|
for i, img := range options.Images[1:] {
|
|
|
|
if img == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
b := img.Bounds()
|
|
|
|
offsets[i][0] = -sx + float32(b.Min.X)
|
|
|
|
offsets[i][1] = -sy + float32(b.Min.Y)
|
|
|
|
}
|
|
|
|
|
2020-09-06 13:10:33 +02:00
|
|
|
us := shader.convertUniforms(options.Uniforms)
|
2020-11-07 11:14:06 +01:00
|
|
|
i.mipmap.DrawTriangles(imgs, vs, is, nil, mode, driver.FilterNearest, driver.AddressUnsafe, dstRegion, sr, offsets, shader.shader, us, canSkipMipmap(options.GeoM, driver.FilterNearest))
|
2020-07-20 15:19:28 +02:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
//
|
2021-05-30 08:18:00 +02:00
|
|
|
// In the current Ebiten implementation, SubImage is available only as a rendering source.
|
2018-10-23 16:27:27 +02:00
|
|
|
func (i *Image) SubImage(r image.Rectangle) image.Image {
|
|
|
|
i.copyCheck()
|
|
|
|
if i.isDisposed() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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 10:10:05 +02:00
|
|
|
img := &Image{
|
2020-07-26 05:15:23 +02:00
|
|
|
mipmap: i.mipmap,
|
2020-06-13 10:10:05 +02:00
|
|
|
bounds: r,
|
|
|
|
original: orig,
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2020-06-13 10:10:05 +02:00
|
|
|
img.addr = img
|
|
|
|
|
2018-10-23 16:27:27 +02:00
|
|
|
return img
|
|
|
|
}
|
|
|
|
|
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
|
|
|
//
|
2020-07-20 15:19:28 +02:00
|
|
|
// Note that an important logic should not rely on values returned by At, since
|
2019-04-11 23:12:22 +02:00
|
|
|
// the returned values can include very slight differences between some machines.
|
2018-05-01 11:07:52 +02:00
|
|
|
//
|
2020-10-04 19:00:50 +02:00
|
|
|
// At can't be called outside the main loop (ebiten.Run's updating function) starts.
|
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-07-26 05:15:23 +02:00
|
|
|
pix, err := i.mipmap.Pixels(x, y, 1, 1)
|
2020-01-18 17:18:56 +01:00
|
|
|
if err != nil {
|
2020-09-17 13:49:25 +02:00
|
|
|
if panicOnErrorAtImageAt {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-01-18 17:18:56 +01:00
|
|
|
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
|
|
|
}
|
2019-10-04 17:02:52 +02:00
|
|
|
if i.isSubImage() {
|
2020-06-27 17:36:13 +02:00
|
|
|
i = i.original
|
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)}
|
2020-07-26 05:15:23 +02:00
|
|
|
if err := i.mipmap.ReplacePixels(pix, x, y, 1, 1); err != nil {
|
2020-01-18 17:18:56 +01:00
|
|
|
theUIContext.setError(err)
|
|
|
|
}
|
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
|
|
|
//
|
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
|
|
|
//
|
2020-11-07 20:12:48 +01:00
|
|
|
// If the image is a sub-image, Dispose does nothing.
|
|
|
|
//
|
2017-03-03 18:23:39 +01:00
|
|
|
// When the image is disposed, Dipose does nothing.
|
2020-10-05 17:13:19 +02:00
|
|
|
func (i *Image) Dispose() {
|
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-10-05 17:13:19 +02:00
|
|
|
return
|
2016-07-12 19:07:35 +02:00
|
|
|
}
|
2019-02-21 16:08:15 +01:00
|
|
|
if i.isSubImage() {
|
2020-10-05 17:13:19 +02:00
|
|
|
return
|
2018-10-23 16:27:27 +02:00
|
|
|
}
|
2020-07-26 05:15:23 +02:00
|
|
|
i.mipmap.MarkDisposed()
|
|
|
|
i.mipmap = 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.
|
2020-10-05 17:16:13 +02:00
|
|
|
func (i *Image) ReplacePixels(pixels []byte) {
|
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-10-05 17:16:13 +02:00
|
|
|
return
|
2020-06-13 12:03:01 +02:00
|
|
|
}
|
2020-06-27 17:36:13 +02:00
|
|
|
r := i.Bounds()
|
2020-06-30 19:56:37 +02:00
|
|
|
|
2020-07-02 19:56:37 +02:00
|
|
|
// Do not need to copy pixels here.
|
2020-07-26 05:15:23 +02:00
|
|
|
// * In internal/mipmap, pixels are copied when necessary.
|
2020-07-02 19:56:37 +02:00
|
|
|
// * In internal/shareable, pixels are copied to make its paddings.
|
2020-07-26 05:15:23 +02:00
|
|
|
if err := i.mipmap.ReplacePixels(pixels, r.Min.X, r.Min.Y, r.Dx(), r.Dy()); err != nil {
|
2020-02-16 13:45:26 +01:00
|
|
|
theUIContext.setError(err)
|
2018-11-28 22:24:04 +01:00
|
|
|
}
|
2016-05-16 18:03:28 +02: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.
|
2021-04-03 11:44:41 +02:00
|
|
|
//
|
|
|
|
// NewImage panics if RunGame already finishes.
|
2020-10-05 17:33:05 +02:00
|
|
|
func NewImage(width, height int) *Image {
|
2021-04-03 11:44:41 +02:00
|
|
|
if isRunGameEnded() {
|
|
|
|
panic(fmt.Sprintf("ebiten: NewImage cannot be called after RunGame finishes"))
|
|
|
|
}
|
2020-10-22 17:42:57 +02:00
|
|
|
if width <= 0 {
|
|
|
|
panic(fmt.Sprintf("ebiten: width at NewImage must be positive but %d", width))
|
|
|
|
}
|
|
|
|
if height <= 0 {
|
|
|
|
panic(fmt.Sprintf("ebiten: height at NewImage must be positive but %d", height))
|
|
|
|
}
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2020-08-18 17:54:21 +02:00
|
|
|
mipmap: mipmap.New(width, height),
|
2020-07-26 05:15:23 +02:00
|
|
|
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
|
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.
|
2021-04-03 11:44:41 +02:00
|
|
|
//
|
|
|
|
// NewImageFromImage panics if RunGame already finishes.
|
2020-10-05 18:03:30 +02:00
|
|
|
func NewImageFromImage(source image.Image) *Image {
|
2021-04-03 11:44:41 +02:00
|
|
|
if isRunGameEnded() {
|
|
|
|
panic(fmt.Sprintf("ebiten: NewImage cannot be called after RunGame finishes"))
|
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2021-04-03 11:44:41 +02:00
|
|
|
size := source.Bounds().Size()
|
2018-02-25 15:13:06 +01:00
|
|
|
width, height := size.X, size.Y
|
2020-10-22 17:42:57 +02:00
|
|
|
if width <= 0 {
|
|
|
|
panic(fmt.Sprintf("ebiten: source width at NewImageFromImage must be positive but %d", width))
|
|
|
|
}
|
|
|
|
if height <= 0 {
|
|
|
|
panic(fmt.Sprintf("ebiten: source height at NewImageFromImage must be positive but %d", height))
|
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
|
2018-03-10 15:14:59 +01:00
|
|
|
i := &Image{
|
2020-08-18 17:54:21 +02:00
|
|
|
mipmap: mipmap.New(width, height),
|
2020-07-26 05:15:23 +02:00
|
|
|
bounds: image.Rect(0, 0, width, height),
|
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
|
|
|
|
2020-07-02 19:56:37 +02:00
|
|
|
i.ReplacePixels(imageToBytes(source))
|
2020-10-05 18:03:30 +02:00
|
|
|
return i
|
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-07-26 05:15:23 +02:00
|
|
|
mipmap: mipmap.NewScreenFramebufferMipmap(width, height),
|
|
|
|
bounds: image.Rect(0, 0, width, height),
|
2021-01-31 14:45:47 +01:00
|
|
|
screen: true,
|
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
|
|
|
}
|