200 views and 20 posts w00t
Iām only getting this:
āCould not find main class: gametemplate.Main. Program will exit.ā
Iāve made a few changes and fixes. Iām uploading a new, light-weight version that does not include textures.
The new version has a more efficient algorithm for updating blocks so large level sizes can be supported.
Basically, I just divided the world into columns (chunks). Only those columns that are onscreen or affected by certain events get updated.
After a world (ArrayList) is loaded from a level file, the following method is called to process the world into columns (ArrayList[]):
@SuppressWarnings("unchecked")
public static ArrayList<Block>[] createColumns(ArrayList<Block> world, int numberColumns) {
ArrayList<Block>[] columns;
columns = (ArrayList<Block>[])new ArrayList[numberColumns];
for(int i = 0; i < numberColumns; i++) {
columns[i] = new ArrayList<Block>();
}
for(int i = 0; i < world.size(); i++) {
Block block = world.get(i);
ArrayList<Block> column = columns[block.xPos / 20];
column.add(block);
columns[block.xPos / 20] = column;
}
return columns;
}
As a result, the game runs much faster.
Download for the new, light-weight version https://sites.google.com/site/bouncethegame/downloads/BOUNCE_LW.jar?attredirects=0
Working on more particle effects and maybe a multiplayer mode.
If youāre gonna make multiplayer, make coop!
New Version! Lots of changes, fixes, and additions.
-
Collisions have been fixed
(you donāt glitch into blocks and fly off screen).
-
New particles, block/other ātexturesā, player now has hands and feet (no purpose besides appearance).
-
Some edits to the menu.
Overall, graphics and game physics are a lot better. No multiplayer (coop) yet though.
Download (see first post)
Added Lava.
Decided to pick this up again:
-Added spreadable fire (itās a pretty nice effect in my opinion, check it out https://sites.google.com/site/bouncethegame/downloads/BOUNCE_LW.jar?attredirects=0&d=1:point:)
-Implementing lightning soon
Doing a complete overhaul of the current code (Almost done, just a few bugs to fix).
Hoping the new version will be more fast-paced and epic!
really addictive
IF YOU ARE EXPERIENCING java - Error āmain class not foundā WHEN TRYING TO RUN THE JAR, UPDATE TO THE LATEST VERSION OF JAVA. THIS HAS BEEN CONFIRMED TO FIX THE PROBLEM
~New Version, download off the main post
-Though an old thread for this already exists in the showcase I thought that as I have been updating it regularly it belongs in WIP.
-Link to BOUNCE in showcase http://www.java-gaming.org/topics/bounce-2d-platformer-w-destructable-terrain/27023/msg/240278/view.html#msg240278
A simple Minecraft-esque 2D platform game.
The storyline (if I had to give it one) centers on you, a circle, lost in an alien world of squares.
In order to escape you must make your way through 30 levels fighting bosses and hardcore parkouring along the way.
ZgczX-jmM6I
Download in Video Description
Download (Newest Version - As of 25 November 2012) : https://sites.google.com/site/bouncethegame/downloads/BOUNCE_LW.jar?attredirects=0&d=1
The JAR only includes 31 game levels but itās fairly easy to design your own using a text editor and include the files in the ālevels/ā directory of the JAR.
Rate. Comment. Make your own levels. Suggestions?
Thanks for all the positive feedback on the showcase thread! Iāve implemented a lot of suggested features!
Created a new thread in WIP
http://www.java-gaming.org/topics/bounce-2d-platformer-w-destructable-terrain/27945/view.html :point:
THE NEW VIDEO IS UP!!! ;D
See it embedded on the first post.
THE NEW VIDEO IS UP! Check it out embedded on the first post!
You donāt really need to post on both posts, instead ask for the topics to be merged instead of double posting the same game on the forum.
Having more than 1 topic about your game is not, I repeat, not allowed. Please read the rules posted on every game board (WIP, showcase, featured).
Double posting every status update is even worse. Why would anybody assume that posting the same thing twice on a forum would get them more attention and/or any kind of goodwill.
Oh well, next time this happens, the thread will be moved to Misc.
Donāt be a pixelapp.
[quote]You donāt really need to post on both posts, instead ask for the topics to be merged instead of double posting the same game on the forum.
Having more than 1 topic about your game is not, I repeat, not allowed. Please read the rules posted on every game board (WIP, showcase, featured).
[/quote]
Sorry, my only intention was to get it merged.
And what is a pixelapp?