Add Soapstone param RPC methods#522
Merged
Merged
Conversation
…arams, DescribeParam, GetParamRow, GetParamRows, SetParamCell, ListParamRows)
Contributor
Author
|
I use them in conjunction with an external CLI script, which is very useful for data mining using LLMs. Additionally, it’s helpful to use external scripts to connect to SmithBox, make real-time modifications, and reload the changes into the game. |
4e1787c to
3ec08c5
Compare
Translate all 64 JSON files (2083 entries) to Simplified Chinese. Register Chinese language in Languages.json. Preserve technical terms: Param, FLVER, MSB, FMG, BND, VFS, etc. Use official Chinese game names for all FromSoftware titles.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds 8 new gRPC methods to the Soapstone server, enabling remote access to Param Editor data via RPC.
New RPC Methods
ListParamsDescribeParamGetParamRowGetParamRowsListParamRowsSetParamCellExecuteMassEditReloadParamsOther Changes
SoulsMemoryHandler.cs: AddProjectType.NR(NightReign) toGetRowCount()type checkSoulsMemoryHandler.cs: Fix staticProcessOffsetBankdictionary leak —Terminate()now removes entriesSoapstoneClient.cs: Fix gRPC channel shutdown fire-and-forget — now waits for pending shutdown before creating newconnections
SoapstoneServer.cs: Add Kestrel connection limits (MaxConcurrentConnections = 100,KeepAliveTimeout = 2 min)Files Changed
Proto/internal.proto— new message typesProto/soapstone.proto— 8 new RPC definitionsSoapstoneServer.cs— method handlers + Kestrel limitsSoapstoneServiceV1.cs— new virtual method declarationsSoapstoneService.cs— service implementationsSoapstoneClient.cs— channel shutdown fixSoulsMemoryHandler.cs— NR support + dictionary leak fix