-
-
Notifications
You must be signed in to change notification settings - Fork 189
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
Add EntityType DeferredRegister #1854
Open
ChampionAsh5357
wants to merge
1
commit into
neoforged:1.21.x
Choose a base branch
from
ChampionAsh5357:feat/annoying-entitytype-generics
base: 1.21.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+59
−21
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,9 @@ | |
import net.minecraft.resources.ResourceKey; | ||
import net.minecraft.resources.ResourceLocation; | ||
import net.minecraft.tags.TagKey; | ||
import net.minecraft.world.entity.Entity; | ||
import net.minecraft.world.entity.EntityType; | ||
import net.minecraft.world.entity.MobCategory; | ||
import net.minecraft.world.item.BlockItem; | ||
import net.minecraft.world.item.Item; | ||
import net.minecraft.world.level.block.Block; | ||
|
@@ -170,6 +173,18 @@ public static DataComponents createDataComponents(ResourceKey<Registry<DataCompo | |
return new DataComponents(registryKey, modid); | ||
} | ||
|
||
/** | ||
* Factory for a specialized DeferredRegister for {@link EntityType EntityTypes}. | ||
* | ||
* @param modid The namespace for all objects registered to this DeferredRegister | ||
* @see #create(Registry, String) | ||
* @see #create(ResourceKey, String) | ||
* @see #create(ResourceLocation, String) | ||
*/ | ||
public static EntityTypes createEntityTypes(String modid) { | ||
return new EntityTypes(modid); | ||
} | ||
|
||
private final ResourceKey<? extends Registry<T>> registryKey; | ||
private final String namespace; | ||
private final Map<DeferredHolder<T, ? extends T>, Supplier<? extends T>> entries = new LinkedHashMap<>(); | ||
|
@@ -648,6 +663,29 @@ public <D> DeferredHolder<DataComponentType<?>, DataComponentType<D>> registerCo | |
} | ||
} | ||
|
||
/** | ||
* Specialized DeferredRegister for {@link EntityType EntityTypes}. | ||
*/ | ||
public static class EntityTypes extends DeferredRegister<EntityType<?>> { | ||
protected EntityTypes(String namespace) { | ||
super(Registries.ENTITY_TYPE, namespace); | ||
} | ||
|
||
/** | ||
* Convenience method that constructs a builder for use in the operator. Use this to avoid inference issues. | ||
* | ||
* @param name The name for this entity type. It will automatically have the {@linkplain #getNamespace() namespace} prefixed. | ||
* @param factory The factory used to typically construct the entity when using an existing helper from the type. | ||
* @param category The category of the entity, typically {@link MobCategory#MISC} for non-living entities, or one of the others for living entities. | ||
* @param builder The unary operator, which is passed a new builder for user operators, then builds it upon registration. | ||
* @return A {@link DeferredHolder} which reflects the data that will be registered. | ||
* @param <E> the type of the entity | ||
*/ | ||
public <E extends Entity> DeferredHolder<EntityType<?>, EntityType<E>> registerType(String name, EntityType.EntityFactory<E> factory, MobCategory category, UnaryOperator<EntityType.Builder<E>> builder) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wonder if it should be called There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have no opinion on this, so I can rename if desired. |
||
return this.register(name, key -> builder.apply(EntityType.Builder.of(factory, category)).build(ResourceKey.create(Registries.ENTITY_TYPE, key))); | ||
} | ||
} | ||
|
||
private static class RegistryHolder<V> implements Supplier<Registry<V>> { | ||
private final ResourceKey<? extends Registry<V>> registryKey; | ||
private Registry<V> registry = null; | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
I wonder if it should be called
Entities
to matchDataComponents
above.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.
I called it
$EntityTypes
as that is what the test framework class calls them; however I can rename if desired.