2024-04-29 17:26:46 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2024 Pagefault Games
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2024-04-29 15:32:58 -04:00
|
|
|
|
2024-04-14 20:03:53 -04:00
|
|
|
package savedata
|
2024-03-16 21:51:13 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/gob"
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/klauspost/compress/zstd"
|
2024-04-29 15:22:27 -04:00
|
|
|
"github.com/pagefaultgames/rogueserver/defs"
|
2024-03-16 21:51:13 -04:00
|
|
|
)
|
|
|
|
|
2024-04-01 22:54:55 -04:00
|
|
|
func readSystemSaveData(uuid []byte) (defs.SystemSaveData, error) {
|
2024-03-17 13:18:51 -04:00
|
|
|
var system defs.SystemSaveData
|
2024-03-16 21:51:13 -04:00
|
|
|
|
2024-04-10 07:25:39 -04:00
|
|
|
file, err := os.Open("userdata/" + hex.EncodeToString(uuid) + "/system.pzs")
|
2024-03-16 21:51:13 -04:00
|
|
|
if err != nil {
|
2024-04-11 00:15:07 -04:00
|
|
|
return system, fmt.Errorf("failed to open save file for reading: %s", err)
|
2024-03-16 21:51:13 -04:00
|
|
|
}
|
|
|
|
|
2024-04-10 15:39:53 -04:00
|
|
|
defer file.Close()
|
|
|
|
|
2024-04-10 07:25:39 -04:00
|
|
|
zstdDecoder, err := zstd.NewReader(file)
|
2024-03-16 21:51:13 -04:00
|
|
|
if err != nil {
|
2024-04-10 07:25:39 -04:00
|
|
|
return system, fmt.Errorf("failed to create zstd decoder: %s", err)
|
2024-03-16 21:51:13 -04:00
|
|
|
}
|
|
|
|
|
2024-04-10 15:39:53 -04:00
|
|
|
defer zstdDecoder.Close()
|
|
|
|
|
2024-04-10 07:25:39 -04:00
|
|
|
err = gob.NewDecoder(zstdDecoder).Decode(&system)
|
2024-03-16 21:51:13 -04:00
|
|
|
if err != nil {
|
|
|
|
return system, fmt.Errorf("failed to deserialize save: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return system, nil
|
|
|
|
}
|
|
|
|
|
2024-04-08 18:15:09 -04:00
|
|
|
func readSessionSaveData(uuid []byte, slotID int) (defs.SessionSaveData, error) {
|
2024-03-17 13:18:51 -04:00
|
|
|
var session defs.SessionSaveData
|
2024-03-16 21:51:13 -04:00
|
|
|
|
|
|
|
fileName := "session"
|
2024-04-08 18:15:09 -04:00
|
|
|
if slotID != 0 {
|
|
|
|
fileName += strconv.Itoa(slotID)
|
2024-03-16 21:51:13 -04:00
|
|
|
}
|
|
|
|
|
2024-04-10 07:25:39 -04:00
|
|
|
file, err := os.Open(fmt.Sprintf("userdata/%s/%s.pzs", hex.EncodeToString(uuid), fileName))
|
2024-03-16 21:51:13 -04:00
|
|
|
if err != nil {
|
2024-04-11 00:15:07 -04:00
|
|
|
return session, fmt.Errorf("failed to open save file for reading: %s", err)
|
2024-03-16 21:51:13 -04:00
|
|
|
}
|
|
|
|
|
2024-04-10 15:39:53 -04:00
|
|
|
defer file.Close()
|
|
|
|
|
2024-04-10 07:25:39 -04:00
|
|
|
zstdDecoder, err := zstd.NewReader(file)
|
2024-03-16 21:51:13 -04:00
|
|
|
if err != nil {
|
2024-04-10 07:25:39 -04:00
|
|
|
return session, fmt.Errorf("failed to create zstd decoder: %s", err)
|
2024-03-16 21:51:13 -04:00
|
|
|
}
|
|
|
|
|
2024-04-10 15:39:53 -04:00
|
|
|
defer zstdDecoder.Close()
|
|
|
|
|
2024-04-10 07:25:39 -04:00
|
|
|
err = gob.NewDecoder(zstdDecoder).Decode(&session)
|
2024-03-16 21:51:13 -04:00
|
|
|
if err != nil {
|
|
|
|
return session, fmt.Errorf("failed to deserialize save: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return session, nil
|
|
|
|
}
|
|
|
|
|
2024-04-01 22:54:55 -04:00
|
|
|
func validateSessionCompleted(session defs.SessionSaveData) bool {
|
2024-03-16 21:51:13 -04:00
|
|
|
switch session.GameMode {
|
|
|
|
case 0:
|
2024-03-18 19:55:02 -04:00
|
|
|
return session.BattleType == 2 && session.WaveIndex == 200
|
2024-03-16 21:51:13 -04:00
|
|
|
case 3:
|
2024-03-18 19:55:02 -04:00
|
|
|
return session.BattleType == 2 && session.WaveIndex == 50
|
2024-03-16 21:51:13 -04:00
|
|
|
}
|
2024-04-01 22:54:55 -04:00
|
|
|
|
2024-03-16 21:51:13 -04:00
|
|
|
return false
|
|
|
|
}
|