mirror of
https://github.com/chenasraf/stimvisor.git
synced 2026-05-18 01:39:07 +00:00
100 lines
2.2 KiB
Go
100 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/chenasraf/stimvisor/dirs"
|
|
"github.com/wailsapp/wails/v2/pkg/runtime"
|
|
)
|
|
|
|
// App struct
|
|
type App struct {
|
|
ctx context.Context
|
|
}
|
|
|
|
// NewApp creates a new App application struct
|
|
func NewApp() *App {
|
|
return &App{}
|
|
}
|
|
|
|
// startup is called when the app starts. The context is saved
|
|
// so we can call the runtime methods
|
|
func (a *App) startup(ctx context.Context) {
|
|
a.ctx = ctx
|
|
}
|
|
|
|
func SteamLibraryMetaError(err error) SteamLibraryMeta {
|
|
return SteamLibraryMeta{Error: err.Error()}
|
|
}
|
|
|
|
type SteamLibraryMeta struct {
|
|
Error string `json:"error,omitempty"`
|
|
SteamDir string `json:"steamDir"`
|
|
UserDir string `json:"userDir"`
|
|
GameDirs []string `json:"gameDirs"`
|
|
SyncDir string `json:"syncDir"`
|
|
}
|
|
|
|
func (a *App) GetSteamLibraryMeta() SteamLibraryMeta {
|
|
p, err := dirs.GetSteamDirectory()
|
|
if err != nil {
|
|
return SteamLibraryMetaError(err)
|
|
}
|
|
userDir, err := dirs.GetSteamUserDirectory()
|
|
if err != nil {
|
|
return SteamLibraryMetaError(err)
|
|
}
|
|
// fmt.Printf("User Dir: %s\n", userDir)
|
|
userId := filepath.Base(userDir)
|
|
gd, err := dirs.GetGameDirectories(userId)
|
|
if err != nil {
|
|
return SteamLibraryMetaError(err)
|
|
}
|
|
syncDir, err := dirs.GetSyncDirectory()
|
|
if err != nil {
|
|
return SteamLibraryMetaError(err)
|
|
}
|
|
out := SteamLibraryMeta{
|
|
SteamDir: p,
|
|
GameDirs: gd,
|
|
UserDir: userDir,
|
|
SyncDir: syncDir,
|
|
}
|
|
|
|
return out
|
|
}
|
|
|
|
type ScreenshotsDirs struct {
|
|
Error string `json:"error,omitempty"`
|
|
ScreenshotsDirs []dirs.ScreenshotsDir `json:"screenshotsDirs"`
|
|
}
|
|
|
|
func ScreenshotsDirsError(err error) ScreenshotsDirs {
|
|
return ScreenshotsDirs{Error: err.Error()}
|
|
}
|
|
|
|
func (a *App) GetScreenshots() ScreenshotsDirs {
|
|
screenshotsDirPaths, err := dirs.GetScreenshotsDirs()
|
|
if err != nil {
|
|
return ScreenshotsDirsError(err)
|
|
}
|
|
screenshotsDirs := []dirs.ScreenshotsDir{}
|
|
for _, path := range screenshotsDirPaths {
|
|
screenshotsDirs = append(screenshotsDirs, dirs.NewScreenshotsDirFromPath(path))
|
|
}
|
|
return ScreenshotsDirs{ScreenshotsDirs: screenshotsDirs}
|
|
}
|
|
|
|
func (a *App) OnWindowResize() {
|
|
config := GetConfig()
|
|
|
|
w, h := runtime.WindowGetSize(a.ctx)
|
|
fmt.Printf("OnWindowResize: %d, %d\n", w, h)
|
|
config.WindowWidth = w
|
|
config.WindowHeight = h
|
|
|
|
config.Save()
|
|
}
|