OpenDiablo2/d2core/d2gui/d2gui.go

79 lines
1.4 KiB
Go
Raw Normal View History

2020-02-09 02:02:37 +00:00
package d2gui
import (
"errors"
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2render"
)
var (
ErrWasInit = errors.New("gui system is already initialized")
ErrNotInit = errors.New("gui system is not initialized")
)
var singleton *manager
2020-02-09 02:02:37 +00:00
func Initialize() error {
2020-02-09 19:12:04 +00:00
verifyNotInit()
2020-02-09 02:02:37 +00:00
var err error
if singleton, err = createGuiManager(); err != nil {
return err
}
return nil
}
func Render(target d2render.Surface) error {
2020-02-09 19:12:04 +00:00
verifyWasInit()
2020-02-09 02:02:37 +00:00
return singleton.render(target)
}
func Advance(elapsed float64) error {
2020-02-09 19:12:04 +00:00
verifyWasInit()
2020-02-09 02:02:37 +00:00
return singleton.advance(elapsed)
}
func CreateLayout(positionType PositionType) *Layout {
verifyWasInit()
return createLayout(positionType)
}
func SetLayout(layout *Layout) {
2020-02-09 19:12:04 +00:00
verifyWasInit()
singleton.SetLayout(layout)
2020-02-09 02:02:37 +00:00
}
// ShowLoadScreen renders the loading progress screen. The provided progress argument defines the loading animation's state in the range `[0, 1]`, where `0` is initial frame and `1` is the final frame
2020-02-09 02:02:37 +00:00
func ShowLoadScreen(progress float64) {
2020-02-09 19:12:04 +00:00
verifyWasInit()
2020-02-09 02:02:37 +00:00
singleton.showLoadScreen(progress)
}
func HideLoadScreen() {
2020-02-09 19:12:04 +00:00
verifyWasInit()
2020-02-09 02:02:37 +00:00
singleton.hideLoadScreen()
}
func ShowCursor() {
2020-02-09 19:12:04 +00:00
verifyWasInit()
2020-02-09 02:02:37 +00:00
singleton.showCursor()
}
func HideCursor() {
2020-02-09 19:12:04 +00:00
verifyWasInit()
2020-02-09 02:02:37 +00:00
singleton.hideCursor()
}
2020-02-09 19:12:04 +00:00
func verifyWasInit() {
2020-02-09 02:02:37 +00:00
if singleton == nil {
panic(ErrNotInit)
}
}
2020-02-09 19:12:04 +00:00
func verifyNotInit() {
2020-02-09 02:02:37 +00:00
if singleton != nil {
panic(ErrWasInit)
}
}