CustomSpawnRequest2 with arbitrary user data inserted into NpcData #306
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.
Changes
Added a new parameter
string context
toMESApi.CustomSpawnRequest()
, which is inserted intoNpcData.Context
of spawned NPC grids.Background
I wasn't able to reliably track each spawn request's corresponding grid when I spawn a single spawn group multiple times simultaneously in close proximity. I guess that kind of usage wasn't expected. This PR would allow me to retrieve an identifier of each spawn request upon a callback of
RegisterSuccessfulSpawnAction()
or a modded block's init function.For an added value, the string data can carry around XML which may be useful to pass arbitrary data to grids.
Implementation notes
For backward compatibility, I didn't get to change the signature of
CustomSpawnRequest()
but added an override, with a single parameterargs
, which is of new typeCustomSpawnRequestArgs
. Internally, API will pass around astring -> object
dictionary that is converted to/from this class.This approach also allows you to safely add other parameters to the function in future updates.
Tests conducted prior to PR
CustomSpawnRequest()
withcontext
data and confirmed working as expected.CustomSpawnRequest()
and confirmed that the behavior hasn't changed./MES.SSCS
and natural spawns and confirmed the behavior hasn't changed.