support for unlocking trophies (#854)

* add pugixml

* trophy_viewer: support for trophy unlocking

* nptrophy: UnlockTrophy(), DestroyContext()

* initial imgui popup

* queue to handle multiple trophies at once

* extract trophy info on game start + various fixes

* platinum trophy support + extract trophy data on startup

* format

* nptrophy: GetTrophyUnlockState

* implement vinicius' reviews
This commit is contained in:
CrazyBloo 2024-09-10 23:50:55 -04:00 committed by GitHub
parent c5b8e492f6
commit 74c2888aaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 607 additions and 53 deletions

View file

@ -178,3 +178,8 @@ option(TRACY_NO_SAMPLING "" ON)
option(TRACY_ONLY_LOCALHOST "" ON)
option(TRACY_NO_CONTEXT_SWITCH "" ON)
add_subdirectory(tracy)
# pugixml
if (NOT TARGET pugixml::pugixml)
add_subdirectory(pugixml)
endif()