2019-07-17 16:03:14 +02:00
|
|
|
// Copyright 2019 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 (
|
|
|
|
"fmt"
|
|
|
|
"image"
|
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicscommand"
|
2019-07-17 16:03:14 +02:00
|
|
|
)
|
|
|
|
|
2022-03-20 15:00:00 +01:00
|
|
|
type pixelsRecord struct {
|
|
|
|
rect image.Rectangle
|
|
|
|
pix []byte
|
|
|
|
}
|
|
|
|
|
2022-03-20 17:26:48 +01:00
|
|
|
func (p *pixelsRecord) clearIfOverlapped(rect image.Rectangle) {
|
2022-03-20 15:00:00 +01:00
|
|
|
r := p.rect.Intersect(rect)
|
|
|
|
ox := r.Min.X - p.rect.Min.X
|
|
|
|
oy := r.Min.Y - p.rect.Min.Y
|
|
|
|
w := p.rect.Dx()
|
|
|
|
for j := 0; j < r.Dy(); j++ {
|
|
|
|
for i := 0; i < r.Dx(); i++ {
|
|
|
|
idx := 4 * ((oy+j)*w + ox + i)
|
|
|
|
p.pix[idx] = 0
|
|
|
|
p.pix[idx+1] = 0
|
|
|
|
p.pix[idx+2] = 0
|
|
|
|
p.pix[idx+3] = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-17 16:03:14 +02:00
|
|
|
|
2022-08-05 14:40:38 +02:00
|
|
|
func (p *pixelsRecord) readPixels(pixels []byte, x, y, width, height, imageWidth, imageHeight int) {
|
|
|
|
r := p.rect.Intersect(image.Rect(x, y, x+width, y+height)).Intersect(image.Rect(0, 0, imageWidth, imageHeight))
|
|
|
|
if r.Empty() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dstBaseX := r.Min.X - x
|
|
|
|
dstBaseY := r.Min.Y - y
|
|
|
|
srcBaseX := r.Min.X - p.rect.Min.X
|
|
|
|
srcBaseY := r.Min.Y - p.rect.Min.Y
|
|
|
|
lineWidth := 4 * r.Dx()
|
|
|
|
for j := 0; j < r.Dy(); j++ {
|
|
|
|
dstX := 4 * ((dstBaseY+j)*width + dstBaseX)
|
|
|
|
srcX := 4 * ((srcBaseY+j)*p.rect.Dx() + srcBaseX)
|
|
|
|
copy(pixels[dstX:dstX+lineWidth], p.pix[srcX:srcX+lineWidth])
|
2022-03-20 17:26:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-20 15:00:00 +01:00
|
|
|
type pixelsRecords struct {
|
|
|
|
records []*pixelsRecord
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
|
|
|
|
2022-07-05 06:26:45 +02:00
|
|
|
func (pr *pixelsRecords) addOrReplace(pixels []byte, x, y, width, height int) {
|
2019-07-17 16:03:14 +02:00
|
|
|
if len(pixels) != 4*width*height {
|
2020-12-05 11:56:00 +01:00
|
|
|
msg := fmt.Sprintf("restorable: len(pixels) must be 4*%d*%d = %d but %d", width, height, 4*width*height, len(pixels))
|
|
|
|
if pixels == nil {
|
|
|
|
msg += " (nil)"
|
|
|
|
}
|
|
|
|
panic(msg)
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
|
|
|
|
2022-03-20 15:00:00 +01:00
|
|
|
rect := image.Rect(x, y, x+width, y+height)
|
2022-03-20 18:08:37 +01:00
|
|
|
|
|
|
|
// Remove or update the duplicated records first.
|
2022-03-20 15:00:00 +01:00
|
|
|
var n int
|
|
|
|
for _, r := range pr.records {
|
|
|
|
if r.rect.In(rect) {
|
|
|
|
continue
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
2022-03-20 15:00:00 +01:00
|
|
|
pr.records[n] = r
|
|
|
|
n++
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
2022-03-20 15:00:00 +01:00
|
|
|
for i := n; i < len(pr.records); i++ {
|
|
|
|
pr.records[i] = nil
|
2019-10-03 19:02:33 +02:00
|
|
|
}
|
2022-03-20 15:00:00 +01:00
|
|
|
pr.records = pr.records[:n]
|
2019-07-17 16:03:14 +02:00
|
|
|
|
2022-03-20 15:00:00 +01:00
|
|
|
// Add the new record.
|
|
|
|
pr.records = append(pr.records, &pixelsRecord{
|
|
|
|
rect: rect,
|
|
|
|
pix: pixels,
|
|
|
|
})
|
|
|
|
}
|
2019-07-17 16:03:14 +02:00
|
|
|
|
2022-03-20 15:00:00 +01:00
|
|
|
func (pr *pixelsRecords) clear(x, y, width, height int) {
|
2019-07-17 16:03:14 +02:00
|
|
|
newr := image.Rect(x, y, x+width, y+height)
|
2022-03-20 15:00:00 +01:00
|
|
|
var n int
|
|
|
|
for _, r := range pr.records {
|
|
|
|
if r.rect.In(newr) {
|
|
|
|
continue
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
2022-03-20 17:26:48 +01:00
|
|
|
r.clearIfOverlapped(newr)
|
2022-03-20 15:00:00 +01:00
|
|
|
pr.records[n] = r
|
|
|
|
n++
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
2022-03-20 15:00:00 +01:00
|
|
|
for i := n; i < len(pr.records); i++ {
|
|
|
|
pr.records[i] = nil
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
2022-03-20 15:00:00 +01:00
|
|
|
pr.records = pr.records[:n]
|
|
|
|
}
|
2019-07-17 16:03:14 +02:00
|
|
|
|
2022-08-05 14:40:38 +02:00
|
|
|
func (pr *pixelsRecords) readPixels(pixels []byte, x, y, width, height, imageWidth, imageHeight int) {
|
|
|
|
for i := range pixels {
|
|
|
|
pixels[i] = 0
|
|
|
|
}
|
|
|
|
for _, r := range pr.records {
|
|
|
|
r.readPixels(pixels, x, y, width, height, imageWidth, imageHeight)
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-20 15:00:00 +01:00
|
|
|
func (pr *pixelsRecords) apply(img *graphicscommand.Image) {
|
2019-07-17 16:03:14 +02:00
|
|
|
// TODO: Isn't this too heavy? Can we merge the operations?
|
2022-03-20 15:00:00 +01:00
|
|
|
for _, r := range pr.records {
|
2022-08-07 20:02:12 +02:00
|
|
|
img.WritePixels(r.pix, r.rect.Min.X, r.rect.Min.Y, r.rect.Dx(), r.rect.Dy())
|
2019-07-17 16:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-27 14:22:31 +02:00
|
|
|
|
|
|
|
func (pr *pixelsRecords) region() image.Rectangle {
|
|
|
|
var rect image.Rectangle
|
|
|
|
for _, r := range pr.records {
|
|
|
|
rect = rect.Union(r.rect)
|
|
|
|
}
|
|
|
|
return rect
|
|
|
|
}
|