[PR #362] [MERGED] Keep track of what games use what syscalls #438

Closed
opened 2026-02-15 15:55:57 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/362
Author: @13xforever
Created: 8/7/2019
Status: Merged
Merged: 8/7/2019
Merged by: @13xforever

Base: masterHead: vnext


📝 Commits (10+)

  • d6e377e slight tweaks to the clairvoyance unit
  • ec73bbf recommend mega block size for gow3
  • f09a265 support new lib loader modes
  • b70cbd7 improve event editor
  • 6d37c2a extract log parsing method for testing purposes
  • 2e493ba do not react on github lookups
  • bc14931 collect function call stats per game
  • fda07e4 persist syscall information
  • 0a582f3 update deps
  • 22820cd fix build

📊 Changes

23 files changed (+684 additions, -137 deletions)

View changed files

📝 CompatBot/Commands/EventsBaseCommand.cs (+3 -1)
📝 CompatBot/Commands/Explain.cs (+1 -1)
📝 CompatBot/Commands/Misc.cs (+24 -14)
CompatBot/Commands/Syscall.cs (+84 -0)
📝 CompatBot/Commands/Warnings.ListGroup.cs (+1 -1)
📝 CompatBot/CompatBot.csproj (+5 -5)
📝 CompatBot/Database/BotDb.cs (+3 -3)
CompatBot/Database/Migrations/ThumbnailDb/20190807141221_SyscallInfo.Designer.cs (+183 -0)
CompatBot/Database/Migrations/ThumbnailDb/20190807141221_SyscallInfo.cs (+72 -0)
📝 CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs (+59 -1)
CompatBot/Database/Providers/SyscallInfoProvider.cs (+47 -0)
📝 CompatBot/Database/ThumbnailDb.cs (+28 -0)
📝 CompatBot/EventHandlers/GithubLinksHandler.cs (+8 -16)
📝 CompatBot/EventHandlers/LogParsing/ArchiveHandlers/IArchiveHandler.cs (+1 -1)
📝 CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs (+6 -0)
📝 CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs (+49 -26)
📝 CompatBot/EventHandlers/LogParsing/POCOs/LogParseState.cs (+2 -1)
📝 CompatBot/EventHandlers/LogParsing/SourceHandlers/ISourceHandler.cs (+2 -2)
📝 CompatBot/EventHandlers/LogParsingHandler.cs (+92 -59)
📝 CompatBot/Program.cs (+1 -0)

...and 3 more files

📄 Description

  • You can search what games use specific syscall, or system module
  • You can search what module and function specific game used

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RPCS3/discord-bot/pull/362 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 8/7/2019 **Status:** ✅ Merged **Merged:** 8/7/2019 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (10+) - [`d6e377e`](https://github.com/RPCS3/discord-bot/commit/d6e377ea4d77c2df80d0ca75217586a25e5301b2) slight tweaks to the clairvoyance unit - [`ec73bbf`](https://github.com/RPCS3/discord-bot/commit/ec73bbf42f0cdd774f125c668ee3011bffd295db) recommend mega block size for gow3 - [`f09a265`](https://github.com/RPCS3/discord-bot/commit/f09a265a148a2bab2f7e7be425cd9f59c1234aad) support new lib loader modes - [`b70cbd7`](https://github.com/RPCS3/discord-bot/commit/b70cbd7b80941509465fdbc19ca4c1f57f35606a) improve event editor - [`6d37c2a`](https://github.com/RPCS3/discord-bot/commit/6d37c2ac0008bc5ddac8cd65cb82546e3485184a) extract log parsing method for testing purposes - [`2e493ba`](https://github.com/RPCS3/discord-bot/commit/2e493ba757c10d57c48aa361000d10b4d034bb05) do not react on github lookups - [`bc14931`](https://github.com/RPCS3/discord-bot/commit/bc14931d397f691b000e6ca4399409dec750ccac) collect function call stats per game - [`fda07e4`](https://github.com/RPCS3/discord-bot/commit/fda07e446f0e749ce96ed70c8de9df94b5a937c7) persist syscall information - [`0a582f3`](https://github.com/RPCS3/discord-bot/commit/0a582f31df8a353960e5e90ee95c02bbffee1b40) update deps - [`22820cd`](https://github.com/RPCS3/discord-bot/commit/22820cd21154c5208abe559be213ae7df98a5e8f) fix build ### 📊 Changes **23 files changed** (+684 additions, -137 deletions) <details> <summary>View changed files</summary> 📝 `CompatBot/Commands/EventsBaseCommand.cs` (+3 -1) 📝 `CompatBot/Commands/Explain.cs` (+1 -1) 📝 `CompatBot/Commands/Misc.cs` (+24 -14) ➕ `CompatBot/Commands/Syscall.cs` (+84 -0) 📝 `CompatBot/Commands/Warnings.ListGroup.cs` (+1 -1) 📝 `CompatBot/CompatBot.csproj` (+5 -5) 📝 `CompatBot/Database/BotDb.cs` (+3 -3) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20190807141221_SyscallInfo.Designer.cs` (+183 -0) ➕ `CompatBot/Database/Migrations/ThumbnailDb/20190807141221_SyscallInfo.cs` (+72 -0) 📝 `CompatBot/Database/Migrations/ThumbnailDb/ThumbnailDbModelSnapshot.cs` (+59 -1) ➕ `CompatBot/Database/Providers/SyscallInfoProvider.cs` (+47 -0) 📝 `CompatBot/Database/ThumbnailDb.cs` (+28 -0) 📝 `CompatBot/EventHandlers/GithubLinksHandler.cs` (+8 -16) 📝 `CompatBot/EventHandlers/LogParsing/ArchiveHandlers/IArchiveHandler.cs` (+1 -1) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs` (+6 -0) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs` (+49 -26) 📝 `CompatBot/EventHandlers/LogParsing/POCOs/LogParseState.cs` (+2 -1) 📝 `CompatBot/EventHandlers/LogParsing/SourceHandlers/ISourceHandler.cs` (+2 -2) 📝 `CompatBot/EventHandlers/LogParsingHandler.cs` (+92 -59) 📝 `CompatBot/Program.cs` (+1 -0) _...and 3 more files_ </details> ### 📄 Description * You can search what games use specific syscall, or system module * You can search what module and function specific game used --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 15:55:57 -05:00
yindo closed this issue 2026-02-15 15:55:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RPCS3/discord-bot#438