mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
ba5ea334cc
* d2player/hud: Make minipanel button a real ui/button * d2ui/button: Add implicit tooltips for now it is only for close buttons. * d2ui/frame: Add size caluclation now frame.GetSize() returns meaningful values. * d2ui/button: Add minipanel button types * d2ui/hero_stats_panel: Fix cached image being way to big * d2ui/widget_group: Fix widget groups size calculation * d2ui/widget_group: Add debug rendering * d2ui/widget_group: SetVisible() now sets the visibility of the group object * d2player: Refactor mini_panel we converted all elements to widgets. Thus rendering from game_controls is no longer neccessary. * d2ui/button: Add disabled color to layouts * d2player/gamecontrols: temp hide minipanel when in esc menu * d2ui/widget_group: Add OffsetPosition() method * d2player/mini_panel: Implement moving of minipanel this only occours when other panels are opened. * d2player/minipanel: Fix inv/skilltree/char closebuttons these would screw up the moving of the mini panel. * Fix linter * d2player/minipanel: Add tooltips to buttons * d2player/skilltree: Fix icon rendering
706 lines
20 KiB
Go
706 lines
20 KiB
Go
package d2ui
|
|
|
|
import (
|
|
"image"
|
|
"log"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2util"
|
|
)
|
|
|
|
// ButtonType defines the type of button
|
|
type ButtonType int
|
|
|
|
// ButtonType constants
|
|
const (
|
|
ButtonTypeWide ButtonType = 1
|
|
ButtonTypeMedium ButtonType = 2
|
|
ButtonTypeNarrow ButtonType = 3
|
|
ButtonTypeCancel ButtonType = 4
|
|
ButtonTypeTall ButtonType = 5
|
|
ButtonTypeShort ButtonType = 6
|
|
ButtonTypeOkCancel ButtonType = 7
|
|
|
|
// Game UI
|
|
|
|
ButtonTypeSkill ButtonType = 7
|
|
ButtonTypeRun ButtonType = 8
|
|
ButtonTypeMenu ButtonType = 9
|
|
ButtonTypeGoldCoin ButtonType = 10
|
|
ButtonTypeClose ButtonType = 11
|
|
ButtonTypeSecondaryInvHand ButtonType = 12
|
|
ButtonTypeMinipanelCharacter ButtonType = 13
|
|
ButtonTypeMinipanelInventory ButtonType = 14
|
|
ButtonTypeMinipanelSkill ButtonType = 15
|
|
ButtonTypeMinipanelAutomap ButtonType = 16
|
|
ButtonTypeMinipanelMessage ButtonType = 17
|
|
ButtonTypeMinipanelQuest ButtonType = 18
|
|
ButtonTypeMinipanelMen ButtonType = 19
|
|
ButtonTypeSquareClose ButtonType = 20
|
|
ButtonTypeSkillTreeTab ButtonType = 21
|
|
ButtonTypeMinipanelOpenClose ButtonType = 22
|
|
ButtonTypeMinipanelParty ButtonType = 23
|
|
|
|
ButtonNoFixedWidth int = -1
|
|
ButtonNoFixedHeight int = -1
|
|
)
|
|
|
|
const (
|
|
buttonStatePressed = iota + 1
|
|
buttonStateToggled
|
|
buttonStatePressedToggled
|
|
)
|
|
|
|
const (
|
|
closeButtonBaseFrame = 10 // base frame offset of the "close" button dc6
|
|
)
|
|
|
|
const (
|
|
greyAlpha100 = 0x646464ff
|
|
lightGreyAlpha75 = 0x808080c3
|
|
whiteAlpha100 = 0xffffffff
|
|
)
|
|
|
|
// ButtonLayout defines the type of buttons
|
|
type ButtonLayout struct {
|
|
ResourceName string
|
|
PaletteName string
|
|
FontPath string
|
|
ClickableRect *image.Rectangle
|
|
XSegments int
|
|
YSegments int
|
|
BaseFrame int
|
|
DisabledFrame int
|
|
DisabledColor uint32
|
|
TextOffset int
|
|
FixedWidth int
|
|
FixedHeight int
|
|
LabelColor uint32
|
|
Toggleable bool
|
|
AllowFrameChange bool
|
|
HasImage bool
|
|
Tooltip int
|
|
TooltipXOffset int
|
|
TooltipYOffset int
|
|
}
|
|
|
|
const (
|
|
buttonTooltipNone int = iota
|
|
buttonTooltipClose
|
|
)
|
|
|
|
const (
|
|
buttonCloseTooltipXOffset = 15
|
|
buttonCloseTooltipYOffset = -2
|
|
)
|
|
|
|
const (
|
|
buttonWideSegmentsX = 2
|
|
buttonWideSegmentsY = 1
|
|
buttonWideDisabledFrame = -1
|
|
buttonWideTextOffset = 1
|
|
|
|
buttonShortSegmentsX = 1
|
|
buttonShortSegmentsY = 1
|
|
buttonShortDisabledFrame = -1
|
|
buttonShortTextOffset = -1
|
|
|
|
buttonMediumSegmentsX = 1
|
|
buttonMediumSegmentsY = 1
|
|
|
|
buttonTallSegmentsX = 1
|
|
buttonTallSegmentsY = 1
|
|
buttonTallTextOffset = 5
|
|
|
|
buttonOkCancelSegmentsX = 1
|
|
buttonOkCancelSegmentsY = 1
|
|
buttonOkCancelDisabledFrame = -1
|
|
|
|
buttonBuySellSegmentsX = 1
|
|
buttonBuySellSegmentsY = 1
|
|
buttonBuySellDisabledFrame = 1
|
|
|
|
buttonSkillTreeTabXSegments = 1
|
|
buttonSkillTreeTabYSegments = 1
|
|
|
|
buttonSkillTreeTabDisabledFrame = 7
|
|
buttonSkillTreeTabBaseFrame = 7
|
|
buttonSkillTreeTabFixedWidth = 93
|
|
buttonSkillTreeTabFixedHeight = 107
|
|
|
|
buttonMinipanelOpenCloseBaseFrame = 0
|
|
buttonMinipanelDisabledFrame = 2
|
|
buttonMinipanelXSegments = 1
|
|
buttonMinipanelYSegments = 1
|
|
|
|
buttonMinipanelCharacterBaseFrame = 0
|
|
buttonMinipanelInventoryBaseFrame = 2
|
|
buttonMinipanelSkilltreeBaseFrame = 4
|
|
buttonMinipanelPartyBaseFrame = 6
|
|
buttonMinipanelAutomapBaseFrame = 8
|
|
buttonMinipanelMessageBaseFrame = 10
|
|
buttonMinipanelQuestBaseFrame = 12
|
|
buttonMinipanelMenBaseFrame = 14
|
|
|
|
buttonRunSegmentsX = 1
|
|
buttonRunSegmentsY = 1
|
|
buttonRunDisabledFrame = -1
|
|
|
|
pressedButtonOffset = 2
|
|
)
|
|
|
|
// nolint:funlen // cant reduce
|
|
func getButtonLayouts() map[ButtonType]ButtonLayout {
|
|
return map[ButtonType]ButtonLayout{
|
|
ButtonTypeWide: {
|
|
XSegments: buttonWideSegmentsX,
|
|
YSegments: buttonWideSegmentsY,
|
|
DisabledFrame: buttonWideDisabledFrame,
|
|
DisabledColor: lightGreyAlpha75,
|
|
TextOffset: buttonWideTextOffset,
|
|
ResourceName: d2resource.WideButtonBlank,
|
|
PaletteName: d2resource.PaletteUnits,
|
|
FontPath: d2resource.FontExocet10,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
},
|
|
ButtonTypeShort: {
|
|
XSegments: buttonShortSegmentsX,
|
|
YSegments: buttonShortSegmentsY,
|
|
DisabledFrame: buttonShortDisabledFrame,
|
|
DisabledColor: lightGreyAlpha75,
|
|
TextOffset: buttonShortTextOffset,
|
|
ResourceName: d2resource.ShortButtonBlank,
|
|
PaletteName: d2resource.PaletteUnits,
|
|
FontPath: d2resource.FontRediculous,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
},
|
|
ButtonTypeMedium: {
|
|
XSegments: buttonMediumSegmentsX,
|
|
YSegments: buttonMediumSegmentsY,
|
|
DisabledColor: lightGreyAlpha75,
|
|
ResourceName: d2resource.MediumButtonBlank,
|
|
PaletteName: d2resource.PaletteUnits,
|
|
FontPath: d2resource.FontExocet10,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
},
|
|
ButtonTypeTall: {
|
|
XSegments: buttonTallSegmentsX,
|
|
YSegments: buttonTallSegmentsY,
|
|
TextOffset: buttonTallTextOffset,
|
|
DisabledColor: lightGreyAlpha75,
|
|
ResourceName: d2resource.TallButtonBlank,
|
|
PaletteName: d2resource.PaletteUnits,
|
|
FontPath: d2resource.FontExocet10,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
},
|
|
ButtonTypeOkCancel: {
|
|
XSegments: buttonOkCancelSegmentsX,
|
|
YSegments: buttonOkCancelSegmentsY,
|
|
DisabledFrame: buttonOkCancelDisabledFrame,
|
|
DisabledColor: lightGreyAlpha75,
|
|
ResourceName: d2resource.CancelButton,
|
|
PaletteName: d2resource.PaletteUnits,
|
|
FontPath: d2resource.FontRediculous,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
},
|
|
ButtonTypeRun: {
|
|
XSegments: buttonRunSegmentsX,
|
|
YSegments: buttonRunSegmentsY,
|
|
DisabledFrame: buttonRunDisabledFrame,
|
|
DisabledColor: lightGreyAlpha75,
|
|
ResourceName: d2resource.RunButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: true,
|
|
FontPath: d2resource.FontRediculous,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
},
|
|
ButtonTypeSquareClose: {
|
|
XSegments: buttonBuySellSegmentsX,
|
|
YSegments: buttonBuySellSegmentsY,
|
|
DisabledFrame: buttonBuySellDisabledFrame,
|
|
DisabledColor: lightGreyAlpha75,
|
|
ResourceName: d2resource.BuySellButton,
|
|
PaletteName: d2resource.PaletteUnits,
|
|
Toggleable: true,
|
|
FontPath: d2resource.Font30,
|
|
AllowFrameChange: true,
|
|
BaseFrame: closeButtonBaseFrame,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: greyAlpha100,
|
|
Tooltip: buttonTooltipClose,
|
|
TooltipXOffset: buttonCloseTooltipXOffset,
|
|
TooltipYOffset: buttonCloseTooltipYOffset,
|
|
},
|
|
ButtonTypeSkillTreeTab: {
|
|
XSegments: buttonSkillTreeTabXSegments,
|
|
YSegments: buttonSkillTreeTabYSegments,
|
|
DisabledFrame: buttonSkillTreeTabDisabledFrame,
|
|
DisabledColor: lightGreyAlpha75,
|
|
BaseFrame: buttonSkillTreeTabBaseFrame,
|
|
ResourceName: d2resource.SkillsPanelAmazon,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: false,
|
|
HasImage: false,
|
|
FixedWidth: buttonSkillTreeTabFixedWidth,
|
|
FixedHeight: buttonSkillTreeTabFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelOpenClose: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
DisabledFrame: buttonMinipanelDisabledFrame,
|
|
DisabledColor: whiteAlpha100,
|
|
BaseFrame: buttonMinipanelOpenCloseBaseFrame,
|
|
ResourceName: d2resource.MenuButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: true,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelCharacter: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelCharacterBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelInventory: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelInventoryBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelSkill: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelSkilltreeBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelParty: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelPartyBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelAutomap: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelAutomapBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelMessage: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelMessageBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelQuest: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelQuestBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
ButtonTypeMinipanelMen: {
|
|
XSegments: buttonMinipanelXSegments,
|
|
YSegments: buttonMinipanelYSegments,
|
|
BaseFrame: buttonMinipanelMenBaseFrame,
|
|
ResourceName: d2resource.MinipanelButton,
|
|
PaletteName: d2resource.PaletteSky,
|
|
Toggleable: false,
|
|
FontPath: d2resource.Font16,
|
|
AllowFrameChange: true,
|
|
HasImage: true,
|
|
FixedWidth: ButtonNoFixedWidth,
|
|
FixedHeight: ButtonNoFixedHeight,
|
|
LabelColor: whiteAlpha100,
|
|
},
|
|
}
|
|
}
|
|
|
|
var _ Widget = &Button{} // static check to ensure button implements widget
|
|
|
|
// Button defines a standard wide UI button
|
|
type Button struct {
|
|
*BaseWidget
|
|
buttonLayout ButtonLayout
|
|
normalSurface d2interface.Surface
|
|
pressedSurface d2interface.Surface
|
|
toggledSurface d2interface.Surface
|
|
pressedToggledSurface d2interface.Surface
|
|
disabledSurface d2interface.Surface
|
|
onClick func()
|
|
enabled bool
|
|
pressed bool
|
|
toggled bool
|
|
tooltip *Tooltip
|
|
}
|
|
|
|
// NewButton creates an instance of Button
|
|
func (ui *UIManager) NewButton(buttonType ButtonType, text string) *Button {
|
|
base := NewBaseWidget(ui)
|
|
base.SetVisible(true)
|
|
|
|
btn := &Button{
|
|
BaseWidget: base,
|
|
enabled: true,
|
|
pressed: false,
|
|
}
|
|
|
|
buttonLayout := getButtonLayouts()[buttonType]
|
|
btn.buttonLayout = buttonLayout
|
|
lbl := ui.NewLabel(buttonLayout.FontPath, d2resource.PaletteUnits)
|
|
|
|
lbl.SetText(text)
|
|
lbl.Color[0] = d2util.Color(buttonLayout.LabelColor)
|
|
lbl.Alignment = HorizontalAlignCenter
|
|
|
|
buttonSprite, err := ui.NewSprite(buttonLayout.ResourceName, buttonLayout.PaletteName)
|
|
if err != nil {
|
|
log.Print(err)
|
|
return nil
|
|
}
|
|
|
|
if buttonLayout.FixedWidth > 0 {
|
|
btn.width = buttonLayout.FixedWidth
|
|
} else {
|
|
for i := 0; i < buttonLayout.XSegments; i++ {
|
|
w, _, frameSizeErr := buttonSprite.GetFrameSize(i)
|
|
if frameSizeErr != nil {
|
|
log.Print(frameSizeErr)
|
|
return nil
|
|
}
|
|
|
|
btn.width += w
|
|
}
|
|
}
|
|
|
|
if buttonLayout.FixedHeight > 0 {
|
|
btn.height = buttonLayout.FixedHeight
|
|
} else {
|
|
for i := 0; i < buttonLayout.YSegments; i++ {
|
|
_, h, frameSizeErr := buttonSprite.GetFrameSize(i * buttonLayout.YSegments)
|
|
if frameSizeErr != nil {
|
|
log.Print(frameSizeErr)
|
|
return nil
|
|
}
|
|
|
|
btn.height += h
|
|
}
|
|
}
|
|
|
|
btn.normalSurface = ui.renderer.NewSurface(btn.width, btn.height)
|
|
|
|
buttonSprite.SetPosition(0, 0)
|
|
buttonSprite.SetEffect(d2enum.DrawEffectModulate)
|
|
|
|
btn.createTooltip()
|
|
|
|
ui.addWidget(btn) // important that this comes before prerenderStates!
|
|
|
|
btn.prerenderStates(buttonSprite, &buttonLayout, lbl)
|
|
|
|
return btn
|
|
}
|
|
|
|
type buttonStateDescriptor struct {
|
|
baseFrame int
|
|
offsetX, offsetY int
|
|
prerenderdestination *d2interface.Surface
|
|
fmtErr string
|
|
}
|
|
|
|
func (v *Button) createTooltip() {
|
|
var t *Tooltip
|
|
|
|
switch v.buttonLayout.Tooltip {
|
|
case buttonTooltipNone:
|
|
return
|
|
case buttonTooltipClose:
|
|
t = v.manager.NewTooltip(d2resource.Font16, d2resource.PaletteSky, TooltipXCenter, TooltipYBottom)
|
|
t.SetText(v.manager.asset.TranslateString("strClose"))
|
|
}
|
|
|
|
t.SetVisible(false)
|
|
v.SetTooltip(t)
|
|
}
|
|
|
|
func (v *Button) prerenderStates(btnSprite *Sprite, btnLayout *ButtonLayout, label *Label) {
|
|
numButtonStates := btnSprite.GetFrameCount() / (btnLayout.XSegments * btnLayout.YSegments)
|
|
|
|
// buttons always have a base image
|
|
if v.buttonLayout.HasImage {
|
|
btnSprite.RenderSegmented(v.normalSurface, btnLayout.XSegments,
|
|
btnLayout.YSegments, btnLayout.BaseFrame)
|
|
}
|
|
|
|
_, labelHeight := label.GetSize()
|
|
textY := half(v.height - labelHeight)
|
|
xOffset := half(v.width)
|
|
|
|
label.SetPosition(xOffset, textY)
|
|
label.Render(v.normalSurface)
|
|
|
|
if !btnLayout.HasImage || !btnLayout.AllowFrameChange {
|
|
return
|
|
}
|
|
|
|
xSeg, ySeg, baseFrame := btnLayout.XSegments, btnLayout.YSegments, btnLayout.BaseFrame
|
|
|
|
buttonStateConfigs := make([]*buttonStateDescriptor, 0)
|
|
|
|
// pressed button
|
|
if numButtonStates > buttonStatePressed {
|
|
state := &buttonStateDescriptor{
|
|
baseFrame + buttonStatePressed,
|
|
xOffset - pressedButtonOffset, textY + pressedButtonOffset,
|
|
&v.pressedSurface,
|
|
"failed to render button pressedSurface, err: %v\n",
|
|
}
|
|
|
|
buttonStateConfigs = append(buttonStateConfigs, state)
|
|
}
|
|
|
|
// toggle button
|
|
if numButtonStates > buttonStateToggled {
|
|
buttonStateConfigs = append(buttonStateConfigs, &buttonStateDescriptor{
|
|
baseFrame + buttonStateToggled,
|
|
xOffset, textY,
|
|
&v.toggledSurface,
|
|
"failed to render button toggledSurface, err: %v\n",
|
|
})
|
|
}
|
|
|
|
// pressed+toggled
|
|
if numButtonStates > buttonStatePressedToggled {
|
|
buttonStateConfigs = append(buttonStateConfigs, &buttonStateDescriptor{
|
|
baseFrame + buttonStatePressedToggled,
|
|
xOffset, textY,
|
|
&v.pressedToggledSurface,
|
|
"failed to render button pressedToggledSurface, err: %v\n",
|
|
})
|
|
}
|
|
|
|
// disabled button
|
|
if btnLayout.DisabledFrame != -1 {
|
|
disabledState := &buttonStateDescriptor{
|
|
btnLayout.DisabledFrame,
|
|
xOffset, textY,
|
|
&v.disabledSurface,
|
|
"failed to render button disabledSurface, err: %v\n",
|
|
}
|
|
|
|
buttonStateConfigs = append(buttonStateConfigs, disabledState)
|
|
}
|
|
|
|
for stateIdx, w, h := 0, v.width, v.height; stateIdx < len(buttonStateConfigs); stateIdx++ {
|
|
state := buttonStateConfigs[stateIdx]
|
|
|
|
if stateIdx > 1 && btnLayout.ResourceName == d2resource.BuySellButton {
|
|
// Without returning early, the button UI gets all subsequent (unrelated) frames
|
|
// stacked on top. Only 2 frames from this sprite are applicable to the button
|
|
// in question. The presentation is incorrect without this hack!
|
|
continue
|
|
}
|
|
|
|
surface := v.manager.renderer.NewSurface(w, h)
|
|
|
|
*state.prerenderdestination = surface
|
|
|
|
btnSprite.RenderSegmented(*state.prerenderdestination, xSeg, ySeg, state.baseFrame)
|
|
|
|
label.SetPosition(state.offsetX, state.offsetY)
|
|
label.Render(*state.prerenderdestination)
|
|
}
|
|
}
|
|
|
|
// OnActivated defines the callback handler for the activate event
|
|
func (v *Button) OnActivated(callback func()) {
|
|
v.onClick = callback
|
|
}
|
|
|
|
// Activate calls the on activated callback handler, if any
|
|
func (v *Button) Activate() {
|
|
if v.onClick == nil {
|
|
return
|
|
}
|
|
|
|
v.onClick()
|
|
}
|
|
|
|
// Render renders the button
|
|
func (v *Button) Render(target d2interface.Surface) {
|
|
target.PushFilter(d2enum.FilterNearest)
|
|
defer target.Pop()
|
|
|
|
target.PushTranslation(v.x, v.y)
|
|
defer target.Pop()
|
|
|
|
switch {
|
|
case !v.enabled:
|
|
target.PushColor(d2util.Color(v.buttonLayout.DisabledColor))
|
|
defer target.Pop()
|
|
target.Render(v.disabledSurface)
|
|
case v.toggled && v.pressed:
|
|
target.Render(v.pressedToggledSurface)
|
|
case v.pressed:
|
|
if v.buttonLayout.AllowFrameChange {
|
|
target.Render(v.pressedSurface)
|
|
} else {
|
|
target.Render(v.normalSurface)
|
|
}
|
|
case v.toggled:
|
|
target.Render(v.toggledSurface)
|
|
default:
|
|
target.Render(v.normalSurface)
|
|
}
|
|
}
|
|
|
|
// Toggle negates the toggled state of the button
|
|
func (v *Button) Toggle() {
|
|
v.toggled = !v.toggled
|
|
}
|
|
|
|
// Advance advances the button state
|
|
func (v *Button) Advance(_ float64) error {
|
|
return nil
|
|
}
|
|
|
|
// GetEnabled returns the enabled state
|
|
func (v *Button) GetEnabled() bool {
|
|
return v.enabled
|
|
}
|
|
|
|
// SetEnabled sets the enabled state
|
|
func (v *Button) SetEnabled(enabled bool) {
|
|
v.enabled = enabled
|
|
}
|
|
|
|
// GetPressed returns the pressed state of the button
|
|
func (v *Button) GetPressed() bool {
|
|
return v.pressed
|
|
}
|
|
|
|
// SetPressed sets the pressed state of the button
|
|
func (v *Button) SetPressed(pressed bool) {
|
|
v.pressed = pressed
|
|
}
|
|
|
|
// SetVisible sets the pressed state of the button
|
|
func (v *Button) SetVisible(visible bool) {
|
|
v.BaseWidget.SetVisible(visible)
|
|
|
|
if v.isHovered() && !visible {
|
|
v.hoverEnd()
|
|
}
|
|
}
|
|
|
|
// SetPosition sets the position of the widget
|
|
func (v *Button) SetPosition(x, y int) {
|
|
v.BaseWidget.SetPosition(x, y)
|
|
|
|
if v.buttonLayout.Tooltip != buttonTooltipNone {
|
|
v.tooltip.SetPosition(x+v.buttonLayout.TooltipXOffset, y+v.buttonLayout.TooltipYOffset)
|
|
}
|
|
}
|
|
|
|
// SetTooltip adds a tooltip to the button
|
|
func (v *Button) SetTooltip(t *Tooltip) {
|
|
v.tooltip = t
|
|
v.manager.addWidget(t)
|
|
v.OnHoverStart(func() { log.Print("HoverStart"); v.tooltip.SetVisible(true) })
|
|
v.OnHoverEnd(func() { v.tooltip.SetVisible(false) })
|
|
}
|
|
|
|
func half(n int) int {
|
|
return n / 2
|
|
}
|