2024-04-29 12:32:58 -07:00
|
|
|
// Copyright (C) 2024 Pagefault Games - All Rights Reserved
|
|
|
|
// https://github.com/pagefaultgames
|
|
|
|
|
2024-04-14 17:03:53 -07:00
|
|
|
package savedata
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
2024-04-29 12:22:27 -07:00
|
|
|
"github.com/pagefaultgames/rogueserver/db"
|
|
|
|
"github.com/pagefaultgames/rogueserver/defs"
|
2024-04-14 17:03:53 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// /savedata/get - get save data
|
|
|
|
func Get(uuid []byte, datatype, slot int) (any, error) {
|
|
|
|
switch datatype {
|
|
|
|
case 0: // System
|
|
|
|
system, err := readSystemSaveData(uuid)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
compensations, err := db.FetchAndClaimAccountCompensations(uuid)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to fetch compensations: %s", err)
|
|
|
|
}
|
|
|
|
|
2024-04-17 23:11:31 -07:00
|
|
|
for compensationType, amount := range compensations {
|
|
|
|
system.VoucherCounts[strconv.Itoa(compensationType)] += amount
|
2024-04-14 17:03:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return system, nil
|
|
|
|
case 1: // Session
|
|
|
|
if slot < 0 || slot >= defs.SessionSlotCount {
|
|
|
|
return nil, fmt.Errorf("slot id %d out of range", slot)
|
|
|
|
}
|
|
|
|
|
|
|
|
session, err := readSessionSaveData(uuid, slot)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return session, nil
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("invalid data type")
|
|
|
|
}
|
|
|
|
}
|