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

Incorporate Ludusavi manifest #107

Merged
merged 15 commits into from
Apr 23, 2023
Merged

Incorporate Ludusavi manifest #107

merged 15 commits into from
Apr 23, 2023

Conversation

DavidDeSimone
Copy link
Owner

This is a draft PR for adding support for the Ludusavi manifest. This will add over 46,000 (!!!) game definitions available on the app. This will have the ability to update in real time as the manifest updates.

Comment on lines 255 to 270
func (grm *GameRecordManagerImpl) CommitCustomGameRecords() error {
grm.mu.Lock()
defer grm.mu.Unlock()

data, err := yaml.Marshal(grm.gameRecords)
if err != nil {
return err
}

err = os.WriteFile(grm.manifestLocation, data, os.ModePerm)
if err != nil {
return err
}

return nil
}
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needs to store this as binary, not yaml

Comment on lines 238 to 253
func (grm *GameRecordManagerImpl) RefreshManifestFromDisk() error {
grm.mu.Lock()
defer grm.mu.Unlock()

data, err := os.ReadFile(grm.manifestLocation)
if err != nil {
return err
}

err = yaml.Unmarshal(data, &grm.gameRecords)
if err != nil {
return err
}

return nil
}
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needs to read binary, not yml

@DavidDeSimone DavidDeSimone marked this pull request as ready for review April 23, 2023 17:22
@DavidDeSimone DavidDeSimone changed the title [Draft] Incorporate Ludusavi manifest Incorporate Ludusavi manifest Apr 23, 2023
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

Successfully merging this pull request may close these issues.

1 participant