2019-11-10 17:17:42 -05:00
|
|
|
package d2ui
|
|
|
|
|
|
|
|
import (
|
2020-06-30 09:58:53 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
2020-06-29 00:41:58 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
2020-01-26 00:39:13 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource"
|
2019-11-10 17:17:42 -05:00
|
|
|
)
|
|
|
|
|
2020-12-19 15:28:07 -05:00
|
|
|
// static check that Checkbox implements ClickableWidget
|
|
|
|
var _ ClickableWidget = &Checkbox{}
|
2020-11-09 09:46:08 -05:00
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Checkbox represents a checkbox UI element
|
2019-11-10 17:17:42 -05:00
|
|
|
type Checkbox struct {
|
2020-11-06 06:38:20 -05:00
|
|
|
*BaseWidget
|
2020-07-26 14:52:54 -04:00
|
|
|
Image d2interface.Surface
|
|
|
|
checkedImage d2interface.Surface
|
|
|
|
onClick func()
|
|
|
|
checkState bool
|
|
|
|
enabled bool
|
|
|
|
}
|
|
|
|
|
2020-08-06 10:30:23 -04:00
|
|
|
// NewCheckbox creates a new instance of a checkbox
|
|
|
|
func (ui *UIManager) NewCheckbox(checkState bool) *Checkbox {
|
2020-09-23 13:30:54 -04:00
|
|
|
var err error
|
2020-10-22 01:12:06 -04:00
|
|
|
|
2020-11-06 06:38:20 -05:00
|
|
|
base := NewBaseWidget(ui)
|
|
|
|
|
2020-08-06 10:30:23 -04:00
|
|
|
result := &Checkbox{
|
2020-11-06 06:38:20 -05:00
|
|
|
BaseWidget: base,
|
2019-11-10 17:52:30 -05:00
|
|
|
checkState: checkState,
|
|
|
|
enabled: true,
|
2019-11-10 17:17:42 -05:00
|
|
|
}
|
2020-01-31 23:18:11 -05:00
|
|
|
|
2020-09-23 13:30:54 -04:00
|
|
|
checkboxSprite, err := ui.NewSprite(d2resource.Checkbox, d2resource.PaletteFechar)
|
|
|
|
if err != nil {
|
2020-11-21 05:33:22 -05:00
|
|
|
ui.Error(err.Error())
|
2020-09-23 13:30:54 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
result.width, result.height, err = checkboxSprite.GetFrameSize(0)
|
|
|
|
if err != nil {
|
2020-11-21 05:33:22 -05:00
|
|
|
ui.Error(err.Error())
|
2020-09-23 13:30:54 -04:00
|
|
|
return nil
|
|
|
|
}
|
2020-10-22 01:12:06 -04:00
|
|
|
|
2019-12-21 20:53:18 -05:00
|
|
|
checkboxSprite.SetPosition(0, 0)
|
2019-11-10 17:17:42 -05:00
|
|
|
|
2020-10-28 14:17:42 -04:00
|
|
|
result.Image = ui.renderer.NewSurface(result.width, result.height)
|
2019-11-10 17:17:42 -05:00
|
|
|
|
2020-11-11 08:55:59 -05:00
|
|
|
checkboxSprite.RenderSegmented(result.Image, 1, 1, 0)
|
2020-07-03 14:00:56 -04:00
|
|
|
|
2020-10-28 14:17:42 -04:00
|
|
|
result.checkedImage = ui.renderer.NewSurface(result.width, result.height)
|
2020-07-03 14:00:56 -04:00
|
|
|
|
2020-11-11 08:55:59 -05:00
|
|
|
checkboxSprite.RenderSegmented(result.checkedImage, 1, 1, 1)
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-08-06 10:30:23 -04:00
|
|
|
ui.addWidget(result)
|
|
|
|
|
2019-11-10 17:17:42 -05:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Render renders the checkbox
|
2020-11-11 08:55:59 -05:00
|
|
|
func (v *Checkbox) Render(target d2interface.Surface) {
|
2019-12-28 16:46:08 -05:00
|
|
|
target.PushTranslation(v.x, v.y)
|
2020-08-06 10:30:23 -04:00
|
|
|
defer target.Pop()
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-08-06 10:30:23 -04:00
|
|
|
target.PushFilter(d2enum.FilterNearest)
|
|
|
|
defer target.Pop()
|
2019-12-28 16:46:08 -05:00
|
|
|
|
|
|
|
if v.checkState {
|
2020-10-28 14:17:42 -04:00
|
|
|
target.Render(v.checkedImage)
|
2019-11-10 17:17:42 -05:00
|
|
|
} else {
|
2020-10-28 14:17:42 -04:00
|
|
|
target.Render(v.Image)
|
2019-11-10 17:17:42 -05:00
|
|
|
}
|
|
|
|
}
|
2019-12-28 23:32:24 -05:00
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Advance does nothing for checkboxes
|
2020-08-06 10:30:23 -04:00
|
|
|
func (v *Checkbox) Advance(_ float64) error {
|
|
|
|
return nil
|
2019-12-28 23:32:24 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetEnabled returns the enabled state of the checkbox
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *Checkbox) GetEnabled() bool {
|
2019-11-10 17:17:42 -05:00
|
|
|
return v.enabled
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetEnabled sets the enabled state of the checkbox
|
2019-11-10 17:17:42 -05:00
|
|
|
func (v *Checkbox) SetEnabled(enabled bool) {
|
|
|
|
v.enabled = enabled
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetPressed does nothing for checkboxes
|
2020-07-03 14:00:56 -04:00
|
|
|
func (v *Checkbox) SetPressed(_ bool) {
|
2019-11-10 17:52:30 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetCheckState sets the check state of the checkbox
|
2019-11-10 17:52:30 -05:00
|
|
|
func (v *Checkbox) SetCheckState(checkState bool) {
|
|
|
|
v.checkState = checkState
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetCheckState returns the check state of the checkbox
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *Checkbox) GetCheckState() bool {
|
2019-11-10 17:52:30 -05:00
|
|
|
return v.checkState
|
2019-11-10 17:17:42 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetPressed returns the pressed state of the checkbox
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *Checkbox) GetPressed() bool {
|
2019-11-10 17:52:30 -05:00
|
|
|
return v.checkState
|
2019-11-10 17:17:42 -05:00
|
|
|
}
|
|
|
|
|
2020-08-06 10:30:23 -04:00
|
|
|
// OnActivated sets the callback function of the click event for the checkbox
|
2019-11-10 17:17:42 -05:00
|
|
|
func (v *Checkbox) OnActivated(callback func()) {
|
|
|
|
v.onClick = callback
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Activate activates the checkbox
|
2019-11-10 17:17:42 -05:00
|
|
|
func (v *Checkbox) Activate() {
|
2019-11-10 17:52:30 -05:00
|
|
|
v.checkState = !v.checkState
|
2019-11-10 17:17:42 -05:00
|
|
|
if v.onClick == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-08-06 10:30:23 -04:00
|
|
|
|
2019-11-10 17:17:42 -05:00
|
|
|
v.onClick()
|
|
|
|
}
|