2019-06-26 15:17:45 +02: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.
|
|
|
|
|
2020-01-07 16:15:46 +01:00
|
|
|
package mipmap
|
2019-06-26 15:17:45 +02:00
|
|
|
|
|
|
|
import (
|
2019-07-30 06:20:41 +02:00
|
|
|
"fmt"
|
2023-04-27 17:55:10 +02:00
|
|
|
"image"
|
2019-06-26 15:17:45 +02:00
|
|
|
"math"
|
|
|
|
|
2022-06-07 16:57:56 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/atlas"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/buffered"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
|
2022-02-06 12:41:32 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
2019-06-26 15:17:45 +02:00
|
|
|
)
|
|
|
|
|
2022-09-27 20:07:38 +02:00
|
|
|
func canUseMipmap(imageType atlas.ImageType) bool {
|
|
|
|
switch imageType {
|
|
|
|
case atlas.ImageTypeRegular, atlas.ImageTypeUnmanaged:
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-26 05:15:23 +02:00
|
|
|
// Mipmap is a set of buffered.Image sorted by the order of mipmap level.
|
2020-01-07 16:15:46 +01:00
|
|
|
// The level 0 image is a regular image and higher-level images are used for mipmap.
|
|
|
|
type Mipmap struct {
|
2022-09-27 20:07:38 +02:00
|
|
|
width int
|
|
|
|
height int
|
|
|
|
imageType atlas.ImageType
|
|
|
|
orig *buffered.Image
|
|
|
|
imgs map[int]*buffered.Image
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
|
|
|
|
2022-06-07 16:57:56 +02:00
|
|
|
func New(width, height int, imageType atlas.ImageType) *Mipmap {
|
2020-01-07 16:15:46 +01:00
|
|
|
return &Mipmap{
|
2022-09-27 20:07:38 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
orig: buffered.NewImage(width, height, imageType),
|
|
|
|
imageType: imageType,
|
2019-09-18 19:13:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 06:10:41 +02:00
|
|
|
func (m *Mipmap) DumpScreenshot(graphicsDriver graphicsdriver.Graphics, name string, blackbg bool) (string, error) {
|
2022-03-19 15:55:14 +01:00
|
|
|
return m.orig.DumpScreenshot(graphicsDriver, name, blackbg)
|
2019-09-18 19:13:11 +02:00
|
|
|
}
|
|
|
|
|
2023-04-27 17:55:10 +02:00
|
|
|
func (m *Mipmap) WritePixels(pix []byte, region image.Rectangle) {
|
|
|
|
m.orig.WritePixels(pix, region)
|
2023-11-03 07:06:22 +01:00
|
|
|
m.deallocateMipmaps()
|
2019-09-18 19:27:20 +02:00
|
|
|
}
|
|
|
|
|
2024-03-26 04:59:31 +01:00
|
|
|
func (m *Mipmap) ReadPixels(graphicsDriver graphicsdriver.Graphics, pixels []byte, region image.Rectangle) (ok bool, err error) {
|
2023-04-27 17:55:10 +02:00
|
|
|
return m.orig.ReadPixels(graphicsDriver, pixels, region)
|
2019-09-18 19:27:20 +02:00
|
|
|
}
|
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
func (m *Mipmap) DrawTriangles(srcs [graphics.ShaderSrcImageCount]*Mipmap, vertices []float32, indices []uint32, blend graphicsdriver.Blend, dstRegion image.Rectangle, srcRegions [graphics.ShaderSrcImageCount]image.Rectangle, shader *atlas.Shader, uniforms []uint32, fillRule graphicsdriver.FillRule, canSkipMipmap bool) {
|
2020-07-28 07:02:46 +02:00
|
|
|
if len(indices) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-16 16:02:33 +02:00
|
|
|
level := 0
|
2022-09-27 20:07:38 +02:00
|
|
|
if !canSkipMipmap && srcs[0] != nil && canUseMipmap(srcs[0].imageType) {
|
2020-07-16 16:02:33 +02:00
|
|
|
level = math.MaxInt32
|
2024-08-11 14:27:10 +02:00
|
|
|
for i := 0; i < len(indices); i += 3 {
|
2024-08-11 15:29:13 +02:00
|
|
|
idx0 := indices[i]
|
|
|
|
idx1 := indices[i+1]
|
|
|
|
idx2 := indices[i+2]
|
|
|
|
dx0 := vertices[graphics.VertexFloatCount*idx0]
|
|
|
|
dy0 := vertices[graphics.VertexFloatCount*idx0+1]
|
|
|
|
sx0 := vertices[graphics.VertexFloatCount*idx0+2]
|
|
|
|
sy0 := vertices[graphics.VertexFloatCount*idx0+3]
|
|
|
|
dx1 := vertices[graphics.VertexFloatCount*idx1]
|
|
|
|
dy1 := vertices[graphics.VertexFloatCount*idx1+1]
|
|
|
|
sx1 := vertices[graphics.VertexFloatCount*idx1+2]
|
|
|
|
sy1 := vertices[graphics.VertexFloatCount*idx1+3]
|
|
|
|
dx2 := vertices[graphics.VertexFloatCount*idx2]
|
|
|
|
dy2 := vertices[graphics.VertexFloatCount*idx2+1]
|
|
|
|
sx2 := vertices[graphics.VertexFloatCount*idx2+2]
|
|
|
|
sy2 := vertices[graphics.VertexFloatCount*idx2+3]
|
2022-10-02 12:14:23 +02:00
|
|
|
if l := mipmapLevelFromDistance(dx0, dy0, dx1, dy1, sx0, sy0, sx1, sy1); level > l {
|
2020-07-16 16:02:33 +02:00
|
|
|
level = l
|
|
|
|
}
|
2022-10-02 12:14:23 +02:00
|
|
|
if l := mipmapLevelFromDistance(dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2); level > l {
|
2020-07-16 16:02:33 +02:00
|
|
|
level = l
|
|
|
|
}
|
2022-10-02 12:14:23 +02:00
|
|
|
if l := mipmapLevelFromDistance(dx2, dy2, dx0, dy0, sx2, sy2, sx0, sy0); level > l {
|
2020-07-16 16:02:33 +02:00
|
|
|
level = l
|
|
|
|
}
|
2020-07-15 15:52:44 +02:00
|
|
|
}
|
2020-07-28 07:02:46 +02:00
|
|
|
if level == math.MaxInt32 {
|
|
|
|
panic("mipmap: level must be calculated at least once but not")
|
|
|
|
}
|
2020-07-15 15:52:44 +02:00
|
|
|
}
|
2020-03-16 17:59:00 +01:00
|
|
|
|
2024-06-09 19:02:47 +02:00
|
|
|
var imgs [graphics.ShaderSrcImageCount]*buffered.Image
|
2020-07-17 18:09:58 +02:00
|
|
|
for i, src := range srcs {
|
|
|
|
if src == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if level != 0 {
|
|
|
|
if img := src.level(level); img != nil {
|
|
|
|
s := float32(pow2(level))
|
2024-08-11 15:33:21 +02:00
|
|
|
for i := 0; i < len(vertices); i += graphics.VertexFloatCount {
|
|
|
|
vertices[i+2] /= s
|
|
|
|
vertices[i+3] /= s
|
2020-07-17 18:09:58 +02:00
|
|
|
}
|
|
|
|
imgs[i] = img
|
|
|
|
continue
|
2020-07-15 15:52:44 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-17 18:09:58 +02:00
|
|
|
imgs[i] = src.orig
|
2020-06-03 18:35:35 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 10:09:47 +01:00
|
|
|
m.orig.DrawTriangles(imgs, vertices, indices, blend, dstRegion, srcRegions, shader, uniforms, fillRule)
|
2023-11-03 07:06:22 +01:00
|
|
|
m.deallocateMipmaps()
|
2019-09-19 04:15:14 +02:00
|
|
|
}
|
|
|
|
|
2021-09-20 16:27:14 +02:00
|
|
|
func (m *Mipmap) setImg(level int, img *buffered.Image) {
|
|
|
|
if m.imgs == nil {
|
|
|
|
m.imgs = map[int]*buffered.Image{}
|
|
|
|
}
|
|
|
|
m.imgs[level] = img
|
|
|
|
}
|
|
|
|
|
2020-07-26 05:15:23 +02:00
|
|
|
func (m *Mipmap) level(level int) *buffered.Image {
|
2019-07-30 06:20:41 +02:00
|
|
|
if level == 0 {
|
2022-04-01 13:11:22 +02:00
|
|
|
panic("mipmap: level must be non-zero at level")
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
|
|
|
|
2022-09-27 20:07:38 +02:00
|
|
|
if !canUseMipmap(m.imageType) {
|
2024-06-30 11:56:07 +02:00
|
|
|
panic("mipmap: mipmap images for a screen image is not implemented yet")
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
|
|
|
|
2020-07-14 17:22:25 +02:00
|
|
|
if img, ok := m.imgs[level]; ok {
|
2019-07-30 10:50:37 +02:00
|
|
|
return img
|
|
|
|
}
|
2019-06-26 15:17:45 +02:00
|
|
|
|
2020-07-26 05:15:23 +02:00
|
|
|
var src *buffered.Image
|
2022-12-02 13:04:03 +01:00
|
|
|
vs := make([]float32, 4*graphics.VertexFloatCount)
|
2019-07-30 06:20:41 +02:00
|
|
|
switch {
|
|
|
|
case level == 1:
|
2019-07-30 10:50:37 +02:00
|
|
|
src = m.orig
|
2024-08-11 17:27:28 +02:00
|
|
|
graphics.QuadVerticesFromSrcAndMatrix(vs, 0, 0, float32(m.width), float32(m.height), 0.5, 0, 0, 0.5, 0, 0, 1, 1, 1, 1)
|
2019-07-30 06:20:41 +02:00
|
|
|
case level > 1:
|
2020-07-14 17:22:25 +02:00
|
|
|
src = m.level(level - 1)
|
2019-07-30 10:50:37 +02:00
|
|
|
if src == nil {
|
2021-09-20 16:27:14 +02:00
|
|
|
m.setImg(level, nil)
|
2019-07-30 10:50:37 +02:00
|
|
|
return nil
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
2020-07-14 17:22:25 +02:00
|
|
|
w := sizeForLevel(m.width, level-1)
|
|
|
|
h := sizeForLevel(m.height, level-1)
|
2024-08-11 17:27:28 +02:00
|
|
|
graphics.QuadVerticesFromSrcAndMatrix(vs, 0, 0, float32(w), float32(h), 0.5, 0, 0, 0.5, 0, 0, 1, 1, 1, 1)
|
2019-07-30 06:20:41 +02:00
|
|
|
default:
|
2022-04-01 13:11:22 +02:00
|
|
|
panic(fmt.Sprintf("mipmap: invalid level: %d", level))
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
2019-07-30 10:50:37 +02:00
|
|
|
is := graphics.QuadIndices()
|
2019-07-30 06:20:41 +02:00
|
|
|
|
2024-01-18 08:08:23 +01:00
|
|
|
w2 := sizeForLevel(m.width, level)
|
|
|
|
h2 := sizeForLevel(m.height, level)
|
2019-09-20 22:56:34 +02:00
|
|
|
if w2 == 0 || h2 == 0 {
|
2021-09-20 16:27:14 +02:00
|
|
|
m.setImg(level, nil)
|
2019-09-20 22:56:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-10-21 04:28:01 +02:00
|
|
|
// buffered.NewImage panics with a too big size when actual allocation happens.
|
|
|
|
// 4096 should be a safe size in most environments (#1399).
|
|
|
|
// Unfortunately a precise max image size cannot be obtained here since this requires GPU access.
|
|
|
|
if w2 > 4096 || h2 > 4096 {
|
2021-09-20 16:27:14 +02:00
|
|
|
m.setImg(level, nil)
|
2020-10-21 04:28:01 +02:00
|
|
|
return nil
|
|
|
|
}
|
2022-09-27 18:40:34 +02:00
|
|
|
|
2022-09-27 20:07:38 +02:00
|
|
|
s := buffered.NewImage(w2, h2, m.imageType)
|
2020-11-07 11:14:06 +01:00
|
|
|
|
2023-09-28 07:29:55 +02:00
|
|
|
dstRegion := image.Rect(0, 0, w2, h2)
|
2024-08-11 15:33:21 +02:00
|
|
|
s.DrawTriangles([graphics.ShaderSrcImageCount]*buffered.Image{src}, vs, is, graphicsdriver.BlendCopy, dstRegion, [graphics.ShaderSrcImageCount]image.Rectangle{}, atlas.LinearFilterShader, nil, graphicsdriver.FillRuleFillAll)
|
2021-09-20 16:27:14 +02:00
|
|
|
m.setImg(level, s)
|
2019-09-20 22:56:34 +02:00
|
|
|
|
2020-07-14 17:22:25 +02:00
|
|
|
return m.imgs[level]
|
2019-09-20 22:56:34 +02:00
|
|
|
}
|
|
|
|
|
2020-07-14 17:22:25 +02:00
|
|
|
func sizeForLevel(x int, level int) int {
|
2020-10-30 18:52:38 +01:00
|
|
|
for i := 0; i < level; i++ {
|
|
|
|
x /= 2
|
|
|
|
if x == 0 {
|
|
|
|
return 0
|
2019-07-31 02:20:24 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-14 17:22:25 +02:00
|
|
|
return x
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
|
|
|
|
2023-11-03 07:06:22 +01:00
|
|
|
func (m *Mipmap) Deallocate() {
|
|
|
|
m.deallocateMipmaps()
|
|
|
|
m.orig.Deallocate()
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
|
|
|
|
2023-11-03 07:06:22 +01:00
|
|
|
func (m *Mipmap) deallocateMipmaps() {
|
2020-07-14 17:22:25 +02:00
|
|
|
for _, img := range m.imgs {
|
2020-10-21 04:28:01 +02:00
|
|
|
if img != nil {
|
2023-11-03 07:06:22 +01:00
|
|
|
img.Deallocate()
|
2020-10-21 04:28:01 +02:00
|
|
|
}
|
2019-06-26 15:17:45 +02:00
|
|
|
}
|
|
|
|
for k := range m.imgs {
|
|
|
|
delete(m.imgs, k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:52:44 +02:00
|
|
|
// mipmapLevel returns an appropriate mipmap level for the given distance.
|
2022-10-02 12:14:23 +02:00
|
|
|
func mipmapLevelFromDistance(dx0, dy0, dx1, dy1, sx0, sy0, sx1, sy1 float32) int {
|
2020-10-21 04:28:01 +02:00
|
|
|
const maxLevel = 6
|
2020-10-21 03:38:10 +02:00
|
|
|
|
2020-07-15 15:52:44 +02:00
|
|
|
d := (dx1-dx0)*(dx1-dx0) + (dy1-dy0)*(dy1-dy0)
|
|
|
|
s := (sx1-sx0)*(sx1-sx0) + (sy1-sy0)*(sy1-sy0)
|
2020-07-15 19:59:50 +02:00
|
|
|
if s == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
2020-07-15 15:52:44 +02:00
|
|
|
scale := d / s
|
|
|
|
|
2020-10-21 03:38:10 +02:00
|
|
|
// Scale can be infinite when the specified scale is extremely big (#1398).
|
|
|
|
if math.IsInf(float64(scale), 0) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scale can be zero when the specified scale is extremely small (#1398).
|
|
|
|
if scale == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:52:44 +02:00
|
|
|
level := 0
|
|
|
|
for scale < 0.25 {
|
|
|
|
level++
|
|
|
|
scale *= 4
|
|
|
|
}
|
|
|
|
|
2020-07-15 17:52:41 +02:00
|
|
|
if level > 0 {
|
|
|
|
// If the image can be scaled into 0 size, adjust the level. (#839)
|
2020-07-15 15:52:44 +02:00
|
|
|
w, h := int(sx1-sx0), int(sy1-sy0)
|
2020-07-15 17:52:41 +02:00
|
|
|
for level >= 0 {
|
|
|
|
s := 1 << uint(level)
|
2020-07-15 15:52:44 +02:00
|
|
|
if (w > 0 && w/s == 0) || (h > 0 && h/s == 0) {
|
2020-07-15 17:52:41 +02:00
|
|
|
level--
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if level < 0 {
|
|
|
|
// As the render source is too small, nothing is rendered.
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 04:28:01 +02:00
|
|
|
if level > maxLevel {
|
|
|
|
level = maxLevel
|
2020-07-15 17:52:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return level
|
2019-07-30 06:20:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func pow2(power int) float32 {
|
2020-10-30 18:52:38 +01:00
|
|
|
x := 1
|
|
|
|
return float32(x << uint(power))
|
2019-07-30 06:20:41 +02:00
|
|
|
}
|