2018-03-03 10:51:52 +01:00
|
|
|
// Copyright 2018 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-03-10 15:48:10 +01:00
|
|
|
package shareable
|
2018-03-03 10:51:52 +01:00
|
|
|
|
|
|
|
import (
|
2019-02-07 09:19:24 +01:00
|
|
|
"fmt"
|
2019-08-24 19:39:59 +02:00
|
|
|
"image/color"
|
2018-03-10 16:07:32 +01:00
|
|
|
"runtime"
|
2018-05-09 16:41:06 +02:00
|
|
|
"sync"
|
2018-03-10 15:27:16 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2019-06-22 13:17:52 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/driver"
|
2018-10-28 12:25:52 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2019-05-11 16:16:05 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/hooks"
|
2018-03-05 16:38:56 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/packing"
|
2018-03-03 10:51:52 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/restorable"
|
|
|
|
)
|
|
|
|
|
2019-06-22 13:17:52 +02:00
|
|
|
var graphicsDriver driver.Graphics
|
|
|
|
|
|
|
|
func SetGraphicsDriver(graphics driver.Graphics) {
|
|
|
|
graphicsDriver = graphics
|
|
|
|
}
|
|
|
|
|
2019-06-23 04:32:43 +02:00
|
|
|
var (
|
|
|
|
minSize = 0
|
|
|
|
maxSize = 0
|
|
|
|
)
|
|
|
|
|
2019-07-03 18:55:55 +02:00
|
|
|
func min(a, b int) int {
|
|
|
|
if a < b {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2019-05-11 16:16:05 +02:00
|
|
|
func init() {
|
|
|
|
hooks.AppendHookOnBeforeUpdate(func() error {
|
2019-06-22 13:17:52 +02:00
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
2019-08-12 12:37:20 +02:00
|
|
|
|
|
|
|
resolveDeferred()
|
2019-05-11 16:16:05 +02:00
|
|
|
makeImagesShared()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-12 12:37:20 +02:00
|
|
|
func resolveDeferred() {
|
|
|
|
for _, f := range deferred {
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
deferred = nil
|
|
|
|
}
|
|
|
|
|
2019-05-11 16:16:05 +02:00
|
|
|
// MaxCountForShare represents the time duration when the image can become shared.
|
|
|
|
//
|
2019-08-15 05:59:50 +02:00
|
|
|
// This value is exported for testing.
|
2019-05-11 16:16:05 +02:00
|
|
|
const MaxCountForShare = 10
|
|
|
|
|
|
|
|
func makeImagesShared() {
|
|
|
|
for i := range imagesToMakeShared {
|
|
|
|
i.nonUpdatedCount++
|
|
|
|
if i.nonUpdatedCount >= MaxCountForShare {
|
|
|
|
i.makeShared()
|
|
|
|
}
|
|
|
|
delete(imagesToMakeShared, i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-10 16:02:23 +01:00
|
|
|
type backend struct {
|
2018-03-03 10:51:52 +01:00
|
|
|
restorable *restorable.Image
|
2018-03-15 17:21:33 +01:00
|
|
|
|
|
|
|
// If page is nil, the backend is not shared.
|
|
|
|
page *packing.Page
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
|
2018-03-25 15:41:15 +02:00
|
|
|
func (b *backend) TryAlloc(width, height int) (*packing.Node, bool) {
|
2018-12-03 18:23:25 +01:00
|
|
|
// If the region is allocated without any extension, it's fine.
|
2018-03-25 15:41:15 +02:00
|
|
|
if n := b.page.Alloc(width, height); n != nil {
|
|
|
|
return n, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simulate the extending the page and calculate the appropriate page size.
|
|
|
|
page := b.page.Clone()
|
|
|
|
nExtended := 0
|
|
|
|
for {
|
|
|
|
if !page.Extend() {
|
|
|
|
// The page can't be extended any more. Return as failure.
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
nExtended++
|
|
|
|
if n := page.Alloc(width, height); n != nil {
|
2019-02-21 02:57:55 +01:00
|
|
|
// The page is just for emulation, so we don't have to free it.
|
2018-03-25 15:41:15 +02:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < nExtended; i++ {
|
|
|
|
b.page.Extend()
|
|
|
|
}
|
|
|
|
s := b.page.Size()
|
2019-07-16 20:32:08 +02:00
|
|
|
b.restorable = b.restorable.Extend(s, s)
|
2018-03-25 15:41:15 +02:00
|
|
|
|
|
|
|
n := b.page.Alloc(width, height)
|
|
|
|
if n == nil {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("shareable: Alloc result must not be nil at TryAlloc")
|
2018-03-25 15:41:15 +02:00
|
|
|
}
|
|
|
|
return n, true
|
|
|
|
}
|
|
|
|
|
2018-03-03 10:51:52 +01:00
|
|
|
var (
|
2018-03-10 16:28:30 +01:00
|
|
|
// backendsM is a mutex for critical sections of the backend and packing.Node objects.
|
|
|
|
backendsM sync.Mutex
|
|
|
|
|
2019-08-23 18:06:14 +02:00
|
|
|
initOnce sync.Once
|
2019-08-12 17:18:49 +02:00
|
|
|
|
2018-03-10 16:02:23 +01:00
|
|
|
// theBackends is a set of actually shared images.
|
|
|
|
theBackends = []*backend{}
|
2019-05-11 16:16:05 +02:00
|
|
|
|
|
|
|
imagesToMakeShared = map[*Image]struct{}{}
|
2019-08-12 12:37:20 +02:00
|
|
|
|
2019-08-12 13:48:26 +02:00
|
|
|
deferred []func()
|
2018-03-03 10:51:52 +01:00
|
|
|
)
|
|
|
|
|
2019-08-23 18:06:14 +02:00
|
|
|
func init() {
|
2019-08-25 17:32:30 +02:00
|
|
|
// Lock the mutex before a frame begins.
|
|
|
|
//
|
|
|
|
// In each frame, restoring images and resolving images happen respectively:
|
|
|
|
//
|
|
|
|
// [Restore -> Resolve] -> [Restore -> Resolve] -> ...
|
|
|
|
//
|
|
|
|
// Between each frame, any image operations are not permitted, or stale images would remain when restoring
|
|
|
|
// (#913).
|
2019-08-23 18:06:14 +02:00
|
|
|
backendsM.Lock()
|
2019-06-22 13:17:52 +02:00
|
|
|
}
|
|
|
|
|
2018-03-10 16:05:06 +01:00
|
|
|
type Image struct {
|
2018-04-29 20:26:58 +02:00
|
|
|
width int
|
|
|
|
height int
|
|
|
|
disposed bool
|
2019-08-24 17:43:26 +02:00
|
|
|
screen bool
|
2018-04-29 11:51:48 +02:00
|
|
|
|
2018-03-10 16:02:23 +01:00
|
|
|
backend *backend
|
2018-03-10 15:14:59 +01:00
|
|
|
|
2019-05-11 16:16:05 +02:00
|
|
|
node *packing.Node
|
|
|
|
|
|
|
|
// nonUpdatedCount represents how long the image is kept not modified with DrawTriangles.
|
|
|
|
// In the current implementation, if an image is being modified by DrawTriangles, the image is separated from
|
|
|
|
// a shared (restorable) image by ensureNotShared.
|
|
|
|
//
|
2019-05-12 10:53:18 +02:00
|
|
|
// nonUpdatedCount is increased every frame if the image is not modified, or set to 0 if the image is
|
2019-05-11 16:16:05 +02:00
|
|
|
// modified.
|
|
|
|
//
|
|
|
|
// ReplacePixels doesn't affect this value since ReplacePixels can be done on shared images.
|
|
|
|
nonUpdatedCount int
|
2018-07-24 15:25:15 +02:00
|
|
|
|
|
|
|
neverShared bool
|
2018-03-10 15:14:59 +01:00
|
|
|
}
|
|
|
|
|
2018-07-21 23:27:57 +02:00
|
|
|
func (i *Image) moveTo(dst *Image) {
|
|
|
|
dst.dispose(false)
|
|
|
|
*dst = *i
|
|
|
|
|
|
|
|
// i is no longer available but Dispose must not be called
|
|
|
|
// since i and dst have the same values like node.
|
|
|
|
runtime.SetFinalizer(i, nil)
|
|
|
|
}
|
|
|
|
|
2018-06-25 18:59:12 +02:00
|
|
|
func (i *Image) isShared() bool {
|
|
|
|
return i.node != nil
|
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
func (i *Image) ensureNotShared() {
|
2018-04-29 20:26:58 +02:00
|
|
|
if i.backend == nil {
|
2018-04-29 11:51:48 +02:00
|
|
|
i.allocate(false)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-25 18:59:12 +02:00
|
|
|
if !i.isShared() {
|
2018-03-10 15:14:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-09-20 17:41:53 +02:00
|
|
|
ox, oy, w, h := i.region()
|
|
|
|
dx0 := float32(0)
|
|
|
|
dy0 := float32(0)
|
|
|
|
dx1 := float32(w)
|
|
|
|
dy1 := float32(h)
|
|
|
|
sx0 := float32(ox)
|
|
|
|
sy0 := float32(oy)
|
|
|
|
sx1 := float32(ox + w)
|
|
|
|
sy1 := float32(oy + h)
|
2019-02-12 07:05:05 +01:00
|
|
|
newImg := restorable.NewImage(w, h)
|
2019-09-20 17:41:53 +02:00
|
|
|
vs := []float32{
|
|
|
|
dx0, dy0, sx0, sy0, sx0, sy0, sx1, sy1, 1, 1, 1, 1,
|
|
|
|
dx1, dy0, sx1, sy0, sx0, sy0, sx1, sy1, 1, 1, 1, 1,
|
|
|
|
dx0, dy1, sx0, sy1, sx0, sy0, sx1, sy1, 1, 1, 1, 1,
|
|
|
|
dx1, dy1, sx1, sy1, sx0, sy0, sx1, sy1, 1, 1, 1, 1,
|
|
|
|
}
|
2018-10-28 15:03:06 +01:00
|
|
|
is := graphics.QuadIndices()
|
2019-06-25 17:43:09 +02:00
|
|
|
newImg.DrawTriangles(i.backend.restorable, vs, is, nil, driver.CompositeModeCopy, driver.FilterNearest, driver.AddressClampToZero)
|
2018-03-10 15:14:59 +01:00
|
|
|
|
2018-05-03 04:49:55 +02:00
|
|
|
i.dispose(false)
|
2018-04-08 19:18:46 +02:00
|
|
|
i.backend = &backend{
|
2018-03-10 15:14:59 +01:00
|
|
|
restorable: newImg,
|
|
|
|
}
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
|
2019-05-11 16:16:05 +02:00
|
|
|
func (i *Image) makeShared() {
|
2018-07-11 18:40:24 +02:00
|
|
|
if i.backend == nil {
|
2018-07-29 16:49:53 +02:00
|
|
|
i.allocate(true)
|
2018-07-11 18:40:24 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.isShared() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !i.shareable() {
|
2019-05-11 16:16:05 +02:00
|
|
|
panic("shareable: makeShared cannot be called on a non-shareable image")
|
2018-07-11 18:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
newI := NewImage(i.width, i.height)
|
|
|
|
pixels := make([]byte, 4*i.width*i.height)
|
|
|
|
for y := 0; y < i.height; y++ {
|
|
|
|
for x := 0; x < i.width; x++ {
|
2019-01-13 20:25:39 +01:00
|
|
|
r, g, b, a := i.at(x, y)
|
|
|
|
pixels[4*(x+i.width*y)] = r
|
|
|
|
pixels[4*(x+i.width*y)+1] = g
|
|
|
|
pixels[4*(x+i.width*y)+2] = b
|
|
|
|
pixels[4*(x+i.width*y)+3] = a
|
2018-07-11 18:40:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
newI.replacePixels(pixels)
|
2018-07-21 23:27:57 +02:00
|
|
|
newI.moveTo(i)
|
2019-05-11 16:16:05 +02:00
|
|
|
i.nonUpdatedCount = 0
|
2018-07-11 18:40:24 +02:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
func (i *Image) region() (x, y, width, height int) {
|
2018-04-29 20:26:58 +02:00
|
|
|
if i.backend == nil {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("shareable: backend must not be nil: not allocated yet?")
|
2018-04-29 11:51:48 +02:00
|
|
|
}
|
2018-06-25 18:59:12 +02:00
|
|
|
if !i.isShared() {
|
2018-04-08 19:18:46 +02:00
|
|
|
w, h := i.backend.restorable.Size()
|
2018-03-10 15:14:59 +01:00
|
|
|
return 0, 0, w, h
|
|
|
|
}
|
2018-04-08 19:18:46 +02:00
|
|
|
return i.node.Region()
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
func (i *Image) Size() (width, height int) {
|
2018-04-29 11:51:48 +02:00
|
|
|
return i.width, i.height
|
2018-03-10 15:36:07 +01:00
|
|
|
}
|
|
|
|
|
2019-06-21 04:09:48 +02:00
|
|
|
// PutVertices puts the given dst with vertices that can be passed to DrawTriangles.
|
|
|
|
func (i *Image) PutVertex(dst []float32, dx, dy, sx, sy float32, bx0, by0, bx1, by1 float32, cr, cg, cb, ca float32) {
|
2019-09-19 18:55:18 +02:00
|
|
|
// Specifying a range explicitly here is redundant but this helps optimization
|
|
|
|
// to eliminate boundary checks.
|
|
|
|
//
|
|
|
|
// VertexFloatNum is better than 12 in terms of code maintenanceability, but in GopherJS, optimization
|
|
|
|
// might not work.
|
|
|
|
vs := dst[0:12]
|
|
|
|
|
|
|
|
vs[0] = dx
|
|
|
|
vs[1] = dy
|
2019-09-20 17:41:53 +02:00
|
|
|
vs[2] = sx
|
|
|
|
vs[3] = sy
|
|
|
|
vs[4] = bx0
|
|
|
|
vs[5] = by0
|
|
|
|
vs[6] = bx1
|
|
|
|
vs[7] = by1
|
2019-09-19 18:55:18 +02:00
|
|
|
vs[8] = cr
|
|
|
|
vs[9] = cg
|
|
|
|
vs[10] = cb
|
|
|
|
vs[11] = ca
|
2018-06-12 03:33:09 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 17:43:09 +02:00
|
|
|
func (i *Image) DrawTriangles(img *Image, vertices []float32, indices []uint16, colorm *affine.ColorM, mode driver.CompositeMode, filter driver.Filter, address driver.Address) {
|
2018-03-10 16:28:30 +01:00
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
2018-04-29 11:51:48 +02:00
|
|
|
|
2018-04-29 20:34:35 +02:00
|
|
|
if img.disposed {
|
2019-04-22 16:12:03 +02:00
|
|
|
panic("shareable: the drawing source image must not be disposed (DrawTriangles)")
|
2018-04-29 20:34:35 +02:00
|
|
|
}
|
|
|
|
if i.disposed {
|
2019-04-22 16:12:03 +02:00
|
|
|
panic("shareable: the drawing target image must not be disposed (DrawTriangles)")
|
2018-04-29 20:34:35 +02:00
|
|
|
}
|
2018-04-29 20:26:58 +02:00
|
|
|
if img.backend == nil {
|
2018-04-29 11:51:48 +02:00
|
|
|
img.allocate(true)
|
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
i.ensureNotShared()
|
2018-03-10 15:48:10 +01:00
|
|
|
|
|
|
|
// Compare i and img after ensuring i is not shared, or
|
|
|
|
// i and img might share the same texture even though i != img.
|
2018-04-08 19:18:46 +02:00
|
|
|
if i.backend.restorable == img.backend.restorable {
|
2019-04-22 16:12:03 +02:00
|
|
|
panic("shareable: Image.DrawTriangles: img must be different from the receiver")
|
2018-03-10 15:48:10 +01:00
|
|
|
}
|
|
|
|
|
2019-09-20 17:41:53 +02:00
|
|
|
ox, oy, _, _ := img.region()
|
|
|
|
oxf, oyf := float32(ox), float32(oy)
|
|
|
|
for i := 0; i < len(vertices)/graphics.VertexFloatNum; i++ {
|
|
|
|
vertices[i*graphics.VertexFloatNum+2] += oxf
|
|
|
|
vertices[i*graphics.VertexFloatNum+3] += oyf
|
|
|
|
vertices[i*graphics.VertexFloatNum+4] += oxf
|
|
|
|
vertices[i*graphics.VertexFloatNum+5] += oyf
|
|
|
|
vertices[i*graphics.VertexFloatNum+6] += oxf
|
|
|
|
vertices[i*graphics.VertexFloatNum+7] += oyf
|
|
|
|
}
|
|
|
|
|
2019-04-22 16:12:03 +02:00
|
|
|
i.backend.restorable.DrawTriangles(img.backend.restorable, vertices, indices, colorm, mode, filter, address)
|
2018-07-11 18:40:24 +02:00
|
|
|
|
2019-05-11 16:16:05 +02:00
|
|
|
i.nonUpdatedCount = 0
|
|
|
|
delete(imagesToMakeShared, i)
|
2018-08-08 11:40:50 +02:00
|
|
|
|
2019-05-11 16:16:05 +02:00
|
|
|
if !img.isShared() && img.shareable() {
|
|
|
|
imagesToMakeShared[img] = struct{}{}
|
|
|
|
}
|
2018-03-10 15:27:16 +01:00
|
|
|
}
|
|
|
|
|
2019-08-24 19:39:59 +02:00
|
|
|
func (i *Image) Fill(clr color.Color) {
|
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
|
|
|
|
|
|
|
if i.disposed {
|
|
|
|
panic("shareable: the drawing target image must not be disposed (Fill)")
|
|
|
|
}
|
|
|
|
if i.backend == nil {
|
|
|
|
if _, _, _, a := clr.RGBA(); a == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i.ensureNotShared()
|
|
|
|
|
2019-08-27 00:05:08 +02:00
|
|
|
// As *restorable.Image is an independent image, it is fine to fill the entire image.
|
|
|
|
i.backend.restorable.Fill(clr)
|
2019-08-24 19:39:59 +02:00
|
|
|
|
|
|
|
i.nonUpdatedCount = 0
|
|
|
|
delete(imagesToMakeShared, i)
|
|
|
|
}
|
|
|
|
|
2019-07-19 21:34:23 +02:00
|
|
|
// ClearFramebuffer clears the image with a color. This affects not only the (0, 0)-(width, height) region but also
|
|
|
|
// the whole framebuffer region.
|
|
|
|
func (i *Image) ClearFramebuffer() {
|
2019-01-12 18:09:51 +01:00
|
|
|
backendsM.Lock()
|
2019-07-19 21:34:23 +02:00
|
|
|
defer backendsM.Unlock()
|
2019-01-12 18:09:51 +01:00
|
|
|
if i.disposed {
|
2019-02-09 11:47:45 +01:00
|
|
|
panic("shareable: the drawing target image must not be disposed (Fill)")
|
2019-01-12 18:09:51 +01:00
|
|
|
}
|
|
|
|
i.ensureNotShared()
|
|
|
|
|
2019-07-19 21:53:18 +02:00
|
|
|
i.backend.restorable.Clear()
|
2019-01-12 18:09:51 +01:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
func (i *Image) ReplacePixels(p []byte) {
|
2018-03-10 16:28:30 +01:00
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
2018-07-11 18:40:24 +02:00
|
|
|
i.replacePixels(p)
|
|
|
|
}
|
2018-03-10 16:28:30 +01:00
|
|
|
|
2018-07-11 18:40:24 +02:00
|
|
|
func (i *Image) replacePixels(p []byte) {
|
2018-04-29 20:34:35 +02:00
|
|
|
if i.disposed {
|
2019-02-09 11:47:45 +01:00
|
|
|
panic("shareable: the image must not be disposed at replacePixels")
|
2018-04-29 20:34:35 +02:00
|
|
|
}
|
2018-04-29 20:26:58 +02:00
|
|
|
if i.backend == nil {
|
2018-08-08 18:16:46 +02:00
|
|
|
if p == nil {
|
|
|
|
return
|
|
|
|
}
|
2018-04-29 11:51:48 +02:00
|
|
|
i.allocate(true)
|
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
x, y, w, h := i.region()
|
2018-08-08 18:16:46 +02:00
|
|
|
if p != nil {
|
|
|
|
if l := 4 * w * h; len(p) != l {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic(fmt.Sprintf("shareable: len(p) must be %d but %d", l, len(p)))
|
2018-08-08 18:16:46 +02:00
|
|
|
}
|
2018-03-10 15:36:07 +01:00
|
|
|
}
|
2018-04-08 19:18:46 +02:00
|
|
|
i.backend.restorable.ReplacePixels(p, x, y, w, h)
|
2018-03-10 15:27:16 +01:00
|
|
|
}
|
|
|
|
|
2019-01-13 20:25:39 +01:00
|
|
|
func (i *Image) At(x, y int) (byte, byte, byte, byte) {
|
2018-03-10 16:28:30 +01:00
|
|
|
backendsM.Lock()
|
2018-04-05 05:02:08 +02:00
|
|
|
defer backendsM.Unlock()
|
2018-07-11 18:40:24 +02:00
|
|
|
return i.at(x, y)
|
|
|
|
}
|
2018-03-10 16:28:30 +01:00
|
|
|
|
2019-01-13 20:25:39 +01:00
|
|
|
func (i *Image) at(x, y int) (byte, byte, byte, byte) {
|
2018-04-29 20:26:58 +02:00
|
|
|
if i.backend == nil {
|
2019-01-13 20:25:39 +01:00
|
|
|
return 0, 0, 0, 0
|
2018-04-29 11:51:48 +02:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
ox, oy, w, h := i.region()
|
2018-03-10 15:36:07 +01:00
|
|
|
if x < 0 || y < 0 || x >= w || y >= h {
|
2019-01-13 20:25:39 +01:00
|
|
|
return 0, 0, 0, 0
|
2018-03-10 15:36:07 +01:00
|
|
|
}
|
2018-03-10 16:28:30 +01:00
|
|
|
|
2018-07-11 19:11:18 +02:00
|
|
|
return i.backend.restorable.At(x+ox, y+oy)
|
2018-03-10 15:27:16 +01:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:09:17 +02:00
|
|
|
// disposeFromFinalizer disposes images, but the actual operation is deferred.
|
|
|
|
// disposeFromFinalizer is called from finalizers.
|
|
|
|
//
|
|
|
|
// A function from finalizer must not be blocked, but disposing operation can be blocked.
|
|
|
|
// Defer this operation until it becomes safe. (#913)
|
|
|
|
func (i *Image) disposeFromFinalizer() {
|
2019-08-12 13:48:26 +02:00
|
|
|
// deferred doesn't have to be, and should not be protected by a mutex.
|
2019-08-12 12:37:20 +02:00
|
|
|
deferred = append(deferred, func() {
|
|
|
|
i.dispose(true)
|
|
|
|
})
|
2018-03-10 16:28:30 +01:00
|
|
|
}
|
|
|
|
|
2019-08-12 13:09:17 +02:00
|
|
|
func (i *Image) Dispose() {
|
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
|
|
|
|
|
|
|
i.dispose(true)
|
|
|
|
}
|
|
|
|
|
2018-05-03 04:49:55 +02:00
|
|
|
func (i *Image) dispose(markDisposed bool) {
|
2018-03-10 15:14:59 +01:00
|
|
|
defer func() {
|
2018-05-03 04:49:55 +02:00
|
|
|
if markDisposed {
|
|
|
|
i.disposed = true
|
|
|
|
}
|
2018-04-08 19:18:46 +02:00
|
|
|
i.backend = nil
|
|
|
|
i.node = nil
|
2018-07-21 22:40:04 +02:00
|
|
|
if markDisposed {
|
|
|
|
runtime.SetFinalizer(i, nil)
|
|
|
|
}
|
2018-03-10 15:14:59 +01:00
|
|
|
}()
|
|
|
|
|
2018-04-29 20:26:58 +02:00
|
|
|
if i.disposed {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.backend == nil {
|
|
|
|
// Not allocated yet.
|
2018-04-25 18:51:57 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-25 18:59:12 +02:00
|
|
|
if !i.isShared() {
|
2018-04-08 19:18:46 +02:00
|
|
|
i.backend.restorable.Dispose()
|
2018-03-10 15:14:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
i.backend.page.Free(i.node)
|
|
|
|
if !i.backend.page.IsEmpty() {
|
2018-04-05 17:36:15 +02:00
|
|
|
// As this part can be reused, this should be cleared explicitly.
|
2019-07-09 19:36:59 +02:00
|
|
|
i.backend.restorable.ClearPixels(i.region())
|
2018-03-10 15:14:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-08 19:18:46 +02:00
|
|
|
i.backend.restorable.Dispose()
|
2018-03-10 15:14:59 +01:00
|
|
|
index := -1
|
2018-04-08 19:18:46 +02:00
|
|
|
for idx, sh := range theBackends {
|
|
|
|
if sh == i.backend {
|
|
|
|
index = idx
|
2018-03-10 15:14:59 +01:00
|
|
|
break
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
}
|
2018-03-10 15:14:59 +01:00
|
|
|
if index == -1 {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("shareable: backend not found at an image being disposed")
|
2018-03-10 15:14:59 +01:00
|
|
|
}
|
2018-03-10 16:02:23 +01:00
|
|
|
theBackends = append(theBackends[:index], theBackends[index+1:]...)
|
2018-03-10 15:14:59 +01:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:54:46 +02:00
|
|
|
func (i *Image) IsVolatile() bool {
|
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
|
|
|
if i.backend == nil {
|
|
|
|
// Not allocated yet. Only non-volatile images can do lazy allocation so far.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return i.backend.restorable.IsVolatile()
|
|
|
|
}
|
|
|
|
|
2018-03-10 16:05:06 +01:00
|
|
|
func NewImage(width, height int) *Image {
|
2019-08-23 18:06:14 +02:00
|
|
|
// Actual allocation is done lazily, and the lock is not needed.
|
2018-04-29 11:51:48 +02:00
|
|
|
return &Image{
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 18:40:24 +02:00
|
|
|
func (i *Image) shareable() bool {
|
2019-08-23 18:06:14 +02:00
|
|
|
if minSize == 0 || maxSize == 0 {
|
|
|
|
panic("shareable: minSize or maxSize must be initialized")
|
2019-06-22 13:17:52 +02:00
|
|
|
}
|
2018-07-24 15:25:15 +02:00
|
|
|
if i.neverShared {
|
|
|
|
return false
|
|
|
|
}
|
2018-07-11 18:40:24 +02:00
|
|
|
return i.width <= maxSize && i.height <= maxSize
|
|
|
|
}
|
|
|
|
|
2018-04-29 11:51:48 +02:00
|
|
|
func (i *Image) allocate(shareable bool) {
|
2018-04-29 20:26:58 +02:00
|
|
|
if i.backend != nil {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("shareable: the image is already allocated")
|
2018-04-29 12:10:36 +02:00
|
|
|
}
|
|
|
|
|
2019-08-24 17:43:26 +02:00
|
|
|
if i.screen {
|
|
|
|
i.backend = &backend{
|
|
|
|
restorable: restorable.NewScreenFramebufferImage(i.width, i.height),
|
|
|
|
}
|
|
|
|
runtime.SetFinalizer(i, (*Image).disposeFromFinalizer)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-11 18:40:24 +02:00
|
|
|
if !shareable || !i.shareable() {
|
2018-04-29 11:51:48 +02:00
|
|
|
i.backend = &backend{
|
2019-02-12 07:05:05 +01:00
|
|
|
restorable: restorable.NewImage(i.width, i.height),
|
2018-03-10 15:14:59 +01:00
|
|
|
}
|
2019-08-12 13:09:17 +02:00
|
|
|
runtime.SetFinalizer(i, (*Image).disposeFromFinalizer)
|
2018-04-29 11:51:48 +02:00
|
|
|
return
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
2018-03-10 15:14:59 +01:00
|
|
|
|
2018-03-23 20:27:10 +01:00
|
|
|
for _, b := range theBackends {
|
2018-04-29 11:51:48 +02:00
|
|
|
if n, ok := b.TryAlloc(i.width, i.height); ok {
|
|
|
|
i.backend = b
|
|
|
|
i.node = n
|
2019-08-12 13:09:17 +02:00
|
|
|
runtime.SetFinalizer(i, (*Image).disposeFromFinalizer)
|
2018-04-29 11:51:48 +02:00
|
|
|
return
|
2018-03-10 17:30:24 +01:00
|
|
|
}
|
|
|
|
}
|
2019-06-22 13:17:52 +02:00
|
|
|
size := minSize
|
2018-04-29 11:51:48 +02:00
|
|
|
for i.width > size || i.height > size {
|
2018-03-25 15:41:15 +02:00
|
|
|
if size == maxSize {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic(fmt.Sprintf("shareable: the image being shared is too big: width: %d, height: %d", i.width, i.height))
|
2018-03-25 15:41:15 +02:00
|
|
|
}
|
|
|
|
size *= 2
|
|
|
|
}
|
|
|
|
|
2018-03-23 20:27:10 +01:00
|
|
|
b := &backend{
|
2019-02-12 07:05:05 +01:00
|
|
|
restorable: restorable.NewImage(size, size),
|
2018-03-25 15:41:15 +02:00
|
|
|
page: packing.NewPage(size, maxSize),
|
2018-03-06 18:18:08 +01:00
|
|
|
}
|
2018-03-23 20:27:10 +01:00
|
|
|
theBackends = append(theBackends, b)
|
2018-03-09 08:02:57 +01:00
|
|
|
|
2018-04-29 11:51:48 +02:00
|
|
|
n := b.page.Alloc(i.width, i.height)
|
2018-03-03 10:51:52 +01:00
|
|
|
if n == nil {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("shareable: Alloc result must not be nil at allocate")
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
2018-04-29 11:51:48 +02:00
|
|
|
i.backend = b
|
|
|
|
i.node = n
|
2019-08-12 13:09:17 +02:00
|
|
|
runtime.SetFinalizer(i, (*Image).disposeFromFinalizer)
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
2018-03-10 15:48:10 +01:00
|
|
|
|
2019-02-12 07:12:36 +01:00
|
|
|
func (i *Image) MakeVolatile() {
|
2018-03-25 16:37:32 +02:00
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
|
|
|
|
2019-02-12 07:12:36 +01:00
|
|
|
i.ensureNotShared()
|
|
|
|
i.backend.restorable.MakeVolatile()
|
|
|
|
i.neverShared = true
|
2018-03-10 15:48:10 +01:00
|
|
|
}
|
|
|
|
|
2019-07-19 18:42:19 +02:00
|
|
|
func (i *Image) Dump(path string) error {
|
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
|
|
|
|
|
|
|
return i.backend.restorable.Dump(path)
|
|
|
|
}
|
|
|
|
|
2018-03-10 16:05:06 +01:00
|
|
|
func NewScreenFramebufferImage(width, height int) *Image {
|
2019-08-24 17:43:26 +02:00
|
|
|
// Actual allocation is done lazily.
|
2018-03-10 16:07:32 +01:00
|
|
|
i := &Image{
|
2019-08-24 17:43:26 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
screen: true,
|
2018-07-24 15:25:15 +02:00
|
|
|
neverShared: true,
|
2018-03-10 15:48:10 +01:00
|
|
|
}
|
2018-03-10 16:07:32 +01:00
|
|
|
return i
|
2018-03-10 15:48:10 +01:00
|
|
|
}
|
2018-03-25 16:37:32 +02:00
|
|
|
|
2019-08-12 17:18:49 +02:00
|
|
|
func EndFrame() error {
|
2018-03-25 16:37:32 +02:00
|
|
|
backendsM.Lock()
|
2019-08-25 17:32:30 +02:00
|
|
|
|
2018-07-11 19:11:18 +02:00
|
|
|
restorable.ResolveStaleImages()
|
2019-08-12 17:18:49 +02:00
|
|
|
return restorable.Error()
|
2018-03-25 16:37:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-12 17:18:49 +02:00
|
|
|
func BeginFrame() error {
|
2019-08-25 17:32:30 +02:00
|
|
|
defer backendsM.Unlock()
|
2019-08-25 10:28:59 +02:00
|
|
|
|
|
|
|
var err error
|
|
|
|
initOnce.Do(func() {
|
|
|
|
err = restorable.InitializeGraphicsDriverState()
|
2019-08-25 10:32:32 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(theBackends) != 0 {
|
|
|
|
panic("shareable: all the images must be not-shared before the game starts")
|
|
|
|
}
|
|
|
|
if graphicsDriver.HasHighPrecisionFloat() {
|
|
|
|
minSize = 1024
|
|
|
|
// Use 4096 as a maximum size whatever size the graphics driver accepts. There are
|
|
|
|
// not enough evidences that bigger textures works correctly.
|
|
|
|
maxSize = min(4096, graphicsDriver.MaxImageSize())
|
|
|
|
} else {
|
|
|
|
minSize = 512
|
|
|
|
maxSize = 512
|
|
|
|
}
|
2019-08-25 10:28:59 +02:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-05-26 14:10:25 +02:00
|
|
|
return restorable.RestoreIfNeeded()
|
2018-03-25 16:37:32 +02:00
|
|
|
}
|
2018-04-05 18:12:08 +02:00
|
|
|
|
2019-07-19 16:29:19 +02:00
|
|
|
func DumpImages(dir string) error {
|
2018-04-28 14:49:00 +02:00
|
|
|
backendsM.Lock()
|
|
|
|
defer backendsM.Unlock()
|
2019-07-19 16:29:19 +02:00
|
|
|
return restorable.DumpImages(dir)
|
2018-04-28 14:49:00 +02:00
|
|
|
}
|