You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
477 B
Go
25 lines
477 B
Go
6 months ago
|
package savedata
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/pagefaultgames/rogueserver/db"
|
||
|
"github.com/pagefaultgames/rogueserver/defs"
|
||
|
)
|
||
|
|
||
|
func Session(uuid []byte, slot int) (defs.SessionSaveData, error) {
|
||
|
var session defs.SessionSaveData
|
||
|
|
||
|
if slot < 0 || slot >= defs.SessionSlotCount {
|
||
|
return session, fmt.Errorf("slot id %d out of range", slot)
|
||
|
}
|
||
|
|
||
|
var err error
|
||
|
session, err = db.ReadSessionSaveData(uuid, slot)
|
||
|
if err != nil {
|
||
|
return session, err
|
||
|
}
|
||
|
|
||
|
return session, nil
|
||
|
}
|