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.

uncleofbob

Members
  • Joined

  • Last visited

  1. I know the names of block and tile entity class is a bit odd. And my use of variables could be less. It will be changed. Block: public class JdwBlockBitumen extends Block implements IHasModel, ITileEntityProvider{ public JdwBlockBitumen(String name, Material material) { super(material); setUnlocalizedName(name); setRegistryName(name); setCreativeTab(CreativeTabs.MISC); setHarvestLevel("pick_axe", 1); } @Override public boolean hasTileEntity(IBlockState state) { return true; } @Override public TileEntity createNewTileEntity(final World worldIn, int meta) { return new JdwOSDigger(); } @Override public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state) { } @Override public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { if (!worldIn.isRemote ) { final JdwOSDigger tileEntity = (JdwOSDigger) worldIn.getTileEntity(pos); if(tileEntity != null) { tileEntity.toggleActive(); } } return true; } @Override public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { } @Override public void breakBlock(World worldIn, BlockPos pos, IBlockState state) { super.breakBlock(worldIn, pos, state); } //registers model @Override public void registerModels() { DerpWorld.proxy.registerItemRenderer(Item.getItemFromBlock(this), 0, "inventory"); } } Tile Entity: public class JdwOSDigger extends TileEntity implements ITickable{ private boolean aktivitas; private List<BlockPos> AREA = new ArrayList<BlockPos>(); private int radi; private int index; private int tickCounter; public JdwOSDigger() { radi = 0; index = 0; tickCounter = 0; aktivitas = false; } public void toggleActive() { if (aktivitas) { aktivitas = false; System.out.println("Activated: " + aktivitas + ", Is valid?: " + !this.isInvalid()); } else { aktivitas = true; System.out.println("Activated: " + aktivitas + " , Is valid? " + !this.isInvalid()); mapQuarry(6, this.getPos()); //here is where I call the Tile Entity pos } } public void mapQuarry (int radi, BlockPos pos) { List<BlockPos> l = new ArrayList<BlockPos>(); int[] squares = new int[radi]; BlockPos qC = null; int bx, by, bz = 0; for(int k = 0; k<4; k++) { switch(k){ case 0: qC = pos.add(radi+1, 0, radi+1); break; case 1: qC = pos.add(-(radi+1), 0, radi+1); break; case 2: qC = pos.add(radi+1, 0, -(radi+1)); break; case 3: qC = pos.add(-(radi+1), 0, -(radi+1)); break; } for(int e = 0; e<radi/2; e++) { for(int i = -radi+e; i <= radi-e; i++) { for (int j = -radi+e; j<=radi-e; j++) { bx = qC.getX() + i; bz = qC.getZ() + j; by = qC.getY() - 1 - e; BlockPos pos2 = new BlockPos( bx , by, bz ); l.add(pos2); } } } } AREA.addAll(l); System.out.println("map quarry finished, Testing AREA[4] : " + AREA.get(4)); } public void readFromNBT(NBTTagCompound compound) { super.readFromNBT(compound); aktivitas = compound.getBoolean("hore"); tickCounter = compound.getInteger("kuse"); index = compound.getInteger("lespe"); } public NBTTagCompound writeToNBT(NBTTagCompound compound) { super.writeToNBT(compound); //compound.setByte(); compound.setInteger("lespe", index); compound.setInteger("kuse", tickCounter); compound.setBoolean("hore", aktivitas); return compound; } @Override public void update() { if (!world.isRemote){ if(aktivitas) { tickCounter++; if (tickCounter==20) { world.destroyBlock(AREA.get(index), false); System.out.println("Destroyed block at: " + AREA.get(index) ); index++; tickCounter = 0; } } } }
  2. Hi again! It's working now! It was all related to how I used the position wrong. Somehow update() ran when the block was placed in certain quadrants related to the first block i placed. This made me change the way I get my Tile entity pos. Now I just access "this.getPos()" in methods that need it. The onLoad() wasn't necessary either. And yes, I scrapped the scheduleBlockUpdate workaround! Again, thank you all for replies and using your time on my problem!
  3. Because Im obviously a n00b ?.
  4. Can it be ? Have I solved my problem ?! I've added the following method to my tile entity, and update() hasn't failed yet! @Override public void onLoad() { posB = this.getPos(); } This code changes the way I get the BlockPos, which i used to get from a set method in tile entity i called from onBlockPlacedBy. @diesieben07 ?
  5. When I get deeper in to modding, I'll probably be able to find the root cause of my problem. Now i just want to continue my mod development. Thank you all for help !
  6. -------------------------------------------- Not a solution! --------------------------------------------- So I've done like @KittenKodersuggested: Is this cheat ? @Override public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { TileEntity tileentity = worldIn.getTileEntity(pos); if (tileentity instanceof JdwOSDigger) { ((JdwOSDigger)tileentity).setPos(pos); worldIn.scheduleBlockUpdate(pos, this, 20, 1); // schedule first update } } @Override public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand) { if(!worldIn.isRemote) { TileEntity tileentity = worldIn.getTileEntity(pos); if (tileentity instanceof JdwOSDigger){ ((JdwOSDigger)tileentity).jdwUpdate(); //call jdwupDate in tile entity worldIn.scheduleBlockUpdate(pos, this, 20, 1); //schedule next update. } } }
  7. I've added "-clean" at the first line in eclipse.ini. This wipes out some eclipse runtime cache which seem to cause the problem. I'll put the thread to [SOLVED] when I'm 100% sure.
  8. I've now checked the lists: "tickableTileEntities" and "loadedTileEntityList" while right clicking on block. In combination I ran the Chunk.getTileEntityMap() to see if its found in the chunk. The number (id?) after the tile entity also changes when I destroy the block and place a new, which I assume states that it detects a new instance of my JdwOSDigger tile entity. [12:52:18] [..onBlockActivated:86]: from Chunk: {BlockPos{x=-125, y=66, z=224}=com.jolge.derpworld.tileentity.JdwOSDigger@af23ab1} [12:52:18] [.....onBlockActivated:90]: loadedTileEntityList[21]: com.jolge.derpworld.tileentity.JdwOSDigger@af23ab1 [12:52:18] [....onBlockActivated:97]: tickableTileEntities[21]: com.jolge.derpworld.tileentity.JdwOSDigger@af23ab1 [12:52:33] [....onBlockActivated:86]: from Chunk: {BlockPos{x=-125, y=66, z=224}=com.jolge.derpworld.tileentity.JdwOSDigger@2979b61f} [12:52:33] [....onBlockActivated:90]: loadedTileEntityList[21]: com.jolge.derpworld.tileentity.JdwOSDigger@2979b61f [12:52:33] [....onBlockActivated:97]: tickableTileEntities[21]: com.jolge.derpworld.tileentity.JdwOSDigger@2979b61f I'll import my mod to a new eclipse environment later, to see if it helps.
  9. And again.. There must be something wrong with my Modding environment. I restarted the game 10 times to verify that update() worked.. Only to find out it stopped working after a while...
  10. [IGNORE THIS POST!!]] Finally! It seems i've found the issue in my code. @diesieben07 was right stating that the tile entity didn't register properly Se comments below // I think the registered tile entity excluded ITickable when writing <?extends TileEntity> public static void registerTileEntity(final Class<?extends TileEntity> tileEntityClass, final String name) { GameRegistry.registerTileEntity(tileEntityClass, name); } // when I removed it, it seems to run as I want. I assume it just takes whatever the class extends and implements. public static void registerTileEntity(final Class tileEntityClass, final String name) { GameRegistry.registerTileEntity(tileEntityClass, name); }
  11. Thx ! So its schedualBlockUpdate in onBlockAdded, and override the updateTick method? Currently Im testing with every 20 ticks, but it may even be slower. Thx again!
  12. Now I register the Block, ItemBlock and TileEntity directly in RegistryHandler. Update() still won't run. Guess I'll have to dig deeper !
  13. Could it be related to my tile entity class? Maybe the instantiation of the tile entity ?
  14. Now I'm doing it like this: @EventHandler public void preinit(FMLPreInitializationEvent event) { GameRegistry.registerTileEntity(JdwOSDigger.class, Reference.MODID + "oilsanddigger"); }
  15. My bad! Seems when i refresh or do some changes to the block class it works the first time I start a new world. hmm..

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.