ebiten/internal/restorable/images.go

141 lines
3.1 KiB
Go
Raw Normal View History

// Copyright 2017 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.
package restorable
import (
2017-05-26 19:37:01 +02:00
"github.com/hajimehoshi/ebiten/internal/sync"
)
type images struct {
images map[*Image]struct{}
lastChecked *Image
2017-05-31 18:27:56 +02:00
m sync.Mutex
}
var theImages = &images{
images: map[*Image]struct{}{},
}
func ResolveStalePixels() error {
return theImages.resolveStalePixels()
2017-05-03 17:08:07 +02:00
}
func Restore() error {
return theImages.restore()
2017-05-03 17:08:07 +02:00
}
func ClearVolatileImages() {
theImages.clearVolatileImages()
}
2017-05-03 16:15:18 +02:00
func (i *images) add(img *Image) {
i.m.Lock()
defer i.m.Unlock()
i.images[img] = struct{}{}
}
2017-05-03 16:24:00 +02:00
func (i *images) remove(img *Image) {
i.m.Lock()
defer i.m.Unlock()
delete(i.images, img)
}
func (i *images) resolveStalePixels() error {
i.m.Lock()
defer i.m.Unlock()
i.lastChecked = nil
for img := range i.images {
if err := img.resolveStalePixels(); err != nil {
return err
}
}
return nil
}
func (i *images) resetPixelsIfDependingOn(target *Image) {
2017-05-27 14:35:38 +02:00
// Avoid defer for performance
i.m.Lock()
if target == nil {
// disposed
2017-05-27 14:35:38 +02:00
i.m.Unlock()
return
}
if i.lastChecked == target {
2017-05-27 14:35:38 +02:00
i.m.Unlock()
return
}
i.lastChecked = target
for img := range i.images {
2017-05-29 20:31:29 +02:00
// TODO: This seems not enough: What if img becomes stale but what about
// other images depend on img? (#357)
2017-05-03 16:18:35 +02:00
img.makeStaleIfDependingOn(target)
}
2017-05-27 14:35:38 +02:00
i.m.Unlock()
}
func (i *images) restore() error {
i.m.Lock()
defer i.m.Unlock()
// Framebuffers/textures cannot be disposed since framebuffers/textures that
// don't belong to the current context.
// Let's do topological sort based on dependencies of drawing history.
// There should not be a loop since cyclic drawing makes images stale.
current := map[*Image]struct{}{}
toBeDetermined := map[*Image]struct{}{}
sorted := []*Image{}
for img := range i.images {
if img.hasDependency() {
toBeDetermined[img] = struct{}{}
continue
}
current[img] = struct{}{}
sorted = append(sorted, img)
}
// TODO: How to confirm that there is no loop?
for len(current) > 0 {
next := map[*Image]struct{}{}
for source := range current {
for target := range toBeDetermined {
if target.dependsOn(source) {
next[target] = struct{}{}
}
}
}
for img := range next {
sorted = append(sorted, img)
delete(toBeDetermined, img)
}
current = next
}
if len(toBeDetermined) > 0 {
panic("not reached")
}
for _, img := range sorted {
if err := img.restore(); err != nil {
return err
}
}
return nil
}
2017-05-03 17:08:07 +02:00
func (i *images) clearVolatileImages() {
i.m.Lock()
defer i.m.Unlock()
for img := range i.images {
2017-05-03 16:18:35 +02:00
img.clearIfVolatile()
}
}