mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
acc4c7a13e
* fixed lint errors in button.go * fixed lint errors in checkbox.go * Removed d2ui singleton, fixed nearly all lint errors - Changed `UI` struct to `UIManager`, removed singleton - UI element provider functions are now methods of the UI Manager - Screens now use the UI manager to create UI elements - game panels in d2player now use the UI Manager to create UI elements - Only the UI manager knows about "widgets"; calls to `d2ui.AddWidget` in Screen instances have been removed * changed ui element provider methods from `Create` to `New`
141 lines
3.8 KiB
Go
141 lines
3.8 KiB
Go
package d2ui
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource"
|
|
)
|
|
|
|
// UIManager manages a collection of UI elements (buttons, textboxes, labels)
|
|
type UIManager struct {
|
|
renderer d2interface.Renderer
|
|
inputManager d2interface.InputManager
|
|
audio d2interface.AudioProvider
|
|
widgets []Widget
|
|
cursorButtons CursorButton // TODO (carrelld) convert dependent code and remove
|
|
CursorX int // TODO (carrelld) convert dependent code and remove
|
|
CursorY int // TODO (carrelld) convert dependent code and remove
|
|
pressedWidget Widget
|
|
clickSfx d2interface.SoundEffect
|
|
}
|
|
|
|
// Note: methods for creating buttons and stuff are in their respective files
|
|
|
|
// Initialize is meant to be called after the game loads all of the necessary files
|
|
// for sprites and audio
|
|
func (ui *UIManager) Initialize() {
|
|
sfx, err := ui.audio.LoadSound(d2resource.SFXButtonClick, false, false)
|
|
if err != nil {
|
|
log.Fatalf("failed to initialize ui: %v", err)
|
|
}
|
|
|
|
ui.clickSfx = sfx
|
|
|
|
if err := ui.inputManager.BindHandler(ui); err != nil {
|
|
log.Fatalf("failed to initialize ui: %v", err)
|
|
}
|
|
}
|
|
|
|
// Reset resets the state of the UI manager. Typically called for new screens
|
|
func (ui *UIManager) Reset() {
|
|
ui.widgets = nil
|
|
ui.pressedWidget = nil
|
|
}
|
|
|
|
// addWidget adds a widget to the UI manager
|
|
func (ui *UIManager) addWidget(widget Widget) {
|
|
_ = ui.inputManager.BindHandler(widget)
|
|
ui.widgets = append(ui.widgets, widget)
|
|
|
|
widget.bindManager(ui)
|
|
}
|
|
|
|
// OnMouseButtonUp is an event handler for input
|
|
func (ui *UIManager) OnMouseButtonUp(event d2interface.MouseEvent) bool {
|
|
ui.CursorX, ui.CursorY = event.X(), event.Y()
|
|
if event.Button() == d2enum.MouseButtonLeft {
|
|
ui.cursorButtons |= CursorButtonLeft
|
|
// activate previously pressed widget if cursor is still hovering
|
|
w := ui.pressedWidget
|
|
|
|
if w != nil && ui.contains(w, ui.CursorX, ui.CursorY) && w.GetVisible() && w.
|
|
GetEnabled() {
|
|
w.Activate()
|
|
}
|
|
|
|
// unpress all widgets that are pressed
|
|
for _, w := range ui.widgets {
|
|
w.SetPressed(false)
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// OnMouseButtonDown is the mouse button down event handler
|
|
func (ui *UIManager) OnMouseButtonDown(event d2interface.MouseEvent) bool {
|
|
ui.CursorX, ui.CursorY = event.X(), event.Y()
|
|
if event.Button() == d2enum.MouseButtonLeft {
|
|
// find and press a widget on screen
|
|
ui.pressedWidget = nil
|
|
for _, w := range ui.widgets {
|
|
if ui.contains(w, ui.CursorX, ui.CursorY) && w.GetVisible() && w.GetEnabled() {
|
|
w.SetPressed(true)
|
|
ui.pressedWidget = w
|
|
ui.clickSfx.Play()
|
|
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if event.Button() == d2enum.MouseButtonRight {
|
|
ui.cursorButtons |= CursorButtonRight
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// Render renders all of the UI elements
|
|
func (ui *UIManager) Render(target d2interface.Surface) {
|
|
for _, widget := range ui.widgets {
|
|
if widget.GetVisible() {
|
|
_ = widget.Render(target)
|
|
}
|
|
}
|
|
}
|
|
|
|
// contains determines whether a given x,y coordinate lands within a Widget
|
|
func (ui *UIManager) contains(w Widget, x, y int) bool {
|
|
wx, wy := w.GetPosition()
|
|
ww, wh := w.GetSize()
|
|
|
|
return x >= wx && x <= wx+ww && y >= wy && y <= wy+wh
|
|
}
|
|
|
|
// Advance updates all of the UI elements
|
|
func (ui *UIManager) Advance(elapsed float64) {
|
|
for _, widget := range ui.widgets {
|
|
if widget.GetVisible() {
|
|
_ = widget.Advance(elapsed)
|
|
}
|
|
}
|
|
}
|
|
|
|
// CursorButtonPressed determines if the specified button has been pressed
|
|
func (ui *UIManager) CursorButtonPressed(button CursorButton) bool {
|
|
return ui.cursorButtons&button > 0
|
|
}
|
|
|
|
// CursorPosition returns the current cursor position
|
|
func (ui *UIManager) CursorPosition() (x, y int) {
|
|
return ui.CursorX, ui.CursorY
|
|
}
|
|
|
|
// Renderer returns the renderer for this ui manager
|
|
func (ui *UIManager) Renderer() d2interface.Renderer {
|
|
return ui.renderer
|
|
}
|