I am well into creating my 2d remake of minecraft in java. I know it can be done well, orange451 on youtube inspired me to try and make this. I have all blocks on the map loading from text files, and when the game loads, it adds all of the blocks from the text files to an ArrayList. I created an algorithm for calculating the index of the block your cursor is on in the game, and added a MouseListener so that when i clicked it would replace the block with an air block (basically destroying the block). To replace the block in the ArrayList, I used the ArrayList set(index, obj) method. In theory, it should be working correctly, and it in a way does. The only problem is that it also creates a black space in the map a few blocks away. This is extremly frustrating, especially since I have come so far. ADDITIONAL INFO: I need a method that will replace the object in the ArrayList, or a better way to do it because my collision detection method also uses the ArrayList to detect a blocks position. PLEASE HELP ME! I cant post images but its setting the block to the air texture but creating a black square (a gap in the arraylist mabey?) near it. Because theres too much code to post, heres the source code for the whole project: Blockworld 2D Source

link|improve this question
1  
posting code segment would be more useful than posting images. – fakihjaan Feb 17 at 7:58
Please post your code (or a SSCCE) – Marcelo Feb 17 at 8:00
If you are having problems when removing elements from the list, post the part of the code where you actually remove elements from the list. Posting the code you use to render an image won't help you get anywhere. – Marcelo Feb 17 at 9:46
Your example doesn't seem to have any errors, assuming that 0 is the index of the block you're replacing and the block is at (0, 0). Can you post your actual code for mouseClicked? – Jiahua Wang Feb 17 at 9:47
feedback

1 Answer

up vote 3 down vote accepted

You're struggling with this because an ArrayList of objects that know their coordinate is an insane way to represent this 2d structure. It's unordered - you could reverse or shuffle your ArrayList and it would paint the same. It has O(N) update, as you have to search the ArrayList for an object of the appropriate coordinate before you can replace it. It can have more than one object with the same coordinate. It can be in a state where visible coordinates do not have corresponding objects at all -- which is what you've encountered, here.

PLEASE HELP ME

OK. Start with a two dimensional array (array, not ArrayList) of byte. Which allows you 256 kinds of block, and which allows your players to dig without constantly allocating memory with your new AirBlock(0, 0) madness. To draw the world, iterate over visible coordinates and map bytes to Bitmap or like.

Also: a 2d Minecraft already exists. It's called Terraria.

link|improve this answer
I'd upvote you twice if I could. – Marcelo Feb 17 at 11:38
Ok i will try this real quick. – Ki11akd0g Feb 17 at 18:53
1  
char is a 16-bit unicode character and therefore allows 65536 different values, but is probably less appropriate than byte or short. But apart from that, +1. – Weeble Feb 17 at 19:07
Ok I got it to load the blocks off a 2d array, and it loads them. BUT. Now the world runs EXTREMLEY SLOW. Like mabey 5fps if that. I even have it set up to only load blocks within so many blocks of the character. – Ki11akd0g Feb 17 at 19:58
Julian, download my source code and see if you can get it to work please, because i got the blocks to load of a 2d array and its really slow. – Ki11akd0g Feb 17 at 20:14
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.