Jump to content

[1.8] Get TileEntities within a boundingbox [SOLVED]


MCRaichu

Recommended Posts

Hi,

I'm trying to detect all TileEntities within a certain radius. I've been looking but it seems there is no method to do that. Basically what I'm looking for is getEntitiesWithinAABB from World but for TileEntities. If no method exists I will write my own but would be nice to save the effort.

 

Regards,

McRaichu

It doesn't work, I don't know why.

It works, I don't know why.

Link to comment
Share on other sites

Figured. It is basically copying the entity method but certain things bother me. For example: getEntitiesWithinAABB does a isChunkLoaded check, but since its protected i can't call it. can i ignore it since my entity (the one searching) is only loaded when the chunk is loaded?

It doesn't work, I don't know why.

It works, I don't know why.

Link to comment
Share on other sites

Since I have never done reflection, could you help me a bit? the oracle reference is not very helpful.

Here my code so far (not tested):

public static List getTileEntitiesWithinAABB(World world, Class tileEntityClass, AxisAlignedBB aabb)
{
	int i = MathHelper.floor_double((aabb.minX - MAX_ENTITY_RADIUS) / 16.0D);
	int j = MathHelper.floor_double((aabb.maxX + MAX_ENTITY_RADIUS) / 16.0D);
	int k = MathHelper.floor_double((aabb.minZ - MAX_ENTITY_RADIUS) / 16.0D);
	int l = MathHelper.floor_double((aabb.maxZ + MAX_ENTITY_RADIUS) / 16.0D);
	ArrayList arraylist = Lists.newArrayList();

	for (int i1 = i; i1 <= j; ++i1)
	{
		for (int j1 = k; j1 <= l; ++j1)
		{
			boolean chunkLoaded = false;
			try {
				//isChunkLoaded(i1, j1, true)
				Method method = world.getClass().getMethod("isChunkLoaded", int.class,int.class,boolean.class);
				chunkLoaded = (Boolean) method.invoke(world, i1, j1, true);

			} catch (IllegalAccessException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (IllegalArgumentException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (InvocationTargetException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (NoSuchMethodException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (SecurityException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}

			if(chunkLoaded)
			{
				Iterator iterator = world.getChunkFromChunkCoords(i1, j1).getTileEntityMap().values().iterator();

				while (iterator.hasNext())
				{
					TileEntity te = (TileEntity)iterator.next();
					if(tileEntityClass.isInstance(te))
					{
						if (te.getRenderBoundingBox().intersectsWith(aabb))
		                {
							arraylist.add(te);
		                }
					}
				}
			}
		}
	}
	return arraylist;
}

It doesn't work, I don't know why.

It works, I don't know why.

Link to comment
Share on other sites

I currently facing the problem that it is called from WorldServer which extends World and i get IllegalAccessExc. when invoking. But using WorldServer as class of getDeclaredMethod it throws a NoSuchMethodException.

 

EDIT: forget it. works. well except the tileentitymaps from the chunks appear empty....

 

EDIT 2: had a mistake at my tileentities. they didn't exist. so everything works. thanks diesieben

It doesn't work, I don't know why.

It works, I don't know why.

Link to comment
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.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.