ebiten/internal/shareable/shareable.go

206 lines
4.5 KiB
Go
Raw Normal View History

// 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
import (
"fmt"
"image/color"
"github.com/hajimehoshi/ebiten/internal/affine"
"github.com/hajimehoshi/ebiten/internal/graphics"
"github.com/hajimehoshi/ebiten/internal/opengl"
2018-03-05 16:38:56 +01:00
"github.com/hajimehoshi/ebiten/internal/packing"
"github.com/hajimehoshi/ebiten/internal/restorable"
"github.com/hajimehoshi/ebiten/internal/sync"
)
2018-03-10 16:02:23 +01:00
type backend struct {
restorable *restorable.Image
page *packing.Page
}
var (
2018-03-10 16:02:23 +01:00
// theBackends is a set of actually shared images.
theBackends = []*backend{}
)
2018-03-10 15:48:10 +01:00
type ImagePart struct {
2018-03-10 16:02:23 +01:00
backend *backend
// If node is nil, the image is not shared.
node *packing.Node
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) ensureNotShared() {
if s.node == nil {
return
}
x, y, w, h := s.region()
newImg := restorable.NewImage(w, h, false)
2018-03-10 16:02:23 +01:00
newImg.DrawImage(s.backend.restorable, x, y, w, h, nil, nil, opengl.CompositeModeCopy, graphics.FilterNearest)
s.Dispose()
2018-03-10 16:02:23 +01:00
s.backend = &backend{
restorable: newImg,
}
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) region() (x, y, width, height int) {
if s.node == nil {
2018-03-10 16:02:23 +01:00
w, h := s.backend.restorable.Size()
return 0, 0, w, h
}
return s.node.Region()
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) Size() (width, height int) {
_, _, w, h := s.region()
return w, h
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) DrawImage(img *ImagePart, sx0, sy0, sx1, sy1 int, geom *affine.GeoM, colorm *affine.ColorM, mode opengl.CompositeMode, filter graphics.Filter) {
s.ensureNotShared()
// Compare i and img after ensuring i is not shared, or
// i and img might share the same texture even though i != img.
2018-03-10 16:02:23 +01:00
if s.backend.restorable == img.backend.restorable {
2018-03-10 15:48:10 +01:00
panic("shareable: Image.DrawImage: img must be different from the receiver")
}
dx, dy, _, _ := img.region()
sx0 += dx
sy0 += dy
sx1 += dx
sy1 += dy
2018-03-10 16:02:23 +01:00
s.backend.restorable.DrawImage(img.backend.restorable, sx0, sy0, sx1, sy1, geom, colorm, mode, filter)
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) ReplacePixels(p []byte) {
x, y, w, h := s.region()
if l := 4 * w * h; len(p) != l {
2018-03-10 15:48:10 +01:00
panic(fmt.Sprintf("shareable: len(p) was %d but must be %d", len(p), l))
}
2018-03-10 16:02:23 +01:00
s.backend.restorable.ReplacePixels(p, x, y, w, h)
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) At(x, y int) (color.Color, error) {
ox, oy, w, h := s.region()
if x < 0 || y < 0 || x >= w || y >= h {
return color.RGBA{}, nil
}
2018-03-10 16:02:23 +01:00
return s.backend.restorable.At(x+ox, y+oy)
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) isDisposed() bool {
2018-03-10 16:02:23 +01:00
return s.backend == nil
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) Dispose() {
if s.isDisposed() {
return
}
defer func() {
2018-03-10 16:02:23 +01:00
s.backend = nil
s.node = nil
}()
if s.node == nil {
2018-03-10 16:02:23 +01:00
s.backend.restorable.Dispose()
return
}
2018-03-10 16:02:23 +01:00
s.backend.page.Free(s.node)
if !s.backend.page.IsEmpty() {
return
}
index := -1
2018-03-10 16:02:23 +01:00
for i, sh := range theBackends {
if sh == s.backend {
index = i
break
}
}
if index == -1 {
panic("not reached")
}
2018-03-10 16:02:23 +01:00
theBackends = append(theBackends[:index], theBackends[index+1:]...)
}
2018-03-10 15:48:10 +01:00
func (s *ImagePart) IsInvalidated() (bool, error) {
2018-03-10 16:02:23 +01:00
return s.backend.restorable.IsInvalidated()
}
var shareableImageLock sync.Mutex
2018-03-10 15:48:10 +01:00
func NewImagePart(width, height int) *ImagePart {
const maxSize = 2048
shareableImageLock.Lock()
defer shareableImageLock.Unlock()
if width > maxSize || height > maxSize {
2018-03-10 16:02:23 +01:00
s := &backend{
restorable: restorable.NewImage(width, height, false),
}
2018-03-10 15:48:10 +01:00
return &ImagePart{
2018-03-10 16:02:23 +01:00
backend: s,
}
}
2018-03-10 16:02:23 +01:00
for _, s := range theBackends {
if n := s.page.Alloc(width, height); n != nil {
2018-03-10 15:48:10 +01:00
return &ImagePart{
2018-03-10 16:02:23 +01:00
backend: s,
node: n,
}
}
}
2018-03-10 16:02:23 +01:00
s := &backend{
restorable: restorable.NewImage(maxSize, maxSize, false),
page: packing.NewPage(maxSize),
2018-03-06 18:18:08 +01:00
}
2018-03-10 16:02:23 +01:00
theBackends = append(theBackends, s)
n := s.page.Alloc(width, height)
if n == nil {
panic("not reached")
}
2018-03-10 15:48:10 +01:00
return &ImagePart{
2018-03-10 16:02:23 +01:00
backend: s,
node: n,
}
}
2018-03-10 15:48:10 +01:00
func NewVolatileImagePart(width, height int) *ImagePart {
r := restorable.NewImage(width, height, true)
return &ImagePart{
2018-03-10 16:02:23 +01:00
backend: &backend{
2018-03-10 15:48:10 +01:00
restorable: r,
},
}
}
func NewScreenFramebufferImagePart(width, height int) *ImagePart {
r := restorable.NewScreenFramebufferImage(width, height)
return &ImagePart{
2018-03-10 16:02:23 +01:00
backend: &backend{
2018-03-10 15:48:10 +01:00
restorable: r,
},
}
}