2023-11-11 11:04:13 +01:00
|
|
|
// Copyright 2023 The Ebitengine 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 text
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"golang.org/x/image/math/fixed"
|
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/hook"
|
|
|
|
)
|
|
|
|
|
|
|
|
var monotonicClock int64
|
|
|
|
|
|
|
|
const infTime = math.MaxInt64
|
|
|
|
|
|
|
|
func now() int64 {
|
|
|
|
return monotonicClock
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
hook.AppendHookOnBeforeUpdate(func() error {
|
|
|
|
monotonicClock++
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-11-12 09:47:31 +01:00
|
|
|
type faceCacheKey struct {
|
|
|
|
stdFaceID uint64
|
|
|
|
|
|
|
|
goTextFaceSourceID uint64
|
|
|
|
goTextFaceDirection Direction
|
|
|
|
goTextFaceSizeInPoints float64
|
|
|
|
goTextFaceLanguage string
|
|
|
|
goTextFaceScript string
|
|
|
|
goTextFaceVariations string
|
|
|
|
goTextFaceFeatures string
|
|
|
|
}
|
|
|
|
|
2023-11-11 11:04:13 +01:00
|
|
|
type glyphImageCacheKey struct {
|
2023-11-12 09:47:31 +01:00
|
|
|
// id is rune for StdFace, and GID for GoTextFace.
|
|
|
|
id uint32
|
|
|
|
|
2023-11-11 11:04:13 +01:00
|
|
|
xoffset fixed.Int26_6
|
2023-11-12 09:47:31 +01:00
|
|
|
yoffset fixed.Int26_6
|
2023-11-11 11:04:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type glyphImageCacheEntry struct {
|
|
|
|
image *ebiten.Image
|
|
|
|
atime int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type glyphImageCache struct {
|
2023-11-12 10:46:22 +01:00
|
|
|
cache map[faceCacheKey]map[glyphImageCacheKey]*glyphImageCacheEntry
|
2023-11-11 11:04:13 +01:00
|
|
|
m sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
var theGlyphImageCache glyphImageCache
|
|
|
|
|
|
|
|
func (g *glyphImageCache) getOrCreate(face Face, key glyphImageCacheKey, create func() *ebiten.Image) *ebiten.Image {
|
|
|
|
g.m.Lock()
|
|
|
|
defer g.m.Unlock()
|
|
|
|
|
2023-11-12 10:46:22 +01:00
|
|
|
e, ok := g.cache[face.faceCacheKey()][key]
|
2023-11-11 11:04:13 +01:00
|
|
|
if ok {
|
|
|
|
e.atime = now()
|
|
|
|
return e.image
|
|
|
|
}
|
|
|
|
|
|
|
|
if g.cache == nil {
|
2023-11-12 10:46:22 +01:00
|
|
|
g.cache = map[faceCacheKey]map[glyphImageCacheKey]*glyphImageCacheEntry{}
|
2023-11-11 11:04:13 +01:00
|
|
|
}
|
2023-11-12 10:46:22 +01:00
|
|
|
faceCacheKey := face.faceCacheKey()
|
|
|
|
if g.cache[faceCacheKey] == nil {
|
|
|
|
g.cache[faceCacheKey] = map[glyphImageCacheKey]*glyphImageCacheEntry{}
|
2023-11-11 11:04:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
img := create()
|
|
|
|
e = &glyphImageCacheEntry{
|
|
|
|
image: img,
|
|
|
|
}
|
|
|
|
if img != nil {
|
|
|
|
e.atime = now()
|
|
|
|
} else {
|
|
|
|
// If the glyph image is nil, the entry doesn't have to be removed.
|
|
|
|
// Keep this until the face is GCed.
|
|
|
|
e.atime = infTime
|
|
|
|
}
|
2023-11-12 10:46:22 +01:00
|
|
|
g.cache[faceCacheKey][key] = e
|
2023-11-11 11:04:13 +01:00
|
|
|
|
|
|
|
// Clean up old entries.
|
|
|
|
|
|
|
|
// cacheSoftLimit indicates the soft limit of the number of glyphs in the cache.
|
|
|
|
// If the number of glyphs exceeds this soft limits, old glyphs are removed.
|
|
|
|
// Even after cleaning up the cache, the number of glyphs might still exceed the soft limit, but
|
|
|
|
// this is fine.
|
|
|
|
const cacheSoftLimit = 512
|
2023-11-12 10:46:22 +01:00
|
|
|
if len(g.cache[faceCacheKey]) > cacheSoftLimit {
|
|
|
|
for key, e := range g.cache[faceCacheKey] {
|
2023-11-11 11:04:13 +01:00
|
|
|
// 60 is an arbitrary number.
|
|
|
|
if e.atime >= now()-60 {
|
|
|
|
continue
|
|
|
|
}
|
2023-11-12 10:46:22 +01:00
|
|
|
delete(g.cache[faceCacheKey], key)
|
2023-11-11 11:04:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return img
|
|
|
|
}
|
|
|
|
|
2023-11-12 09:47:31 +01:00
|
|
|
func (g *glyphImageCache) clear(comp func(key faceCacheKey) bool) {
|
2023-11-11 11:04:13 +01:00
|
|
|
g.m.Lock()
|
|
|
|
defer g.m.Unlock()
|
2023-11-12 09:47:31 +01:00
|
|
|
|
|
|
|
for key := range g.cache {
|
|
|
|
if comp(key) {
|
|
|
|
delete(g.cache, key)
|
|
|
|
}
|
|
|
|
}
|
2023-11-11 11:04:13 +01:00
|
|
|
}
|