2019-11-10 12:28:41 -05:00
|
|
|
package d2ui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2020-07-22 15:03:03 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
2020-06-29 00:41:58 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
2020-06-23 18:12:08 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource"
|
2020-02-01 18:55:56 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2asset"
|
2019-11-10 12:28:41 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// TextBox represents a text input box
|
|
|
|
type TextBox struct {
|
2020-07-26 13:23:46 -04:00
|
|
|
textLabel Label
|
|
|
|
lineBar Label
|
2019-11-10 12:28:41 -05:00
|
|
|
text string
|
2020-07-26 13:23:46 -04:00
|
|
|
filter string
|
2019-11-10 12:28:41 -05:00
|
|
|
x int
|
|
|
|
y int
|
2020-07-26 13:23:46 -04:00
|
|
|
bgSprite *Sprite
|
2019-11-10 12:28:41 -05:00
|
|
|
visible bool
|
|
|
|
enabled bool
|
2020-07-22 15:03:03 -04:00
|
|
|
isFocused bool
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// CreateTextbox creates a new instance of a text box
|
|
|
|
func CreateTextbox() TextBox {
|
2020-02-01 18:55:56 -05:00
|
|
|
animation, _ := d2asset.LoadAnimation(d2resource.TextBox2, d2resource.PaletteUnits)
|
|
|
|
bgSprite, _ := LoadSprite(animation)
|
2020-06-23 18:12:08 -04:00
|
|
|
tb := TextBox{
|
2020-06-18 14:11:04 -04:00
|
|
|
filter: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
2019-12-21 20:53:18 -05:00
|
|
|
bgSprite: bgSprite,
|
2020-07-07 20:16:22 -04:00
|
|
|
textLabel: CreateLabel(d2resource.FontFormal11, d2resource.PaletteUnits),
|
|
|
|
lineBar: CreateLabel(d2resource.FontFormal11, d2resource.PaletteUnits),
|
2019-11-10 12:28:41 -05:00
|
|
|
enabled: true,
|
|
|
|
visible: true,
|
|
|
|
}
|
2020-06-23 18:12:08 -04:00
|
|
|
tb.lineBar.SetText("_")
|
|
|
|
|
|
|
|
return tb
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetFilter sets the text box filter
|
2020-06-18 14:11:04 -04:00
|
|
|
func (v *TextBox) SetFilter(filter string) {
|
|
|
|
v.filter = filter
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Render renders the text box
|
|
|
|
func (v *TextBox) Render(target d2interface.Surface) error {
|
2019-11-10 12:28:41 -05:00
|
|
|
if !v.visible {
|
2020-07-26 14:52:54 -04:00
|
|
|
return nil
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
|
|
|
if err := v.bgSprite.Render(target); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-12-21 20:53:18 -05:00
|
|
|
v.textLabel.Render(target)
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
if (time.Now().UnixNano()/1e6)&(1<<8) > 0 {
|
2019-12-21 20:53:18 -05:00
|
|
|
v.lineBar.Render(target)
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
|
|
|
return nil
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// OnKeyChars handles key character events
|
2020-07-03 15:09:16 -04:00
|
|
|
func (v *TextBox) OnKeyChars(event d2interface.KeyCharsEvent) bool {
|
2020-07-22 15:03:03 -04:00
|
|
|
if !v.isFocused || !v.visible || !v.enabled {
|
2020-06-23 18:12:08 -04:00
|
|
|
return false
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-07-03 15:09:16 -04:00
|
|
|
newText := string(event.Chars())
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
if len(newText) > 0 {
|
|
|
|
v.text += newText
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
v.SetText(v.text)
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-06-23 18:12:08 -04:00
|
|
|
return true
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-06-23 18:12:08 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// OnKeyRepeat handles key repeat events
|
2020-07-03 15:09:16 -04:00
|
|
|
func (v *TextBox) OnKeyRepeat(event d2interface.KeyEvent) bool {
|
2020-07-06 21:26:08 -04:00
|
|
|
if event.Key() == d2enum.KeyBackspace && debounceEvents(event.Duration()) {
|
2019-11-10 12:28:41 -05:00
|
|
|
if len(v.text) >= 1 {
|
|
|
|
v.text = v.text[:len(v.text)-1]
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
v.SetText(v.text)
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-06-23 18:12:08 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func debounceEvents(numFrames int) bool {
|
|
|
|
const (
|
|
|
|
delay = 30
|
|
|
|
interval = 3
|
|
|
|
)
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-06-23 18:12:08 -04:00
|
|
|
if numFrames == 1 {
|
|
|
|
return true
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-06-23 18:12:08 -04:00
|
|
|
if numFrames >= delay && (numFrames-delay)%interval == 0 {
|
|
|
|
return true
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-06-23 18:12:08 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Advance updates the text box
|
2020-06-23 18:12:08 -04:00
|
|
|
func (v *TextBox) Advance(_ float64) {
|
|
|
|
if !v.visible || !v.enabled {
|
|
|
|
return
|
|
|
|
}
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Update updates the textbox
|
2020-06-22 23:51:23 -04:00
|
|
|
func (v *TextBox) Update() {
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetText returns the text box's text
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) GetText() string {
|
2019-11-10 12:28:41 -05:00
|
|
|
return v.text
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetText sets the text box's text
|
|
|
|
//nolint:gomnd // Built-in values
|
2019-11-10 12:28:41 -05:00
|
|
|
func (v *TextBox) SetText(newText string) {
|
|
|
|
result := ""
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
for _, c := range newText {
|
2020-06-18 14:11:04 -04:00
|
|
|
if !strings.Contains(v.filter, string(c)) {
|
2019-11-10 12:28:41 -05:00
|
|
|
continue
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
result += string(c)
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
if len(result) > 15 {
|
|
|
|
result = result[0:15]
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
v.text = result
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
for {
|
|
|
|
tw, _ := v.textLabel.GetTextMetrics(result)
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
if tw > 150 {
|
|
|
|
result = result[1:]
|
|
|
|
continue
|
|
|
|
}
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2020-02-01 21:51:49 -05:00
|
|
|
v.lineBar.SetPosition(v.x+6+tw, v.y+3)
|
2019-11-10 12:28:41 -05:00
|
|
|
v.textLabel.SetText(result)
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetSize returns the size of the text box
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) GetSize() (width, height int) {
|
2019-12-21 20:53:18 -05:00
|
|
|
return v.bgSprite.GetCurrentFrameSize()
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetPosition sets the position of the text box
|
|
|
|
//nolint:gomnd // Built-in values
|
2019-12-21 20:53:18 -05:00
|
|
|
func (v *TextBox) SetPosition(x, y int) {
|
2020-07-07 20:16:22 -04:00
|
|
|
lw, _ := v.textLabel.GetSize()
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-11-10 12:28:41 -05:00
|
|
|
v.x = x
|
|
|
|
v.y = y
|
2020-07-26 14:52:54 -04:00
|
|
|
|
2019-12-21 20:53:18 -05:00
|
|
|
v.textLabel.SetPosition(v.x+6, v.y+3)
|
2020-07-07 20:16:22 -04:00
|
|
|
v.lineBar.SetPosition(v.x+6+lw, v.y+3)
|
2019-12-21 20:53:18 -05:00
|
|
|
v.bgSprite.SetPosition(v.x, v.y+26)
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetPosition returns the position of the text box
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) GetPosition() (x, y int) {
|
2019-11-10 12:28:41 -05:00
|
|
|
return v.x, v.y
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetVisible returns the visibility of the text box
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) GetVisible() bool {
|
2019-11-10 12:28:41 -05:00
|
|
|
return v.visible
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetVisible sets the visibility of the text box
|
2019-11-10 12:28:41 -05:00
|
|
|
func (v *TextBox) SetVisible(visible bool) {
|
|
|
|
v.visible = visible
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetEnabled returns the enabled state of the text box
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) GetEnabled() bool {
|
2019-11-10 12:28:41 -05:00
|
|
|
return v.enabled
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetEnabled sets the enabled state of the text box
|
2019-11-10 12:28:41 -05:00
|
|
|
func (v *TextBox) SetEnabled(enabled bool) {
|
|
|
|
v.enabled = enabled
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// SetPressed does nothing for text boxes
|
|
|
|
func (v *TextBox) SetPressed(_ bool) {
|
2019-11-10 12:28:41 -05:00
|
|
|
// no op
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// GetPressed does nothing for text boxes
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) GetPressed() bool {
|
2019-11-10 12:28:41 -05:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// OnActivated handles activation events for the text box
|
|
|
|
func (v *TextBox) OnActivated(_ func()) {
|
2019-11-10 12:28:41 -05:00
|
|
|
// no op
|
|
|
|
}
|
|
|
|
|
2020-07-26 14:52:54 -04:00
|
|
|
// Activate activates the text box
|
2019-12-28 23:32:24 -05:00
|
|
|
func (v *TextBox) Activate() {
|
2020-07-22 15:03:03 -04:00
|
|
|
v.isFocused = true
|
2019-11-10 12:28:41 -05:00
|
|
|
}
|