Gopher2600/gui/sdlimgui/manager_state.go
JetSetIlly 3aa5885ebe removed curated pacakge. replaced with wrapped errors
curated package predated the standard errors package introduced in
go1.13

the standard package does a better job of what curated attempted to do

the change of package also gave me a opportunity to clean up the error
messages a little bit
2023-02-13 21:58:39 +00:00

178 lines
4.8 KiB
Go

// This file is part of Gopher2600.
//
// Gopher2600 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Gopher2600 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package sdlimgui
import (
"bufio"
"fmt"
"os"
"strings"
"github.com/jetsetilly/gopher2600/debugger/govern"
"github.com/jetsetilly/gopher2600/prefs"
"github.com/jetsetilly/gopher2600/resources"
"github.com/jetsetilly/gopher2600/resources/fs"
)
const managerStateFile = "managerState"
const managerStateNumFields = 3
// save window open/close state to disk.
//
// uses a similar method to the prefs package and in fact references the prefs
// package for consistency
//
// called once on destroy
func (wm *manager) saveManagerState() (rerr error) {
pth, err := resources.JoinPath(managerStateFile)
if err != nil {
return fmt.Errorf("manager state: %w", err)
}
// create a new state file
f, err := fs.Create(pth)
if err != nil {
return fmt.Errorf("manager state: %w", err)
}
defer func() {
err := f.Close()
if err != nil {
rerr = fmt.Errorf("manager state: %w", err)
}
}()
// write boiler plate warning to manager state file
s := fmt.Sprintf("%s\n", prefs.WarningBoilerPlate)
n, err := fmt.Fprint(f, s)
if err != nil {
return fmt.Errorf("manager state: %w", err)
}
if n != len(s) {
return fmt.Errorf("manager state: incorrect number of characters written to file")
}
// walk through debugger and playmode window lists and save state of each
//
// the state of the "ROM select" window is never saved. currently, this is
// the only window which is specially handled
for key, win := range wm.debuggerWindows {
// do not save select ROM window. having the ROM window open on
// debugger start is confusing
if key == winSelectROMID {
continue
}
s := fmt.Sprintf("%s%s%s%s%v\n", govern.ModeDebugger.String(), prefs.KeySep, key, prefs.KeySep, win.debuggerIsOpen())
n, err := fmt.Fprint(f, s)
if err != nil {
return fmt.Errorf("manager state: %w", err)
}
if n != len(s) {
return fmt.Errorf("manager state: incorrect number of characters written to file")
}
}
for key, win := range wm.playmodeWindows {
// do not save select ROM window. handling of this window is more
// delicate that other playmode windows
if key == winSelectROMID {
continue
}
s := fmt.Sprintf("%s%s%s%s%v\n", govern.ModePlay.String(), prefs.KeySep, key, prefs.KeySep, win.playmodeIsOpen())
n, err := fmt.Fprint(f, s)
if err != nil {
return fmt.Errorf("manager state: %w", err)
}
if n != len(s) {
return fmt.Errorf("manager state: incorrect number of characters written to file")
}
}
return nil
}
// load window open/close state from disk.
//
// uses a similar method to the prefs package and in fact references the prefs
// package for consistency
//
// called once on startup
func (wm *manager) loadManagerState() (rerr error) {
pth, err := resources.JoinPath(managerStateFile)
if err != nil {
return fmt.Errorf("manager state: %w", err)
}
// open an existing state file
f, err := fs.Open(pth)
if err != nil {
switch err.(type) {
case *os.PathError:
return nil
}
return fmt.Errorf("manager state: %w", err)
}
defer func() {
err := f.Close()
if err != nil {
rerr = fmt.Errorf("manager state: %w", err)
}
}()
// new scanner - splitting on newlines
scanner := bufio.NewScanner(f)
// check validity of file by checking the first line for the boiler plate warning
scanner.Scan()
if len(scanner.Text()) > 0 && scanner.Text() != prefs.WarningBoilerPlate {
return fmt.Errorf("manager state: not a valid manager state file (%s)", pth)
}
// loop through file until EOF
for scanner.Scan() {
// split line into key/value pair
spt := strings.SplitN(scanner.Text(), prefs.KeySep, managerStateNumFields)
// ignore lines that haven't been split successfully
if len(spt) != managerStateNumFields {
continue
}
// open/close window according to the state file
m := spt[0]
k := spt[1]
v := spt[2]
if m == govern.ModeDebugger.String() {
if w, ok := wm.debuggerWindows[k]; ok {
w.debuggerSetOpen(strings.ToUpper(v) == "TRUE")
}
}
if m == govern.ModePlay.String() {
if w, ok := wm.playmodeWindows[k]; ok {
w.playmodeSetOpen(strings.ToUpper(v) == "TRUE")
}
}
}
// hold arrangeBySize signal for 5 frames
wm.arrangeBySize = 5
return nil
}