2017-05-03 16:11:43 +02:00
|
|
|
// 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 (
|
2019-07-19 18:42:19 +02:00
|
|
|
"path/filepath"
|
|
|
|
|
2018-10-28 12:10:05 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphicscommand"
|
2017-05-03 16:11:43 +02:00
|
|
|
)
|
|
|
|
|
2019-05-26 12:08:46 +02:00
|
|
|
// forceRestoring reports whether restoring forcely happens or not.
|
2019-05-26 14:40:10 +02:00
|
|
|
var forceRestoring = false
|
2019-05-26 12:08:46 +02:00
|
|
|
|
2019-05-26 14:10:25 +02:00
|
|
|
// needsRestoring reports whether restoring process works or not.
|
|
|
|
func needsRestoring() bool {
|
2019-05-26 12:08:46 +02:00
|
|
|
if forceRestoring {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return graphicscommand.NeedsRestoring()
|
2017-07-02 08:58:00 +02:00
|
|
|
}
|
|
|
|
|
2017-09-11 20:12:17 +02:00
|
|
|
// EnableRestoringForTesting forces to enable restoring for testing.
|
2017-07-02 08:58:00 +02:00
|
|
|
func EnableRestoringForTesting() {
|
2019-05-26 12:08:46 +02:00
|
|
|
forceRestoring = true
|
2017-07-02 08:58:00 +02:00
|
|
|
}
|
|
|
|
|
2017-09-11 20:12:17 +02:00
|
|
|
// images is a set of Image objects.
|
2017-05-03 16:11:43 +02:00
|
|
|
type images struct {
|
2017-09-14 17:24:18 +02:00
|
|
|
images map[*Image]struct{}
|
|
|
|
lastTarget *Image
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// theImages represents the images for the current process.
|
2017-05-03 16:11:43 +02:00
|
|
|
var theImages = &images{
|
2019-08-12 13:09:17 +02:00
|
|
|
images: map[*Image]struct{}{},
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// ResolveStaleImages flushes the queued draw commands and resolves
|
2017-09-11 20:12:17 +02:00
|
|
|
// all stale images.
|
2017-09-14 17:24:18 +02:00
|
|
|
//
|
|
|
|
// ResolveStaleImages is intended to be called at the end of a frame.
|
2018-07-11 19:11:18 +02:00
|
|
|
func ResolveStaleImages() {
|
2018-10-28 12:10:05 +01:00
|
|
|
graphicscommand.FlushCommands()
|
2019-05-26 14:10:25 +02:00
|
|
|
if !needsRestoring() {
|
2018-07-11 19:11:18 +02:00
|
|
|
return
|
2018-02-22 19:19:20 +01:00
|
|
|
}
|
2018-07-11 19:11:18 +02:00
|
|
|
theImages.resolveStaleImages()
|
2017-05-03 17:08:07 +02:00
|
|
|
}
|
|
|
|
|
2019-05-26 14:10:25 +02:00
|
|
|
// RestoreIfNeeded restores the images.
|
2017-09-14 17:24:18 +02:00
|
|
|
//
|
2018-10-28 12:10:05 +01:00
|
|
|
// Restoring means to make all *graphicscommand.Image objects have their textures and framebuffers.
|
2019-05-26 14:10:25 +02:00
|
|
|
func RestoreIfNeeded() error {
|
|
|
|
if !needsRestoring() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !forceRestoring {
|
|
|
|
r := false
|
|
|
|
// As isInvalidated() is expensive, call this only for one image.
|
|
|
|
// This assumes that if there is one image that is invalidated, all images are invalidated.
|
|
|
|
for img := range theImages.images {
|
2019-05-28 04:26:08 +02:00
|
|
|
// The screen image might not have a texture. Skip this.
|
|
|
|
if img.screen {
|
|
|
|
continue
|
|
|
|
}
|
2019-05-26 14:10:25 +02:00
|
|
|
r = img.isInvalidated()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if !r {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 19:02:08 +01:00
|
|
|
if err := graphicscommand.ResetGraphicsDriverState(); err != nil {
|
2017-08-06 16:00:24 +02:00
|
|
|
return err
|
|
|
|
}
|
2019-08-12 10:45:43 +02:00
|
|
|
theImages.restore()
|
|
|
|
return nil
|
2017-05-03 17:08:07 +02:00
|
|
|
}
|
|
|
|
|
2019-07-19 16:29:19 +02:00
|
|
|
// DumpImages dumps all the current images to the specified directory.
|
2019-07-14 21:14:57 +02:00
|
|
|
//
|
|
|
|
// This is for testing usage.
|
2019-07-19 16:29:19 +02:00
|
|
|
func DumpImages(dir string) error {
|
2019-02-19 02:15:23 +01:00
|
|
|
for img := range theImages.images {
|
2019-07-21 09:38:16 +02:00
|
|
|
if err := img.Dump(filepath.Join(dir, "*.png")); err != nil {
|
2019-07-19 16:29:19 +02:00
|
|
|
return err
|
2018-04-28 14:49:00 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-19 16:29:19 +02:00
|
|
|
return nil
|
2018-04-28 14:49:00 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// add adds img to the images.
|
2017-05-03 16:15:18 +02:00
|
|
|
func (i *images) add(img *Image) {
|
2017-05-03 16:11:43 +02:00
|
|
|
i.images[img] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// remove removes img from the images.
|
2017-05-03 16:24:00 +02:00
|
|
|
func (i *images) remove(img *Image) {
|
2018-03-25 11:21:43 +02:00
|
|
|
i.makeStaleIfDependingOnImpl(img)
|
2017-05-03 16:11:43 +02:00
|
|
|
delete(i.images, img)
|
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// resolveStaleImages resolves stale images.
|
2018-07-11 19:11:18 +02:00
|
|
|
func (i *images) resolveStaleImages() {
|
2017-09-14 17:24:18 +02:00
|
|
|
i.lastTarget = nil
|
2017-05-03 16:11:43 +02:00
|
|
|
for img := range i.images {
|
2018-07-11 19:11:18 +02:00
|
|
|
img.resolveStale()
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// makeStaleIfDependingOn makes all the images stale that depend on target.
|
|
|
|
//
|
|
|
|
// When target is changed, all images depending on target can't be restored with target.
|
|
|
|
// makeStaleIfDependingOn is called in such situation.
|
|
|
|
func (i *images) makeStaleIfDependingOn(target *Image) {
|
2018-03-25 11:21:43 +02:00
|
|
|
// Avoid defer for performance
|
|
|
|
i.makeStaleIfDependingOnImpl(target)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *images) makeStaleIfDependingOnImpl(target *Image) {
|
2017-05-03 16:11:43 +02:00
|
|
|
if target == nil {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("restorable: target must not be nil at makeStaleIfDependingOnImpl")
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
2017-09-14 17:24:18 +02:00
|
|
|
if i.lastTarget == target {
|
2017-05-03 16:11:43 +02:00
|
|
|
return
|
|
|
|
}
|
2017-09-14 17:24:18 +02:00
|
|
|
i.lastTarget = target
|
2017-05-03 16:11:43 +02:00
|
|
|
for img := range i.images {
|
2017-05-03 16:18:35 +02:00
|
|
|
img.makeStaleIfDependingOn(target)
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
// restore restores the images.
|
|
|
|
//
|
2018-10-28 12:10:05 +01:00
|
|
|
// Restoring means to make all *graphicscommand.Image objects have their textures and framebuffers.
|
2019-08-12 10:45:43 +02:00
|
|
|
func (i *images) restore() {
|
2019-05-26 14:10:25 +02:00
|
|
|
if !needsRestoring() {
|
2019-02-07 09:19:24 +01:00
|
|
|
panic("restorable: restore cannot be called when restoring is disabled")
|
2017-07-02 08:58:00 +02:00
|
|
|
}
|
2017-09-14 17:24:18 +02:00
|
|
|
|
2019-08-15 17:36:54 +02:00
|
|
|
// Dispose all the images ahead of restoring. A current texture ID and a new texture ID can be duplicated.
|
|
|
|
// TODO: Write a test to confirm that ID duplication never happens.
|
|
|
|
for i := range i.images {
|
|
|
|
i.image.Dispose()
|
|
|
|
i.image = nil
|
|
|
|
}
|
|
|
|
|
2017-06-01 03:44:28 +02:00
|
|
|
// Let's do topological sort based on dependencies of drawing history.
|
2017-09-14 17:24:18 +02:00
|
|
|
// It is assured that there are not loops since cyclic drawing makes images stale.
|
2017-06-02 19:41:37 +02:00
|
|
|
type edge struct {
|
|
|
|
source *Image
|
|
|
|
target *Image
|
|
|
|
}
|
|
|
|
images := map[*Image]struct{}{}
|
|
|
|
for i := range i.images {
|
2019-01-20 16:36:37 +01:00
|
|
|
if !i.priority {
|
|
|
|
images[i] = struct{}{}
|
|
|
|
}
|
2017-06-02 19:41:37 +02:00
|
|
|
}
|
|
|
|
edges := map[edge]struct{}{}
|
|
|
|
for t := range images {
|
|
|
|
for s := range t.dependingImages() {
|
|
|
|
edges[edge{source: s, target: t}] = struct{}{}
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
|
|
|
}
|
2019-01-20 16:36:37 +01:00
|
|
|
|
2017-06-02 19:41:37 +02:00
|
|
|
sorted := []*Image{}
|
2019-01-20 16:36:37 +01:00
|
|
|
for i := range i.images {
|
|
|
|
if i.priority {
|
|
|
|
sorted = append(sorted, i)
|
|
|
|
}
|
|
|
|
}
|
2017-06-02 19:41:37 +02:00
|
|
|
for len(images) > 0 {
|
|
|
|
// current repesents images that have no incoming edges.
|
|
|
|
current := map[*Image]struct{}{}
|
|
|
|
for i := range images {
|
|
|
|
current[i] = struct{}{}
|
|
|
|
}
|
|
|
|
for e := range edges {
|
|
|
|
if _, ok := current[e.target]; ok {
|
|
|
|
delete(current, e.target)
|
2017-06-01 03:44:28 +02:00
|
|
|
}
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
2017-06-02 19:41:37 +02:00
|
|
|
for i := range current {
|
|
|
|
delete(images, i)
|
|
|
|
sorted = append(sorted, i)
|
|
|
|
}
|
|
|
|
removed := []edge{}
|
|
|
|
for e := range edges {
|
|
|
|
if _, ok := current[e.source]; ok {
|
|
|
|
removed = append(removed, e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, e := range removed {
|
|
|
|
delete(edges, e)
|
2017-06-01 03:44:28 +02:00
|
|
|
}
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
2019-01-20 16:36:37 +01:00
|
|
|
|
2017-06-01 03:44:28 +02:00
|
|
|
for _, img := range sorted {
|
2019-08-15 19:28:59 +02:00
|
|
|
img.restore()
|
2017-05-03 16:11:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 19:02:08 +01:00
|
|
|
// InitializeGraphicsDriverState initializes the graphics driver state.
|
|
|
|
func InitializeGraphicsDriverState() error {
|
|
|
|
return graphicscommand.ResetGraphicsDriverState()
|
2017-08-06 14:24:10 +02:00
|
|
|
}
|
2018-07-11 19:11:18 +02:00
|
|
|
|
|
|
|
func Error() error {
|
2018-10-28 12:10:05 +01:00
|
|
|
return graphicscommand.Error()
|
2018-07-11 19:11:18 +02:00
|
|
|
}
|