-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Code Generation for TypedKeys #9233
Conversation
I'm curious, is there any better way to have auto-generated files in some sort of their own module that can be merged with the API one, therefore doesn't need to use the patch system? Not sure tho. |
dependencies are gonna be fun if we do that |
4da5e26
to
35dd374
Compare
Looking at this so far, no real qualms against it, and generally looks like what I'd expect in regards to output, etc; only thing is the create methods, I'm guessing that there is still a bit of wiring up to do there |
bd161b8
to
ca10f05
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs paperweight release and RegistryKey PR, but looks good to me
ca10f05
to
d331027
Compare
d331027
to
b39c29d
Compare
50f4743
to
e11fab5
Compare
adea1f6
to
f0be001
Compare
f0be001
to
4763950
Compare
5ae6266
to
ee5f94a
Compare
ba70fdf
to
c86bba7
Compare
Currently includes generated key holder classes for types used in the Registry Modification API
c86bba7
to
715fa94
Compare
Currently includes generated key holder classes for types used in the Registry Modification API
Currently includes generated key holder classes for types
used in the Registry Modification API
Tasks
I think its acceptable that this is a manual thing, and the generated code just goes into a patch file, rather than being created for each applyPatches. Once we have source in repo, it won't be a large patch. Its also just one less build step
The reason why this is needed, and really should only be used in conjunction with the Registry Modification API, is that you have to specify the key of any value you want to modify, but you cannot use the API object itself to get the key, like for
GameEvent
. If you wanted to modify the range of a specificGameEvent
, you can't get the key fromGameEvent.BLOCK_OPEN.getKey()
, because the Registry Modification API runs before those objects can be created. So doing that will throw an exception. So we haveGameEventKeys
which will hold some sort of TypedKey object that you can use instead. Of course for custom ones, you can create your own keys.