mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-10 06:16:27 -05:00
f18ede6e66
* Removing Clone of Font() since all material is sharable, Fixes #515 * Removed Clone() from the Font interface, as deep copies are not needed.
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package d2asset
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common"
|
|
)
|
|
|
|
const (
|
|
fontBudget = 64
|
|
)
|
|
|
|
type fontManager struct {
|
|
cache d2interface.Cache
|
|
}
|
|
|
|
func createFontManager() d2interface.ArchivedFontManager {
|
|
return &fontManager{d2common.CreateCache(fontBudget)}
|
|
}
|
|
|
|
// LoadFont loads a font from the archives managed by the ArchiveManager
|
|
func (fm *fontManager) LoadFont(tablePath, spritePath, palettePath string) (d2interface.Font,
|
|
error) {
|
|
cachePath := fmt.Sprintf("%s;%s;%s", tablePath, spritePath, palettePath)
|
|
if font, found := fm.cache.Retrieve(cachePath); found {
|
|
return font.(d2interface.Font), nil
|
|
}
|
|
|
|
font, err := loadFont(tablePath, spritePath, palettePath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := fm.cache.Insert(cachePath, font, 1); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return font, nil
|
|
}
|
|
|
|
// ClearCache clears the font cache
|
|
func (fm *fontManager) ClearCache() {
|
|
fm.cache.Clear()
|
|
}
|
|
|
|
// GetCache returns the font managers cache
|
|
func (fm *fontManager) GetCache() d2interface.Cache {
|
|
return fm.cache
|
|
}
|