Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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.

  • Author

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.

  • Author

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.

  • Author

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.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.