Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Getting an Entity from EntityType
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 0
Turtledove

Getting an Entity from EntityType

By Turtledove, December 5, 2020 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

Turtledove    4

Turtledove

Turtledove    4

  • Creeper Killer
  • Turtledove
  • Members
  • 4
  • 133 posts
Posted December 5, 2020 (edited)

So I need to create a lookup table of several of my custom entities, via the EntityType members of my entity registry. The entities are successfully registered;

 

    public static final EntityType<DemonFangEntity> DEMON_FANG = registerEntity(EntityType.Builder.create(DemonFangEntity::new, EntityClassification.MISC).size(0.7F, 0.7F), "demon_fang");

 

and when I need an entity to spawn I simply call the following method where I try to return an entity via a string key. In this case, I'd need this to return a DemonFangEntity object (it extends WithernautsMagicEntity):

 

    public WithernautsMagicEntity getMagicEntity(World worldIn, String key)
    {
        try {
            for (Field f : EntityRegistry.class.getDeclaredFields())
            {
                Object obj = f.get(null);
                if (obj instanceof EntityType)
                {
                    EntityType type = (EntityType)obj;
                    Entity entity = type.create(worldIn);
                    if (entity instanceof WithernautsMagicEntity)
                    {
                        WithernautsMagicEntity magicEntity = (WithernautsMagicEntity)entity;
                        if (magicEntity.getKey().equals(key))
                            return magicEntity;
                    }
                }
            }
            throw new IllegalArgumentException();
        } catch (IllegalAccessException e)
        {
            throw new RuntimeException(e);
        }
    }

 

However, this method currently throws an exception because Entity entity = type.create(worldIn) returns null. What's a way I could correctly return an object of EntityType's template type? Or is this just not possible without reflection?

 

Sidenote: I'm trying to do it this way because I don't want to create a giant conditional statement since it would not scale well at all with my project's scope.

Edited December 5, 2020 by Turtledove
  • Quote

Share this post


Link to post
Share on other sites

kiou.23    5

kiou.23

kiou.23    5

  • Creeper Killer
  • kiou.23
  • Members
  • 5
  • 158 posts
Posted December 5, 2020

Okay...

first thing wrong is with your reflection code: you are passing null into the .get() method, that's not how it works.

you need to pass it an instance of the Object that you got the Field from, in this case you need the instance of EntityRegistry.

 

But there's a way better way of accomplishing what you want, you can just get the Deffered Register from your EntityRegistry class, and it has a method called .getEntries(), I think it's pretty self explanatory what it does.

 

This should solve your problem and drastically simplify the code

  • Quote

Share this post


Link to post
Share on other sites

kiou.23    5

kiou.23

kiou.23    5

  • Creeper Killer
  • kiou.23
  • Members
  • 5
  • 158 posts
Posted December 5, 2020
1 hour ago, Turtledove said:

Sidenote: I'm trying to do it this way because I don't want to create a giant conditional statement since it would not scale well at all with my project's scope.

I don't see in which scenario not using reflection would result in a giant conditional statement

 

1 hour ago, Turtledove said:

and when I need an entity to spawn I simply call the following method where I try to return an entity via a string key.

Trying to get things by string is very error-prone, you should at a minimun store the Entity Id String in your EntityRegistry as a static final, and then use it when needed

  • Quote

Share this post


Link to post
Share on other sites

Turtledove    4

Turtledove

Turtledove    4

  • Creeper Killer
  • Turtledove
  • Members
  • 4
  • 133 posts
Posted December 5, 2020 (edited)
30 minutes ago, kiou.23 said:

I don't see in which scenario not using reflection would result in a giant conditional statement

 

Trying to get things by string is very error-prone, you should at a minimun store the Entity Id String in your EntityRegistry as a static final, and then use it when needed

Ugly conditionals, as in:

switch key:
	case 'blah':
		return BlahEntity object
	case 'foo':
		return FooEntity object
	case 'bar':
		return BarEntity object
	.
	.
	.
	case 'blah':
		return BlahEntity object

Where I'd need to add to this whenever I add new relevant Entities. This is what I'm avoiding.

 

35 minutes ago, kiou.23 said:

Okay...

first thing wrong is with your reflection code: you are passing null into the .get() method, that's not how it works.

you need to pass it an instance of the Object that you got the Field from, in this case you need the instance of EntityRegistry.

 

This part works just fine, we pass null to field.get() in this case because the members it's looking for are static. It correctly retreives the EntityTypes, the problem is that I don't know how to get an Entity object out of it.

 

Edited December 5, 2020 by Turtledove
  • Quote

Share this post


Link to post
Share on other sites

TheGreyGhost    819

TheGreyGhost

TheGreyGhost    819

  • Reality Controller
  • TheGreyGhost
  • Members
  • 819
  • 3280 posts
Posted December 5, 2020

Howdy

 

 

I'm not sure I understand the problem you're facing.

 

Because you control the creation of your own types, you should be able to create a map of the entity type and its string name when you create them, and when you get a string name, use that map to decide if it's one of your entities and then spawn it.  Your registered entity type has the factory in it already.

 

Using reflection to search your own registry class seems like a very strange idea to me.

 

