2019-10-25 19:37:04 -04:00
|
|
|
package UI
|
|
|
|
|
|
|
|
import (
|
2019-10-25 22:20:36 -04:00
|
|
|
"image/color"
|
|
|
|
|
2019-10-25 19:37:04 -04:00
|
|
|
"github.com/essial/OpenDiablo2/Common"
|
|
|
|
"github.com/essial/OpenDiablo2/Palettes"
|
2019-10-25 22:20:36 -04:00
|
|
|
"github.com/hajimehoshi/ebiten"
|
2019-10-25 19:37:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var fontCache = map[string]*Font{}
|
|
|
|
|
|
|
|
// FontSize represents the size of a character in a font
|
|
|
|
type FontSize struct {
|
|
|
|
Width uint8
|
|
|
|
Height uint8
|
|
|
|
}
|
|
|
|
|
|
|
|
// Font represents a font
|
|
|
|
type Font struct {
|
2019-10-25 22:20:36 -04:00
|
|
|
fontSprite *Common.Sprite
|
|
|
|
metrics map[uint8]FontSize
|
2019-10-25 19:37:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetFont creates or loads an existing font
|
|
|
|
func GetFont(font string, palette Palettes.Palette, fileProvider Common.FileProvider) *Font {
|
|
|
|
cacheItem, exists := fontCache[font+"_"+string(palette)]
|
|
|
|
if exists {
|
|
|
|
return cacheItem
|
|
|
|
}
|
|
|
|
newFont := CreateFont(font, palette, fileProvider)
|
|
|
|
fontCache[font+"_"+string(palette)] = newFont
|
|
|
|
return newFont
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateFont creates an instance of a MPQ Font
|
|
|
|
func CreateFont(font string, palette Palettes.Palette, fileProvider Common.FileProvider) *Font {
|
|
|
|
result := &Font{
|
2019-10-25 22:20:36 -04:00
|
|
|
metrics: make(map[uint8]FontSize),
|
2019-10-25 19:37:04 -04:00
|
|
|
}
|
2019-10-25 22:20:36 -04:00
|
|
|
result.fontSprite = fileProvider.LoadSprite(font+".dc6", palette)
|
2019-10-25 19:37:04 -04:00
|
|
|
woo := "Woo!\x01"
|
|
|
|
fontData := fileProvider.LoadFile(font + ".tbl")
|
|
|
|
if string(fontData[0:5]) != woo {
|
|
|
|
panic("No woo :(")
|
|
|
|
}
|
|
|
|
for i := 12; i < len(fontData); i += 14 {
|
|
|
|
fontSize := FontSize{
|
|
|
|
Width: fontData[i+3],
|
|
|
|
Height: fontData[i+4],
|
|
|
|
}
|
2019-10-25 22:20:36 -04:00
|
|
|
result.metrics[fontData[i+8]] = fontSize
|
2019-10-25 19:37:04 -04:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2019-10-25 22:20:36 -04:00
|
|
|
|
|
|
|
// GetTextMetrics returns the size of the specified text
|
|
|
|
func (v *Font) GetTextMetrics(text string) (width, height uint32) {
|
|
|
|
width = uint32(0)
|
|
|
|
height = uint32(0)
|
2019-10-26 02:11:28 -04:00
|
|
|
for i := 0; i < len(text); i++ {
|
|
|
|
ch := text[i]
|
2019-10-25 22:20:36 -04:00
|
|
|
metric := v.metrics[uint8(ch)]
|
|
|
|
width += uint32(metric.Width)
|
2019-10-26 00:06:54 -04:00
|
|
|
_, h := v.fontSprite.GetFrameSize(int(ch))
|
|
|
|
height = Common.Max(height, h)
|
2019-10-25 22:20:36 -04:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw draws the font on the target surface
|
|
|
|
func (v *Font) Draw(x, y int, text string, color color.Color, target *ebiten.Image) {
|
|
|
|
v.fontSprite.ColorMod = color
|
2019-10-26 00:06:54 -04:00
|
|
|
v.fontSprite.Blend = false
|
2019-10-25 22:20:36 -04:00
|
|
|
_, height := v.GetTextMetrics(text)
|
|
|
|
for _, ch := range text {
|
|
|
|
char := uint8(ch)
|
|
|
|
metric := v.metrics[char]
|
|
|
|
v.fontSprite.Frame = char
|
|
|
|
v.fontSprite.MoveTo(x, y+int(height))
|
|
|
|
v.fontSprite.Draw(target)
|
|
|
|
x += int(metric.Width)
|
|
|
|
}
|
|
|
|
}
|