Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to open save file from Journey to the Savage Planet #13

Closed
qwandor opened this issue Dec 18, 2023 · 1 comment
Closed

Unable to open save file from Journey to the Savage Planet #13

qwandor opened this issue Dec 18, 2023 · 1 comment

Comments

@qwandor
Copy link

qwandor commented Dec 18, 2023

I'm trying to figure out why my save files from Journey to the Savage Planet on Stadia aren't working on the Steam version, and so being able to compare them would be useful. Unfortunately there seems to be a bug preventing uesave from reading them:

$ uesave to-json < save.bin
Error: unknown property type: "TextLanguage"

I've attached a zip file containing the save file.

Journey to the Savage Planet_1001_gamesave.zip

@trumank
Copy link
Owner

trumank commented Dec 19, 2023

This save is a pretty good test case, so thanks for uploading it! Finally took the time to properly implement text properties from the ground (still incomplete as text localization stuff is huge, but the groundwork is there now).

It also features an FName array which gets serialized as a two-member struct with each member having the same key name. I made the assumption member names have to be unique so to fix it requires some pretty significant changes to the API which hampers JSON readability quite a bit. I implemented a possible solution (store property key/value pairs in a vec instead of in a map) here, but I'm hoping there's a better solution before merging it. For now, this save will parse without error but there will be a member missing from the TrackedQuestsNames array in the resulting JSON.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants