Download Hackathon2010 Free Java Code
Description
Flight PvP game for GTUG Stockholm Hackathon 2010.
Icons
Source Files
The download file Hackathon2010-master.zip has the following entries.
.classpath//from ww w. jav a 2 s . co m
.gitignore
.project
AndroidManifest.xml
README
assets/dead.ogg
assets/explosion1.ogg
assets/explosion2.ogg
assets/fonts/pixelette.ttf
assets/select1.ogg
assets/select2.ogg
assets/servermock/itty.py
assets/servermock/itty.pyc
assets/servermock/server.py
assets/shoot.ogg
assets/startSceneMusic.ogg
assets/textures/backgroundLayer0.png
assets/textures/backgroundLayer1.png
assets/textures/backgroundLayer2.png
assets/textures/backgroundLayer2Decoration.png
assets/textures/backgroundLayerSky.png
assets/textures/bullet.png
assets/textures/explosion.png
assets/textures/options.png
assets/textures/plane.png
assets/textures/start.png
assets/textures/startBackground.png
default.properties
libs/andengine.jar
libs/andenginemultiplayerextension.jar
libs/jmdns.jar
libs/libProgressMonitor.jar
res/drawable-hdpi/icon.png
res/drawable-ldpi/icon.png
res/drawable-mdpi/icon.png
res/values/strings.xml
server/README
server/Rakefile
server/app/controllers/application_controller.rb
server/app/controllers/bullets_controller.rb
server/app/controllers/event_controller.rb
server/app/controllers/players_controller.rb
server/app/helpers/application_helper.rb
server/app/helpers/bullets_helper.rb
server/app/helpers/event_helper.rb
server/app/helpers/players_helper.rb
server/app/models/bullet.rb
server/app/models/player.rb
server/app/views/bullets/edit.html.erb
server/app/views/bullets/index.html.erb
server/app/views/bullets/new.html.erb
server/app/views/bullets/show.html.erb
server/app/views/event/index.html.erb
server/app/views/layouts/bullets.html.erb
server/app/views/layouts/players.html.erb
server/app/views/players/edit.html.erb
server/app/views/players/index.html.erb
server/app/views/players/new.html.erb
server/app/views/players/show.html.erb
server/config/boot.rb
server/config/database.yml
server/config/environment.rb
server/config/environments/development.rb
server/config/environments/production.rb
server/config/environments/test.rb
server/config/initializers/backtrace_silencers.rb
server/config/initializers/cookie_verification_secret.rb
server/config/initializers/inflections.rb
server/config/initializers/mime_types.rb
server/config/initializers/new_rails_defaults.rb
server/config/initializers/session_store.rb
server/config/locales/en.yml
server/config/routes.rb
server/db/development.sqlite3
server/db/migrate/20100911103341_create_players.rb
server/db/migrate/20100911115115_add_fields_to_player.rb
server/db/migrate/20100911115838_create_bullets.rb
server/db/schema.rb
server/db/seeds.rb
server/dic
server/doc/README_FOR_APP
server/jmeter.log
server/log/development.log
server/log/production.log
server/log/server.log
server/log/test.log
server/public/404.html
server/public/422.html
server/public/500.html
server/public/favicon.ico
server/public/images/rails.png
server/public/index.html
server/public/javascripts/application.js
server/public/javascripts/controls.js
server/public/javascripts/dragdrop.js
server/public/javascripts/effects.js
server/public/javascripts/prototype.js
server/public/robots.txt
server/public/stylesheets/scaffold.css
server/script/about
server/script/console
server/script/dbconsole
server/script/destroy
server/script/generate
server/script/performance/benchmarker
server/script/performance/profiler
server/script/plugin
server/script/runner
server/script/server
server/test/View Results Tree.jmx
server/test/fixtures/bullets.yml
server/test/fixtures/players.yml
server/test/functional/bullets_controller_test.rb
server/test/functional/event_controller_test.rb
server/test/functional/players_controller_test.rb
server/test/jmeter.jmx
server/test/performance/browsing_test.rb
server/test/test_helper.rb
server/test/unit/bullet_test.rb
server/test/unit/helpers/bullets_helper_test.rb
server/test/unit/helpers/event_helper_test.rb
server/test/unit/helpers/players_helper_test.rb
server/test/unit/player_test.rb
src/com/ormgas/hackathon2010/GameActivity.java
src/com/ormgas/hackathon2010/GameScene.java
src/com/ormgas/hackathon2010/ScrollableParallaxBackground.java
src/com/ormgas/hackathon2010/StartScene.java
src/com/ormgas/hackathon2010/StartSceneActivity.java
src/com/ormgas/hackathon2010/assets/Fonts.java
src/com/ormgas/hackathon2010/assets/Sounds.java
src/com/ormgas/hackathon2010/assets/Textures.java
src/com/ormgas/hackathon2010/collisionhandler/CollisionDetector.java
src/com/ormgas/hackathon2010/collisionhandler/CollisionHandler.java
src/com/ormgas/hackathon2010/collisionhandler/ICollidable.java
src/com/ormgas/hackathon2010/collisionhandler/ICollidableVisitor.java
src/com/ormgas/hackathon2010/controller/AccelerometerController.java
src/com/ormgas/hackathon2010/controller/IGameObjectController.java
src/com/ormgas/hackathon2010/controller/RemoteClientController.java
src/com/ormgas/hackathon2010/eventbus/EntitySpawnedEvent.java
src/com/ormgas/hackathon2010/eventbus/EventBus.java
src/com/ormgas/hackathon2010/eventbus/EventHandler.java
src/com/ormgas/hackathon2010/eventbus/IRequestEvent.java
src/com/ormgas/hackathon2010/eventbus/NetworkConnectedEvent.java
src/com/ormgas/hackathon2010/eventbus/PlayRelativeSoundEvent.java
src/com/ormgas/hackathon2010/eventbus/RegisterAccelerometerListenerEvent.java
src/com/ormgas/hackathon2010/eventbus/RequestActorEvent.java
src/com/ormgas/hackathon2010/eventbus/RequestBulletEvent.java
src/com/ormgas/hackathon2010/eventbus/SpawnActorEvent.java
src/com/ormgas/hackathon2010/eventbus/SpawnBulletEvent.java
src/com/ormgas/hackathon2010/eventbus/SpawnExplosionEvent.java
src/com/ormgas/hackathon2010/eventbus/UpdateActorEvent.java
src/com/ormgas/hackathon2010/gameobjects/Actor.java
src/com/ormgas/hackathon2010/gameobjects/AirplaneObject.java
src/com/ormgas/hackathon2010/gameobjects/BulletObject.java
src/com/ormgas/hackathon2010/gameobjects/ExplosionObject.java
src/com/ormgas/hackathon2010/gameobjects/GameObject.java
src/com/ormgas/hackathon2010/gameobjects/ObjectHandler.java
src/com/ormgas/hackathon2010/networking/ClientProxy.java
src/com/ormgas/hackathon2010/networking/INetworkProxy.java
src/com/ormgas/hackathon2010/networking/MyBaseServer.java
src/com/ormgas/hackathon2010/networking/MyServerConnector.java
src/com/ormgas/hackathon2010/networking/ServerFinder.java
src/com/ormgas/hackathon2010/networking/ServerProxy.java
src/com/ormgas/hackathon2010/networking/messages/MessageFlags.java
src/com/ormgas/hackathon2010/networking/messages/SerializableMessage.java
src/com/ormgas/hackathon2010/sound/RelativeSound.java
src/com/ormgas/hackathon2010/weapons/IWeapon.java
src/com/ormgas/hackathon2010/weapons/MachineGun.java
Download
Click the following link to download Hackathon2010-master.zip.
Hackathon2010-master.zip