2020-06-13 20:36:20 -04:00
|
|
|
package d2gamescreen
|
2019-10-26 00:26:48 -04:00
|
|
|
|
|
|
|
import (
|
2019-11-13 11:56:45 -05:00
|
|
|
"bufio"
|
2019-10-26 02:11:28 -04:00
|
|
|
"image/color"
|
2019-11-13 11:56:45 -05:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"path"
|
2019-10-26 00:55:59 -04:00
|
|
|
"strings"
|
|
|
|
|
2020-02-08 21:02:37 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common"
|
|
|
|
dh "github.com/OpenDiablo2/OpenDiablo2/d2common"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource"
|
|
|
|
|
2020-02-01 18:55:56 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2asset"
|
2020-02-01 20:39:28 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2render"
|
2020-06-13 20:36:20 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2screen"
|
2020-01-31 23:18:11 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2ui"
|
2019-10-26 00:26:48 -04:00
|
|
|
)
|
|
|
|
|
2019-10-26 02:11:28 -04:00
|
|
|
type labelItem struct {
|
2019-11-10 12:28:41 -05:00
|
|
|
Label d2ui.Label
|
2019-10-26 02:11:28 -04:00
|
|
|
IsHeading bool
|
|
|
|
Available bool
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:36:20 -04:00
|
|
|
// Credits represents the credits screen
|
2019-10-26 00:26:48 -04:00
|
|
|
type Credits struct {
|
2020-02-01 18:55:56 -05:00
|
|
|
creditsBackground *d2ui.Sprite
|
2019-11-10 12:28:41 -05:00
|
|
|
exitButton d2ui.Button
|
2019-10-26 02:11:28 -04:00
|
|
|
creditsText []string
|
|
|
|
labels []*labelItem
|
|
|
|
cycleTime float64
|
|
|
|
cyclesTillNextLine int
|
|
|
|
doneWithCredits bool
|
2019-10-26 00:26:48 -04:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:36:20 -04:00
|
|
|
// CreateCredits creates an instance of the credits screen
|
2020-01-31 23:18:11 -05:00
|
|
|
func CreateCredits() *Credits {
|
2019-10-26 00:26:48 -04:00
|
|
|
result := &Credits{
|
2019-10-26 02:11:28 -04:00
|
|
|
labels: make([]*labelItem, 0),
|
|
|
|
cycleTime: 0,
|
|
|
|
doneWithCredits: false,
|
|
|
|
cyclesTillNextLine: 0,
|
2019-10-26 00:26:48 -04:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2019-11-13 11:56:45 -05:00
|
|
|
// Load is called to load the contributors data from file
|
|
|
|
// TODO: use markdown for file and convert it to the suitable format
|
|
|
|
func (v *Credits) LoadContributors() []string {
|
2020-02-01 21:51:49 -05:00
|
|
|
var contributors []string
|
2019-11-13 11:56:45 -05:00
|
|
|
file, err := os.Open(path.Join("./", "CONTRIBUTORS"))
|
2020-02-01 21:51:49 -05:00
|
|
|
if err != nil || file == nil {
|
2019-11-14 23:55:51 -05:00
|
|
|
log.Print("CONTRIBUTORS file is missing")
|
2020-02-08 21:02:37 -05:00
|
|
|
return []string{"MISSING CONTRIBUTOR FILES!"}
|
2019-11-13 11:56:45 -05:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
contributors = append(contributors, strings.Trim(scanner.Text(), " "))
|
|
|
|
}
|
|
|
|
return contributors
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:36:20 -04:00
|
|
|
// Load is called to load the resources for the credits screen
|
2020-02-08 21:02:37 -05:00
|
|
|
func (v *Credits) OnLoad() error {
|
|
|
|
animation, _ := d2asset.LoadAnimation(d2resource.CreditsBackground, d2resource.PaletteSky)
|
|
|
|
v.creditsBackground, _ = d2ui.LoadSprite(animation)
|
|
|
|
v.creditsBackground.SetPosition(0, 0)
|
|
|
|
|
|
|
|
v.exitButton = d2ui.CreateButton(d2ui.ButtonTypeMedium, d2common.TranslateString("#970"))
|
|
|
|
v.exitButton.SetPosition(33, 543)
|
|
|
|
v.exitButton.OnActivated(func() { v.onExitButtonClicked() })
|
|
|
|
d2ui.AddWidget(&v.exitButton)
|
|
|
|
|
|
|
|
fileData, err := d2asset.LoadFile(d2resource.CreditsText)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-10-26 00:26:48 -04:00
|
|
|
}
|
2020-02-08 21:02:37 -05:00
|
|
|
creditData, _ := dh.Utf16BytesToString(fileData[2:])
|
|
|
|
v.creditsText = strings.Split(creditData, "\r\n")
|
|
|
|
for i := range v.creditsText {
|
|
|
|
v.creditsText[i] = strings.Trim(v.creditsText[i], " ")
|
|
|
|
}
|
|
|
|
v.creditsText = append(v.LoadContributors(), v.creditsText...)
|
|
|
|
return nil
|
2019-10-26 00:26:48 -04:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:36:20 -04:00
|
|
|
// Render renders the credits screen
|
2020-02-08 21:02:37 -05:00
|
|
|
func (v *Credits) Render(screen d2render.Surface) error {
|
2019-12-21 20:53:18 -05:00
|
|
|
v.creditsBackground.RenderSegmented(screen, 4, 3, 0)
|
2019-10-26 02:11:28 -04:00
|
|
|
for _, label := range v.labels {
|
|
|
|
if label.Available {
|
|
|
|
continue
|
|
|
|
}
|
2019-12-21 20:53:18 -05:00
|
|
|
label.Label.Render(screen)
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|
2020-02-08 21:02:37 -05:00
|
|
|
|
|
|
|
return nil
|
2019-10-26 00:26:48 -04:00
|
|
|
}
|
|
|
|
|
2019-11-01 14:12:23 -04:00
|
|
|
const secondsPerCycle = float64(0.02)
|
2019-10-26 02:11:28 -04:00
|
|
|
|
2020-06-13 20:36:20 -04:00
|
|
|
// Update runs the update logic on the credits screen
|
2020-02-08 21:02:37 -05:00
|
|
|
func (v *Credits) Advance(tickTime float64) error {
|
2019-10-26 10:34:55 -04:00
|
|
|
v.cycleTime += tickTime
|
2019-10-26 02:11:28 -04:00
|
|
|
for v.cycleTime >= secondsPerCycle {
|
|
|
|
v.cycleTime -= secondsPerCycle
|
|
|
|
v.cyclesTillNextLine--
|
|
|
|
if !v.doneWithCredits && v.cyclesTillNextLine <= 0 {
|
|
|
|
v.addNextItem()
|
|
|
|
}
|
2019-10-26 00:26:48 -04:00
|
|
|
|
2019-10-26 02:11:28 -04:00
|
|
|
for _, label := range v.labels {
|
|
|
|
if label.Available {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if label.Label.Y-1 < -15 {
|
|
|
|
label.Available = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
label.Label.Y--
|
|
|
|
}
|
|
|
|
}
|
2020-02-08 21:02:37 -05:00
|
|
|
|
|
|
|
return nil
|
2019-10-26 00:26:48 -04:00
|
|
|
}
|
2019-10-26 00:55:59 -04:00
|
|
|
|
|
|
|
func (v *Credits) onExitButtonClicked() {
|
2020-01-31 23:18:11 -05:00
|
|
|
mainMenu := CreateMainMenu()
|
2020-06-18 14:11:04 -04:00
|
|
|
mainMenu.SetScreenMode(ScreenModeMainMenu)
|
2020-06-13 20:36:20 -04:00
|
|
|
d2screen.SetNextScreen(mainMenu)
|
2019-10-26 00:55:59 -04:00
|
|
|
}
|
2019-10-26 02:11:28 -04:00
|
|
|
|
|
|
|
func (v *Credits) addNextItem() {
|
|
|
|
if len(v.creditsText) == 0 {
|
|
|
|
v.doneWithCredits = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-26 10:34:55 -04:00
|
|
|
text := v.creditsText[0]
|
2019-10-26 02:11:28 -04:00
|
|
|
v.creditsText = v.creditsText[1:]
|
2019-11-15 19:47:58 -05:00
|
|
|
if len(text) == 0 && v.creditsText[0][0] != '*' {
|
|
|
|
v.cyclesTillNextLine = 19
|
|
|
|
return
|
|
|
|
} else if len(text) == 0 && v.creditsText[0][0] == '*' {
|
|
|
|
v.cyclesTillNextLine = 38
|
2019-10-26 02:11:28 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
isHeading := text[0] == '*'
|
2019-10-26 10:34:55 -04:00
|
|
|
isNextHeading := len(v.creditsText) > 0 && len(v.creditsText[0]) > 0 && v.creditsText[0][0] == '*'
|
|
|
|
isNextSpace := len(v.creditsText) > 0 && len(v.creditsText[0]) == 0
|
2019-10-26 02:11:28 -04:00
|
|
|
var label = v.getNewFontLabel(isHeading)
|
|
|
|
if isHeading {
|
|
|
|
label.SetText(text[1:])
|
|
|
|
} else {
|
|
|
|
label.SetText(text)
|
|
|
|
}
|
2019-10-26 10:34:55 -04:00
|
|
|
width, _ := label.GetSize()
|
2019-10-26 02:11:28 -04:00
|
|
|
isDoubled := false
|
|
|
|
if !isHeading && !isNextHeading && !isNextSpace {
|
|
|
|
isDoubled = true
|
|
|
|
|
|
|
|
// Gotta go side by side
|
2020-02-01 21:51:49 -05:00
|
|
|
label.SetPosition(400-width, 605)
|
2019-10-26 02:11:28 -04:00
|
|
|
|
2019-10-26 10:34:55 -04:00
|
|
|
text2 := v.creditsText[0]
|
2019-10-26 02:11:28 -04:00
|
|
|
v.creditsText = v.creditsText[1:]
|
|
|
|
|
2019-10-26 10:34:55 -04:00
|
|
|
isNextHeading = len(v.creditsText) > 0 && len(v.creditsText[0]) > 0 && v.creditsText[0][0] == '*'
|
2019-10-26 02:11:28 -04:00
|
|
|
label2 := v.getNewFontLabel(isHeading)
|
|
|
|
label2.SetText(text2)
|
|
|
|
|
2019-12-21 20:53:18 -05:00
|
|
|
label2.SetPosition(410, 605)
|
2019-10-26 02:11:28 -04:00
|
|
|
} else {
|
2020-02-01 21:51:49 -05:00
|
|
|
label.SetPosition(405-width/2, 605)
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if isHeading && isNextHeading {
|
2019-11-15 19:47:58 -05:00
|
|
|
v.cyclesTillNextLine = 38
|
2019-10-26 02:11:28 -04:00
|
|
|
} else if isNextHeading {
|
|
|
|
if isDoubled {
|
2019-11-15 19:47:58 -05:00
|
|
|
v.cyclesTillNextLine = 38
|
2019-10-26 02:11:28 -04:00
|
|
|
} else {
|
2019-11-15 19:47:58 -05:00
|
|
|
v.cyclesTillNextLine = 57
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|
|
|
|
} else if isHeading {
|
2019-11-15 19:47:58 -05:00
|
|
|
v.cyclesTillNextLine = 38
|
2019-10-26 02:11:28 -04:00
|
|
|
} else {
|
2019-11-15 19:47:58 -05:00
|
|
|
v.cyclesTillNextLine = 19
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-10 08:51:02 -05:00
|
|
|
func (v *Credits) getNewFontLabel(isHeading bool) *d2ui.Label {
|
2019-10-26 02:11:28 -04:00
|
|
|
for _, label := range v.labels {
|
|
|
|
if label.Available {
|
|
|
|
label.Available = false
|
2019-10-26 10:34:55 -04:00
|
|
|
if isHeading {
|
2020-02-01 21:51:49 -05:00
|
|
|
label.Label.Color = color.RGBA{R: 255, G: 88, B: 82, A: 255}
|
2019-10-26 10:34:55 -04:00
|
|
|
} else {
|
2020-02-01 21:51:49 -05:00
|
|
|
label.Label.Color = color.RGBA{R: 198, G: 178, B: 150, A: 255}
|
2019-10-26 10:34:55 -04:00
|
|
|
}
|
2019-11-10 12:28:41 -05:00
|
|
|
return &label.Label
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
newLabelItem := &labelItem{
|
|
|
|
Available: false,
|
|
|
|
IsHeading: isHeading,
|
2019-12-21 20:53:18 -05:00
|
|
|
Label: d2ui.CreateLabel(d2resource.FontFormal10, d2resource.PaletteSky),
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if isHeading {
|
2020-02-01 21:51:49 -05:00
|
|
|
newLabelItem.Label.Color = color.RGBA{R: 255, G: 88, B: 82, A: 255}
|
2019-10-26 02:11:28 -04:00
|
|
|
} else {
|
2020-02-01 21:51:49 -05:00
|
|
|
newLabelItem.Label.Color = color.RGBA{R: 198, G: 178, B: 150, A: 255}
|
2019-10-26 02:11:28 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
v.labels = append(v.labels, newLabelItem)
|
2019-11-10 12:28:41 -05:00
|
|
|
return &newLabelItem.Label
|
2019-10-26 02:11:28 -04:00
|
|
|
}
|