mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
98 lines
2.3 KiB
Go
98 lines
2.3 KiB
Go
// Package d2debugutil provides debug utilities
|
|
package d2debugutil
|
|
|
|
import (
|
|
"image"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2debugutil/internal/assets"
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
)
|
|
|
|
const (
|
|
cw = assets.CharWidth
|
|
ch = assets.CharHeight
|
|
)
|
|
|
|
// DebugPrinter is the global debug printer
|
|
var DebugPrinter = NewDebugPrinter() //nolint:gochecknoglobals // currently global by design
|
|
|
|
// NewDebugPrinter creates a new debug printer
|
|
func NewDebugPrinter() *GlyphPrinter {
|
|
img, err := ebiten.NewImageFromImage(assets.CreateTextImage(), ebiten.FilterDefault)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
|
|
printer := &GlyphPrinter{
|
|
glyphImageTable: img,
|
|
glyphs: make(map[rune]*ebiten.Image),
|
|
}
|
|
|
|
return printer
|
|
}
|
|
|
|
// GlyphPrinter uses an image containing glyphs to draw text onto ebiten images
|
|
type GlyphPrinter struct {
|
|
glyphImageTable *ebiten.Image
|
|
glyphs map[rune]*ebiten.Image
|
|
}
|
|
|
|
// Print draws the string str on the image on left top corner.
|
|
//
|
|
// The available runes are in U+0000 to U+00FF, which is C0 Controls and
|
|
// Basic Latin and C1 Controls and Latin-1 Supplement.
|
|
//
|
|
// DebugPrint always returns nil as of 1.5.0-alpha.
|
|
func (p *GlyphPrinter) Print(target *ebiten.Image, str string) error {
|
|
p.PrintAt(target, str, 0, 0)
|
|
return nil
|
|
}
|
|
|
|
// PrintAt draws the string str on the image at (x, y) position.
|
|
// The available runes are in U+0000 to U+00FF, which is C0 Controls and
|
|
// Basic Latin and C1 Controls and Latin-1 Supplement.
|
|
func (p *GlyphPrinter) PrintAt(target *ebiten.Image, str string, x, y int) {
|
|
p.drawDebugText(target, str, x, y, false)
|
|
}
|
|
|
|
func (p *GlyphPrinter) drawDebugText(target *ebiten.Image, str string, ox, oy int, shadow bool) {
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
if shadow {
|
|
op.ColorM.Scale(0, 0, 0, 0.5)
|
|
}
|
|
|
|
x := 0
|
|
y := 0
|
|
|
|
w, _ := p.glyphImageTable.Size()
|
|
|
|
for _, c := range str {
|
|
if c == '\n' {
|
|
x = 0
|
|
y += ch
|
|
|
|
continue
|
|
}
|
|
|
|
s, ok := p.glyphs[c]
|
|
if !ok {
|
|
n := w / cw
|
|
sx := (int(c) % n) * cw
|
|
sy := (int(c) / n) * ch
|
|
rect := image.Rect(sx, sy, sx+cw, sy+ch)
|
|
s = p.glyphImageTable.SubImage(rect).(*ebiten.Image)
|
|
p.glyphs[c] = s
|
|
}
|
|
|
|
op.GeoM.Reset()
|
|
op.GeoM.Translate(float64(x), float64(y))
|
|
op.GeoM.Translate(float64(ox+1), float64(oy))
|
|
|
|
op.CompositeMode = ebiten.CompositeModeLighter
|
|
_ = target.DrawImage(s, op)
|
|
x += cw
|
|
}
|
|
}
|