ZED Survivor by faijdherbe
To start the game double-click the .jar file.
You woke up, all alone in a deserted city...
...or maybe you're not alone after all...
ZOMG!! Zombies!!!!
My submission for my first Ludum Dare.
Satisfied with the result because this is my first Java project since 5 years, and pretty much my first serious java game ever.
Developed on osX so pretty sure it works for osX users.
Did little testing on windows and it did seem to work there as well.
Linux is untested. But hey, its Java, it should work right?
Controls:
Walk: Arrows
Shoot/Use: Space
Pickup: X
Menu/Cancel: ESC
(if you happen to have a working Logitech RumblePad or XBox360 Controller, those _should_ work as well...)
Well.
Thanks for this great event, I will definitely join the next one :D
(I sure hope GitHub is a good place to host the download & code?)
You woke up, all alone in a deserted city...
...or maybe you're not alone after all...
ZOMG!! Zombies!!!!
My submission for my first Ludum Dare.
Satisfied with the result because this is my first Java project since 5 years, and pretty much my first serious java game ever.
Developed on osX so pretty sure it works for osX users.
Did little testing on windows and it did seem to work there as well.
Linux is untested. But hey, its Java, it should work right?
Controls:
Walk: Arrows
Shoot/Use: Space
Pickup: X
Menu/Cancel: ESC
(if you happen to have a working Logitech RumblePad or XBox360 Controller, those _should_ work as well...)
Well.
Thanks for this great event, I will definitely join the next one :D
(I sure hope GitHub is a good place to host the download & code?)
Ratings
| Coolness | 59% | 3 |
| Overall | 2.31 | 511 |
| Audio | 1.00 | 594 |
| Community | 3.00 | 129 |
| Fun | 2.25 | 393 |
| Graphics | 2.77 | 295 |
| Humor | 1.56 | 452 |
| Innovation | 1.75 | 593 |
| Mood | 3.18 | 117 |
| Theme | 2.85 | 271 |
after unzipping you should be able to double-click the .jar file, and the game will launch.
I got 1 pretty old windows machine at home and it worked there...
I did notice that after pressing play (with the SPACE key) it took a while to load (with a blank screen) but i guess i've failed in my multi platform support.
I'm afraid I haven't really got the time to fix this in the near feature.
Have Win7 and Java 1.6.0_30
I'm on Windows 7 32 if that helps :)
J:\temp\ld48 games\ZedSurvivor>java -jar ZedSurvivor.jar
init
loaded level: 10000 - java.awt.Dimension[width=100,height=100]
start
Exception in thread "Thread-0" java.lang.IllegalStateException: Component must have a valid peer
at java.awt.Component$FlipBufferStrategy.flip(Unknown Source)
at java.awt.Component$FlipBufferStrategy.show(Unknown Source)
at net.faijdherbe.zedsurvivor.Engine.doGameLoop(Engine.java:108)
at net.faijdherbe.zedsurvivor.ZedLauncher.run(ZedLauncher.java:66)
What this means is that you can't get the buffer strategy for a component until it is visible. I'm guessing your game loop starts running before your frame, or the contained components (a panel?) are displayed. To fix it, run the rendering for your game after setVisible(true);
Regards, a fellow Java developer. :)
Both fixes are pretty nasty hacks and i hope they work :)
Its very atmospheric, the small greyscale screen makes me feel isolated from my avatar.
I found that sometime my bullets hit the zombie hitbox when they clearly missed the sprite.
Its a shame there is not any sound: The controls seem to be a bit sticky so running to a specific direction, and then turning again is a bit annoying at times.