I also suggest not to use static initialisers for your entity types; either used DeferredRegistry or use an event, like this

https://github.com/TheGreyGhost/MinecraftByExample/blob/master/src/main/java/minecraftbyexample/mbe81_entity_projectile/StartupCommon.java

 

Cheers

  TGG

 

 

 

 

 

  • Quote

Share this post


Link to post
Share on other sites

kiou.23    5

kiou.23

kiou.23    5

  • Creeper Killer
  • kiou.23
  • Members
  • 5
  • 158 posts
Posted December 5, 2020
22 minutes ago, Turtledove said:

It correctly retreives the EntityTypes, the problem is that I don't know how to get an Entity object out of it.

You can use EntityType.create(), this returns a new Entity

 

23 minutes ago, Turtledove said:

This part works just fine, we pass null to field.get() in this case because the members it's looking for are static.

Oh yeah, those are static, my bad. It's that I just spended the whole day doing reflection and getting non static values

  • Quote

Share this post


Link to post
Share on other sites

kiou.23    5

kiou.23

kiou.23    5

  • Creeper Killer
  • kiou.23
  • Members
  • 5
  • 158 posts
Posted December 5, 2020 (edited)
27 minutes ago, Turtledove said:

Ugly conditionals, as in:


switch key:
	case 'blah':
		return BlahEntity object
	case 'foo':
		return FooEntity object
	case 'bar':
		return BarEntity object
	.
	.
	.
	case 'blah':
		return BlahEntity object

Where I'd need to add to this whenever I add new relevant Entities. This is what I'm avoiding.

Can't you make the method generic? make it receive a EntityType<T> and then return the entity from it

It also seems very redundant, why do you need a method for this, isn't it easier to call EntityRegistry.RANDOM_ENTITY_TYPE.get().create()?

 

I also don't get why you are using reflections. I suppose you're using Deferred Registries, and the Deferred Regsitry has a method that returns all entries. And if you're not using Deferred Registries, you should

Edited December 5, 2020 by kiou.23
  • Quote

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • GenElectrovise
      What is the method to left click?

      By GenElectrovise · Posted 20 minutes ago

      There's probably something in or nearby to PlayerEntity (as a movement controller or something similar?) I'd start with searching my workspace for something along the lines of KeystrokeHandler or PlayerMovementController
    • Luis_ST
      [1.16.5] GameOverlay

      By Luis_ST · Posted 20 minutes ago

      I just want to render a overlay (i have creat a spyglass likt that from 1.17) and now i want to render the Overlay this is the code of the event i used: @SubscribeEvent(priority = EventPriority.HIGHEST) public static void RenderSpyglassOverlay(RenderGameOverlayEvent event) { PlayerEntity player = Minecraft.getInstance().player; int posX = event.getWindow().getScaledWidth() / 2; int posY = event.getWindow().getScaledHeight() / 2; if (player.getActiveItemStack().getItem() == CaveItems.SPYGLASS.get()) { RenderSystem.disableDepthTest(); RenderSystem.depthMask(false); RenderSystem.color4f(1.0F, 1.0F, 1.0F, 1.0F); RenderSystem.disableAlphaTest(); Minecraft.getInstance().getTextureManager().bindTexture(new ResourceLocation("cave:textures/misc/spyglass_scope.png")); Minecraft.getInstance().ingameGUI.blit(event.getMatrixStack(), posX - 128, posY - 128, 0, 0, posX * 2, posY * 2, 256, 256); RenderSystem.depthMask(true); RenderSystem.enableDepthTest(); RenderSystem.enableAlphaTest(); RenderSystem.color4f(1.0F, 1.0F, 1.0F, 1.0F); } } but the overlay looks like this: https://drive.google.com/file/d/15llZaiIqNWK7WRqcihIJY7oaAszkFKnn/view?usp=sharing so my question: 1 .how to render the game overlay translucent 2. how to set the outside of the overlay to black
    • GenElectrovise
      Server doesnt start

      By GenElectrovise · Posted 25 minutes ago

      Never heard of an error like this but what's your version.
    • Potatoe
      Minecraft server

      By Potatoe · Posted 1 hour ago

      ok
    • diesieben07
      Minecraft server

      By diesieben07 · Posted 1 hour ago

      This is a Forum for Forge, I would suggest you seek help elsewhere for Vanilla Minecraft.
  • Topics

    • Gubipe
      5
      What is the method to left click?

      By Gubipe
      Started 14 hours ago

    • Luis_ST
      0
      [1.16.5] GameOverlay

      By Luis_ST
      Started 20 minutes ago

    • BinAufGoogle
      3
      Server doesnt start

      By BinAufGoogle
      Started 18 hours ago

    • Potatoe
      4
      Minecraft server

      By Potatoe
      Started Sunday at 10:13 AM

    • Luis_ST
      4
      [1.16.5] Player Field of View

      By Luis_ST
      Started 2 hours ago

  • Who's Online (See full list)

    • Luis_ST
    • yumeji
    • Linky132
    • Leronus
    • Choonster
    • HowHow
    • diesieben07
    • Heliarco
    • GenElectrovise
    • Yagnap
    • hendrik
    • ElpisII
    • Beethoven92
    • zOnlyKroks
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Getting an Entity from EntityType
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community