├── ChatNet ├── ChatClient.bat ├── ChatClient.java ├── ChatHost.bat ├── ChatHost.java ├── ChatNet.zip ├── GUI.java ├── Network.java └── compile.bat ├── FlightSim ├── .classpath ├── .project ├── 3DM.java ├── CompileEdit.bat ├── CompileRun.bat ├── Counter.class ├── Counter.java ├── DataArray.class ├── DataArray.java ├── FileHandler.class ├── FileHandler.java ├── FilePicker.java ├── FlatHash.class ├── FlatHash.java ├── FlightCrafts │ ├── CraftList.txt │ ├── EuroData.txt │ ├── F16Data.txt │ └── MigData.txt ├── FlightLevels │ ├── 1Terrain.dat │ ├── Level0.dat │ ├── Level0.txt │ ├── Level1.dat │ ├── Level1.txt │ ├── Level2.dat │ ├── Level2.txt │ ├── Level3.dat │ ├── Level3.txt │ ├── LevelList.txt │ ├── Test.dat │ ├── TestLevel.dat │ ├── TestLevel.txt │ └── nonsense.dat ├── FlightSim.class ├── FlightSim.java ├── FlightSim │ └── manifest.mf ├── FlightSimSource.zip ├── FlightSound │ ├── BEEPDOUB.WAV │ ├── BEEPPURE.WAV │ ├── BEEP_FM.WAV │ ├── BulletWhiz1.wav │ ├── BulletWhiz2.wav │ ├── FlameThrowerLoop - Afterburners.wav │ ├── FlatSoundData.txt │ ├── JetPackLoop1 - EngineLoop1.wav │ ├── JetPackLoop2 - EngineLoop2.wav │ ├── JetPackLoop3 - EngineLoop3.wav │ ├── JetPackStart - Engines.wav │ ├── KLICK.WAV │ ├── Shot - Cannon.wav │ ├── Shot - MachineGun.wav │ ├── Shot - Missile.wav │ ├── SoundData.txt │ ├── VehicleDieExplosion.wav │ ├── VehicleHitExplosion.wav │ └── WeaponHoming - Missile.WAV ├── FlightStars │ ├── Raw Data.ods │ └── Stars.txt ├── FlightState$Craft$1.class ├── FlightState$Craft.class ├── FlightState$Doodad.class ├── FlightState$GeneralVector.class ├── FlightState$Gun.class ├── FlightState$Object3DM.class ├── FlightState$ObjectVector.class ├── FlightState$Objective.class ├── FlightState$Plane.class ├── FlightState$Position3DM.class ├── FlightState$Projectile.class ├── FlightState$ProjectileType.class ├── FlightState$Structure.class ├── FlightState$TempSprite.class ├── FlightState$TimeObjective.class ├── FlightState$Trail.class ├── FlightState$Turret.class ├── FlightState$UnitObjective.class ├── FlightState$Vehicle.class ├── FlightState$World.class ├── FlightState.class ├── FlightText │ ├── ControlInstructions.txt │ └── PlayInstructions.txt ├── FlightWindow.class ├── Frames │ ├── AnnotatedScreenShot.png │ ├── Blank.html │ ├── BluePlane.png │ ├── BoxStyle.css │ ├── ControlInstructions.txt │ ├── Controls.html │ ├── GamePlay.html │ ├── Home.html │ ├── Interface.html │ ├── Navigation Frame.html │ ├── PlayInstructions.txt │ ├── RedTurret.png │ ├── ScreenShot.png │ ├── Styles.css │ └── Terrain.png ├── GUI.class ├── GUI.java ├── GameState.class ├── JCanvas.class ├── JCanvas.java ├── MapState.class ├── MenuState.class ├── New Text Document.txt ├── NumberQueue.class ├── NumberQueue.java ├── ObserverM$1.class ├── ObserverM.class ├── Point3DM.class ├── Point3DMShape.class ├── Printable3DM.class ├── Rotation3DM.class ├── Run.bat ├── Shape3DM.class ├── Sprite3DM.class ├── Store.class ├── TextScroller$TextLine.class ├── TextScroller.class ├── TextScroller.java ├── TextState.class ├── TimeKeeper.class ├── TimeKeeper.java ├── Utils3DM.class ├── WaveSound.class ├── WaveSound.java ├── compile.bat └── readme.html ├── GUI ├── 3D.java ├── 3DM.java ├── Asteroids$Background.class ├── Asteroids$Projectile.class ├── Asteroids.class ├── Astrolander$Background.class ├── Astrolander$Projectile.class ├── Astrolander.class ├── Bricks$Background.class ├── Bricks$Brick.class ├── Bricks$BrickVector.class ├── Bricks.class ├── CTimer.class ├── Circuit$Background.class ├── Circuit$CircuitComponent.class ├── Circuit$Front.class ├── Circuit$Gate.class ├── Circuit$GeneralVector.class ├── Circuit$Point.class ├── Circuit$Wire.class ├── Circuit.class ├── Counter.class ├── Counter.java ├── Discover$Background.class ├── Discover$GeneralVector.class ├── Discover$Node.class ├── Discover.class ├── FileHandler.java ├── GUI.bat ├── GUI.class ├── GUI.java ├── GUI.zip ├── GameLibrary.class ├── GameLibrary.java ├── JCanvas.class ├── JCanvas.java ├── Klotski$Background.class ├── Klotski$Covered.class ├── Klotski$Piece.class ├── Klotski$PointV.class ├── Klotski$State.class ├── Klotski$StateVector.class ├── Klotski.class ├── LoopingMidi.class ├── Network │ ├── GUI.class │ ├── GUI.java │ ├── JCanvas.class │ ├── JCanvas.java │ ├── Link.class │ ├── LoopingMidi.class │ ├── MPong.class │ ├── MultiPong.class │ ├── MultiPong.java │ ├── Network.bat │ ├── NetworkVector.class │ ├── NumberQueue.class │ ├── NumberQueue.java │ ├── Parallel.class │ ├── PointVector.class │ ├── WaveSound.class │ └── compile.bat ├── NewTest$Craft.class ├── NewTest$Doodad.class ├── NewTest$GeneralVector.class ├── NewTest$Gun.class ├── NewTest$Object3DM.class ├── NewTest$Plane.class ├── NewTest$Projectile.class ├── NewTest$ProjectileType.class ├── NewTest$TempSprite.class ├── NewTest$Trail.class ├── NewTest$World.class ├── NewTest.class ├── NumberQueue.class ├── NumberQueue.java ├── Observer.class ├── ObserverM.class ├── Point3D.class ├── Point3DM.class ├── PointVector.class ├── PointVectorM.class ├── Pong$Background.class ├── Pong$Padel.class ├── Pong.class ├── Queens$Background.class ├── Queens$GeneralVector.class ├── Queens.class ├── Rotation3D.class ├── Shape3D.class ├── Shape3DM.class ├── ShapeVector.class ├── ShapeVectorM.class ├── Snake$Background.class ├── Snake$Position.class ├── Snake.class ├── Sounds │ ├── CHEERS1.WAV │ ├── CHEERS2.WAV │ ├── EXPLODE.WAV │ ├── Explosion1.wav │ ├── Explosion2.WAV │ ├── Explosion3.WAV │ ├── Explosion4.wav │ ├── Explosion5.wav │ ├── GIRDERIMPACT.WAV │ ├── MOVPIECE.WAV │ ├── OilDrumImpact.wav │ ├── ROCKETRELEASE.WAV │ ├── TAH.wav │ ├── TEK.wav │ ├── TIK.WAV │ ├── TINK.wav │ ├── TOK.wav │ ├── Tetris.mid │ └── WEAPONHOMING.WAV ├── Sprite3D.class ├── Tanks$Background.class ├── Tanks$Display.class ├── Tanks$LevelData.class ├── Tanks$LineVector.class ├── Tanks$Obstacle.class ├── Tanks$ObstacleVector.class ├── Tanks$Projectile.class ├── Tanks$ProjectileVector.class ├── Tanks$Salvage.class ├── Tanks$SalvageVector.class ├── Tanks$Shot.class ├── Tanks$Tank$Order.class ├── Tanks$Tank.class ├── Tanks$TankVector.class ├── Tanks$TempText.class ├── Tanks$TempTextVector.class ├── Tanks.class ├── Test$Aircraft3D.class ├── Test$Background.class ├── Test$Display.class ├── Test$Fragment3D.class ├── Test$GeneralVector.class ├── Test$Gun.class ├── Test$MammothTank3D.class ├── Test$Object3D.class ├── Test$Objective.class ├── Test$Obstacle3D.class ├── Test$PowerUp3D.class ├── Test$Shake.class ├── Test$Shot3D.class ├── Test$ShotType.class ├── Test$Tank3D$Commands.class ├── Test$Tank3D.class ├── Test.class ├── Tetris$1.class ├── Tetris$Background.class ├── Tetris$Block.class ├── Tetris$Position.class ├── Tetris.class ├── Turmites$Background.class ├── Turmites$Reaction.class ├── Turmites$Turmite.class ├── Turmites$TurmiteVector.class ├── Turmites.class ├── Utils3D.class ├── Utils3DM.class ├── WaveSound.class └── compile.bat ├── GameLibrary ├── .idea │ ├── .name │ ├── GameLibrary.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── other.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── testrunner.xml │ ├── vcs.xml │ └── workspace.xml ├── 3D.java ├── Asteroids$Background.class ├── Asteroids$Projectile.class ├── Asteroids.class ├── Astrolander$Background.class ├── Astrolander$Projectile.class ├── Astrolander.class ├── Bricks$Background.class ├── Bricks$Brick.class ├── Bricks$BrickVector.class ├── Bricks.class ├── Circuit$Background.class ├── Circuit$CircuitComponent.class ├── Circuit$Front.class ├── Circuit$Gate.class ├── Circuit$GeneralVector.class ├── Circuit$Point.class ├── Circuit$Wire.class ├── Circuit.class ├── GUI.class ├── GUI.java ├── GameLibrary.class ├── GameLibrary.java ├── GameLibrarySource.zip ├── JCanvas.java ├── LoopingMidi.class ├── Observer.class ├── Point3D.class ├── PointVector.class ├── Pong$Background.class ├── Pong$Padel.class ├── Pong.class ├── Run.bat ├── Shape3D.class ├── ShapeVector.class ├── Snake$Background.class ├── Snake$Position.class ├── Snake.class ├── Sound.java ├── Sounds │ ├── CHEERS1.WAV │ ├── CHEERS2.WAV │ ├── EXPLODE.WAV │ ├── Explosion1.wav │ ├── Explosion2.WAV │ ├── Explosion3.WAV │ ├── Explosion4.wav │ ├── Explosion5.wav │ ├── GIRDERIMPACT.WAV │ ├── MOVPIECE.WAV │ ├── OilDrumImpact.wav │ ├── ROCKETRELEASE.WAV │ ├── TAH.wav │ ├── TEK.wav │ ├── TIK.WAV │ ├── TINK.wav │ ├── TOK.wav │ ├── Tetris.mid │ └── WEAPONHOMING.WAV ├── Tanks$Background.class ├── Tanks$Display.class ├── Tanks$LevelData.class ├── Tanks$LineVector.class ├── Tanks$Obstacle.class ├── Tanks$ObstacleVector.class ├── Tanks$Projectile.class ├── Tanks$ProjectileVector.class ├── Tanks$Salvage.class ├── Tanks$SalvageVector.class ├── Tanks$Shot.class ├── Tanks$Tank$Order.class ├── Tanks$Tank.class ├── Tanks$TankVector.class ├── Tanks$TempText.class ├── Tanks$TempTextVector.class ├── Tanks.class ├── Test$Aircraft3D.class ├── Test$Background.class ├── Test$Display.class ├── Test$Fragment3D.class ├── Test$GeneralVector.class ├── Test$Gun.class ├── Test$MammothTank3D.class ├── Test$Object3D.class ├── Test$Objective.class ├── Test$Obstacle3D.class ├── Test$PowerUp3D.class ├── Test$Shake.class ├── Test$Shot3D.class ├── Test$ShotType.class ├── Test$Tank3D$Commands.class ├── Test$Tank3D.class ├── Test.class ├── Tetris$1.class ├── Tetris$Background.class ├── Tetris$Block.class ├── Tetris$Position.class ├── Tetris.class ├── Turmites$Background.class ├── Turmites$Reaction.class ├── Turmites$Turmite.class ├── Turmites$TurmiteVector.class ├── Turmites.class ├── Utils3D.class ├── WaveSound.class ├── WaveSound.java └── compile.bat ├── Globe ├── 3DS.java ├── DepthTexture3DS.class ├── DetNoise2D.class ├── DetPerlin2D.class ├── Earth.jpg ├── FlatTexture3DS.class ├── GUI.class ├── GUI.java ├── GUITest.class ├── GUITestBed.bat ├── GUITestBed.class ├── GUITestBed.java ├── Globe Source.zip ├── Image3DS.class ├── ImageTexture3DS.class ├── JCanvas.class ├── JCanvas.java ├── Matrix3DS.class ├── Noise.class ├── Noise.java ├── Noise1D.class ├── Noise2D.class ├── NumberQueue.class ├── NumberQueue.java ├── Observer3DS$1.class ├── Observer3DS.class ├── Perlin2D.class ├── Point3DS.class ├── Polygon3DS.class ├── Renderer3DS.class ├── Rotation3DS.class ├── Shape3DS$1.class ├── Shape3DS.class ├── Test.png ├── Texture3DS.class ├── Utils3DS.class ├── clouds.png ├── grass4.JPG └── water.png ├── New Folder ├── 3DM.java ├── Counter.class ├── Counter.java ├── DataArray.class ├── DataArray.java ├── FileHandler.class ├── FileHandler.java ├── FilePicker.java ├── FlatHash.class ├── FlatHash.java ├── FlightCrafts │ ├── CraftList.txt │ ├── EuroData.txt │ ├── F16Data.txt │ └── MigData.txt ├── FlightEditor.java ├── FlightLevels │ ├── 1Terrain.dat │ ├── Level0.dat │ ├── Level0.txt │ ├── Level1.dat │ ├── Level1.txt │ ├── Level2.dat │ ├── Level2.txt │ ├── Level3.dat │ ├── Level3.txt │ ├── LevelList.txt │ ├── Test.dat │ ├── TestLevel.dat │ ├── TestLevel.txt │ └── nonsense.dat ├── FlightSim.class ├── FlightSim.java ├── FlightSound │ ├── BEEPDOUB.WAV │ ├── BEEPPURE.WAV │ ├── BEEP_FM.WAV │ ├── BulletWhiz1.wav │ ├── BulletWhiz2.wav │ ├── FlameThrowerLoop - Afterburners.wav │ ├── FlatSoundData.txt │ ├── JetPackLoop1 - EngineLoop1.wav │ ├── JetPackLoop2 - EngineLoop2.wav │ ├── JetPackLoop3 - EngineLoop3.wav │ ├── JetPackStart - Engines.wav │ ├── KLICK.WAV │ ├── Shot - Cannon.wav │ ├── Shot - MachineGun.wav │ ├── Shot - Missile.wav │ ├── SoundData.txt │ ├── VehicleDieExplosion.wav │ ├── VehicleHitExplosion.wav │ └── WeaponHoming - Missile.WAV ├── FlightState$Craft.class ├── FlightState$Doodad.class ├── FlightState$GeneralVector.class ├── FlightState$Gun.class ├── FlightState$Object3DM.class ├── FlightState$ObjectVector.class ├── FlightState$Objective.class ├── FlightState$Plane.class ├── FlightState$Position3DM.class ├── FlightState$Projectile.class ├── FlightState$ProjectileType.class ├── FlightState$Structure.class ├── FlightState$TempSprite.class ├── FlightState$TimeObjective.class ├── FlightState$Trail.class ├── FlightState$Turret.class ├── FlightState$UnitObjective.class ├── FlightState$Vehicle.class ├── FlightState$World.class ├── FlightState.class ├── FlightText │ ├── ControlInstructions.txt │ └── PlayInstructions.txt ├── FlightWindow.class ├── GUI.class ├── GUI.java ├── GameState.class ├── JCanvas.class ├── JCanvas.java ├── MapState.class ├── MenuState.class ├── NumberQueue.class ├── NumberQueue.java ├── ObserverM.class ├── Point3DM.class ├── Point3DMShape.class ├── Printable3DM.class ├── Rotation3DM.class ├── Shape3DM.class ├── Sprite3D.class ├── Sprite3DM.class ├── Store.class ├── Test Run.rar ├── TextScroller$TextLine.class ├── TextScroller.class ├── TextScroller.java ├── TextState.class ├── TimeKeeper.class ├── TimeKeeper.java ├── Utils3DM.class ├── WaveSound$Player.class ├── WaveSound.class ├── WaveSound.java ├── compile.bat └── run.bat ├── Ribbon4K ├── Apple.class ├── JCanvas.class ├── JCanvas.java ├── JCanvas.java.bak ├── NE3W.jar ├── New Folder │ ├── Apple.class │ ├── JCanvas.class │ ├── JCanvas.java │ ├── NE3W.jar │ ├── Ribbon.class │ ├── Ribbon.java │ ├── Ribbon.java.bak │ ├── RibbonGame.class │ ├── Snake.class │ ├── SnakeVector.class │ ├── compile.bat │ └── jar.bat ├── Ribbon.class ├── Ribbon.java ├── Ribbon.java.bak ├── RibbonGame.class ├── Snake.class ├── SnakeVector.class ├── compile.bat └── jar.bat ├── RibbonNet ├── Apple.class ├── Client.class ├── Counter.java ├── DataArray.class ├── DataArray.java ├── DataHandler.class ├── GUI.class ├── GUI.java ├── JCanvas.class ├── JCanvas.java ├── Link.class ├── NetRibbon.bat ├── NetRibbon.class ├── NetRibbon.java ├── Network.java ├── NetworkVector.class ├── NumberQueue.class ├── NumberQueue.java ├── Parallel.class ├── RibbonClient.bat ├── RibbonClient.class ├── RibbonClient.java ├── RibbonClientGame.class ├── RibbonGame.class ├── RibbonNet.rar ├── ScanPort.class ├── Scanner.class ├── Snake.class ├── SnakeVector.class ├── TimeKeeper.class ├── TimeKeeper.java ├── UDPListener.class ├── UtilsNet.class ├── compile.bat └── run.FFFF ├── RobotSim ├── 3DM.java ├── ControlWindow.class ├── Counter.class ├── Counter.java ├── FileHandler.class ├── FileHandler.java ├── FilePicker.class ├── FilePicker.java ├── GUI.class ├── GUI.java ├── JCanvas.class ├── JCanvas.java ├── LoopingMidi.class ├── NumberQueue.class ├── NumberQueue.java ├── ObserverM.class ├── Point3DM.class ├── PointVectorM.class ├── Program.zip ├── RobotControl.class ├── RobotControl.java ├── RobotMobileSpeed.txt ├── RobotMobileStream.txt ├── RobotOutputPosition.txt ├── RobotOutputSpeeds.txt ├── RobotOutputWheels.txt ├── RobotSim.class ├── RobotSim.java ├── RobotSim.java.bak ├── RobotStats.txt ├── RobotWheelSpeed.txt ├── RobotWheelStream.txt ├── RobotWindow$GeneralVector.class ├── RobotWindow$Mobile.class ├── RobotWindow$Obstacle.class ├── RobotWindow$Thruster.class ├── RobotWindow$Trail.class ├── RobotWindow.class ├── Rotation3D.class ├── RunControl.bat ├── RunSim.bat ├── Shape3DM.class ├── ShapeVectorM.class ├── Sprite3D.class ├── TCP RibbonNet │ ├── Apple.class │ ├── Counter.java │ ├── DataArray.class │ ├── DataLink.class │ ├── GUI.class │ ├── GUI.java │ ├── JCanvas.class │ ├── JCanvas.java │ ├── Link.class │ ├── NetRibbon.bat │ ├── NetRibbon.class │ ├── NetRibbon.java │ ├── Network.java │ ├── NetworkVector.class │ ├── NumberQueue.class │ ├── NumberQueue.java │ ├── Parallel.class │ ├── RibbonClient.bat │ ├── RibbonClient.class │ ├── RibbonClient.java │ ├── RibbonClientGame.class │ ├── RibbonGame.class │ ├── ScanPort.class │ ├── Scanner.class │ ├── Snake.class │ ├── SnakeVector.class │ ├── TCP RibbonNet.zip │ ├── TimeKeeper.class │ ├── TimeKeeper.java │ ├── UtilsNet.class │ └── compile.bat ├── TimeKeeper.class ├── TimeKeeper.java ├── Utils3DM.class ├── WaveSound.class └── compile.bat ├── Test Run ├── FlightCrafts │ ├── CraftList.txt │ ├── EuroData.txt │ ├── F16Data.txt │ └── MigData.txt ├── FlightLevels │ ├── 1Terrain.dat │ ├── Level0.dat │ ├── Level0.txt │ ├── Level1.dat │ ├── Level1.txt │ ├── Level2.dat │ ├── Level2.txt │ ├── Level3.dat │ ├── Level3.txt │ ├── LevelList.txt │ ├── Test.dat │ ├── TestLevel.dat │ ├── TestLevel.txt │ └── nonsense.dat ├── FlightSim.zip ├── FlightSound │ ├── BEEPDOUB.WAV │ ├── BEEPPURE.WAV │ ├── BEEP_FM.WAV │ ├── BulletWhiz1.wav │ ├── BulletWhiz2.wav │ ├── FlameThrowerLoop - Afterburners.wav │ ├── FlatSoundData.txt │ ├── JetPackLoop1 - EngineLoop1.wav │ ├── JetPackLoop2 - EngineLoop2.wav │ ├── JetPackLoop3 - EngineLoop3.wav │ ├── JetPackStart - Engines.wav │ ├── KLICK.WAV │ ├── Shot - Cannon.wav │ ├── Shot - MachineGun.wav │ ├── Shot - Missile.wav │ ├── SoundData.txt │ ├── VehicleDieExplosion.wav │ ├── VehicleHitExplosion.wav │ └── WeaponHoming - Missile.WAV ├── FlightStars │ ├── Raw Data.ods │ └── Stars.txt ├── FlightText │ ├── ControlInstructions.txt │ └── PlayInstructions.txt ├── Frames │ ├── AnnotatedScreenShot.png │ ├── Blank.html │ ├── BluePlane.png │ ├── BoxStyle.css │ ├── ControlInstructions.txt │ ├── Controls.html │ ├── GamePlay.html │ ├── Home.html │ ├── Interface.html │ ├── Navigation Frame.html │ ├── PlayInstructions.txt │ ├── RedTurret.png │ ├── ScreenShot.png │ ├── Styles.css │ └── Terrain.png ├── JavaProject7.jar ├── javaproject7 │ ├── CompileEdit.bat │ ├── CompileRun.bat │ ├── Counter.class │ ├── DataArray.class │ ├── FileHandler.class │ ├── FilePicker.class │ ├── FlatHash.class │ ├── FlightCrafts │ │ ├── CraftList.txt │ │ ├── EuroData.txt │ │ ├── F16Data.txt │ │ └── MigData.txt │ ├── FlightEditor$Objective.class │ ├── FlightEditor$Order.class │ ├── FlightEditor$TimeObjective.class │ ├── FlightEditor$UnitObjective.class │ ├── FlightEditor.class │ ├── FlightLevels │ │ ├── 1Terrain.dat │ │ ├── Level0.dat │ │ ├── Level0.txt │ │ ├── Level1.dat │ │ ├── Level1.txt │ │ ├── Level2.dat │ │ ├── Level2.txt │ │ ├── Level3.dat │ │ ├── Level3.txt │ │ ├── LevelList.txt │ │ ├── Test.dat │ │ ├── TestLevel.dat │ │ ├── TestLevel.txt │ │ └── nonsense.dat │ ├── FlightSim.class │ ├── FlightSound │ │ ├── BEEPDOUB.WAV │ │ ├── BEEPPURE.WAV │ │ ├── BEEP_FM.WAV │ │ ├── BulletWhiz1.wav │ │ ├── BulletWhiz2.wav │ │ ├── FlameThrowerLoop - Afterburners.wav │ │ ├── FlatSoundData.txt │ │ ├── JetPackLoop1 - EngineLoop1.wav │ │ ├── JetPackLoop2 - EngineLoop2.wav │ │ ├── JetPackLoop3 - EngineLoop3.wav │ │ ├── JetPackStart - Engines.wav │ │ ├── KLICK.WAV │ │ ├── Shot - Cannon.wav │ │ ├── Shot - MachineGun.wav │ │ ├── Shot - Missile.wav │ │ ├── SoundData.txt │ │ ├── VehicleDieExplosion.wav │ │ ├── VehicleHitExplosion.wav │ │ └── WeaponHoming - Missile.WAV │ ├── FlightStars │ │ ├── Raw Data.ods │ │ └── Stars.txt │ ├── FlightState$Craft$1.class │ ├── FlightState$Craft$PathState.class │ ├── FlightState$Craft.class │ ├── FlightState$Doodad.class │ ├── FlightState$GeneralVector.class │ ├── FlightState$Gun.class │ ├── FlightState$Object3DM.class │ ├── FlightState$ObjectVector.class │ ├── FlightState$Objective.class │ ├── FlightState$Plane.class │ ├── FlightState$Position3DM.class │ ├── FlightState$Projectile.class │ ├── FlightState$ProjectileType.class │ ├── FlightState$Structure.class │ ├── FlightState$TempSprite.class │ ├── FlightState$TimeObjective.class │ ├── FlightState$Trail.class │ ├── FlightState$Turret.class │ ├── FlightState$UnitObjective.class │ ├── FlightState$Vehicle.class │ ├── FlightState$World.class │ ├── FlightState.class │ ├── FlightText │ │ ├── ControlInstructions.txt │ │ └── PlayInstructions.txt │ ├── FlightWindow.class │ ├── GUI.class │ ├── GameState.class │ ├── JCanvas.class │ ├── META-INF │ │ └── MANIFEST.MF │ ├── MapState.class │ ├── MenuState.class │ ├── New Text Document.txt │ ├── NumberQueue.class │ ├── ObserverM$1.class │ ├── ObserverM.class │ ├── Point3DM.class │ ├── Point3DMShape.class │ ├── Printable3DM.class │ ├── Rotation3DM.class │ ├── Run.bat │ ├── Shape3DM.class │ ├── Sprite3DM.class │ ├── Store.class │ ├── TextScroller$TextLine.class │ ├── TextScroller.class │ ├── TextState.class │ ├── TimeKeeper.class │ ├── Utils3DM.class │ ├── WaveSound$1.class │ ├── WaveSound$2.class │ ├── WaveSound$3.class │ ├── WaveSound$Player.class │ ├── WaveSound.class │ └── compile.bat └── readme.html └── manifest.mf /ChatNet/ChatClient.bat: -------------------------------------------------------------------------------- 1 | java -classpath Chat.jar ChatClient -------------------------------------------------------------------------------- /ChatNet/ChatHost.bat: -------------------------------------------------------------------------------- 1 | java -classpath Chat.jar ChatHost -------------------------------------------------------------------------------- /ChatNet/ChatNet.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/ChatNet/ChatNet.zip -------------------------------------------------------------------------------- /ChatNet/compile.bat: -------------------------------------------------------------------------------- 1 | C:\Utilities\Java\jdk1.6.0_21\bin\javac NetWork.java 2 | C:\Utilities\Java\jdk1.6.0_21\bin\javac ChatHost.java 3 | C:\Utilities\Java\jdk1.6.0_21\bin\javac ChatClient.java 4 | PAUSE -------------------------------------------------------------------------------- /FlightSim/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /FlightSim/CompileEdit.bat: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightEditor.java 2 | java FlightEditor 3 | pause -------------------------------------------------------------------------------- /FlightSim/CompileRun.bat: -------------------------------------------------------------------------------- 1 | 2 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightSim.java 3 | java FlightSim 4 | pause -------------------------------------------------------------------------------- /FlightSim/Counter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Counter.class -------------------------------------------------------------------------------- /FlightSim/DataArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/DataArray.class -------------------------------------------------------------------------------- /FlightSim/FileHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FileHandler.class -------------------------------------------------------------------------------- /FlightSim/FlatHash.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlatHash.class -------------------------------------------------------------------------------- /FlightSim/FlightCrafts/CraftList.txt: -------------------------------------------------------------------------------- 1 | F16Data.txt 2 | EuroData.txt 3 | MigData.txt -------------------------------------------------------------------------------- /FlightSim/FlightCrafts/EuroData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 13000 2 | Thrust/Newtons = 120000 3 | WingArea/msquare = 50 4 | Length/m = 15.96 5 | WingSpan/m = 10.95 6 | MaxCl = 1.6 7 | InducedDragE = 0.7695 8 | CoefficientOfParasiticDrag = 0.0238 -------------------------------------------------------------------------------- /FlightSim/FlightCrafts/F16Data.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 10000 2 | Thrust/Newtons = 76000 3 | WingArea/msquare = 28 4 | Length/m = 14.8 5 | WingSpan/m = 9.8 6 | MaxCl = 1.6 7 | InducedDragE = 0.9084 8 | CoefficientOfParasiticDrag = 0.0208 -------------------------------------------------------------------------------- /FlightSim/FlightCrafts/MigData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 14000 2 | Thrust/Newtons = 197000 3 | WingArea/msquare = 38 4 | Length/m = 17.4 5 | WingSpan/m = 11.4 6 | MaxCl = 1.6 7 | InducedDragE = 0.728 8 | CoefficientOfParasiticDrag = 0.0258 -------------------------------------------------------------------------------- /FlightSim/FlightLevels/1Terrain.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/1Terrain.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/Level0.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level0.txt: -------------------------------------------------------------------------------- 1 | This is a training mission. Your objective is to destroy all 4 target structures positioned around the area at Nav Points Alpha, Beta, Gamma and Delta. The target structures will have a yellow emblem while the friendly structures of your base will have a blue emblem. Do not destroy any friendly structures. -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/Level1.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level1.txt: -------------------------------------------------------------------------------- 1 | There are two Enemy Outposts Nav Points Beta and Gamma. They are expected to be lightly defended. Bring your two wingmates and destroy them. -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/Level2.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level2.txt: -------------------------------------------------------------------------------- 1 | There are enemy aircraft coming to attack your bases at Nav Points Alpha and Beta. They are expected to come from the directions of Nav Points Gamma, Delta and Epsilon. Defend the bases against these attacks. -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/Level3.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Level3.txt: -------------------------------------------------------------------------------- 1 | There are Enemy installations at Nav Points Beta, Gamma, Delta and Epsilon. Proceed from your current Position at Nav Point Alpha and destroy them. 2 | The mountains are heavily fortified with gun and missile batteries. Do not expose yourself to their fire unnecessarily. -------------------------------------------------------------------------------- /FlightSim/FlightLevels/LevelList.txt: -------------------------------------------------------------------------------- 1 | Level0.dat Mission 0 Level0.txt 2 | Level1.dat Mission 1 Level1.txt 3 | Level2.dat Mission 2 Level2.txt 4 | Level3.dat Mission 3 Level3.txt 5 | TestLevel.dat Mission -1 TestLevel.txt -------------------------------------------------------------------------------- /FlightSim/FlightLevels/Test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/Test.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/TestLevel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/TestLevel.dat -------------------------------------------------------------------------------- /FlightSim/FlightLevels/TestLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightLevels/TestLevel.txt -------------------------------------------------------------------------------- /FlightSim/FlightLevels/nonsense.dat: -------------------------------------------------------------------------------- 1 | dd -------------------------------------------------------------------------------- /FlightSim/FlightSim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSim.class -------------------------------------------------------------------------------- /FlightSim/FlightSim/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /FlightSim/FlightSimSource.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSimSource.zip -------------------------------------------------------------------------------- /FlightSim/FlightSound/BEEPDOUB.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/BEEPDOUB.WAV -------------------------------------------------------------------------------- /FlightSim/FlightSound/BEEPPURE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/BEEPPURE.WAV -------------------------------------------------------------------------------- /FlightSim/FlightSound/BEEP_FM.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/BEEP_FM.WAV -------------------------------------------------------------------------------- /FlightSim/FlightSound/BulletWhiz1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/BulletWhiz1.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/BulletWhiz2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/BulletWhiz2.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/FlameThrowerLoop - Afterburners.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/FlameThrowerLoop - Afterburners.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/FlatSoundData.txt: -------------------------------------------------------------------------------- 1 | BEEP_FM 2 | BEEPDOUB 3 | BEEPPURE 4 | KLICK 5 | WeaponHoming - Missile -------------------------------------------------------------------------------- /FlightSim/FlightSound/JetPackLoop1 - EngineLoop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/JetPackLoop1 - EngineLoop1.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/JetPackLoop2 - EngineLoop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/JetPackLoop2 - EngineLoop2.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/JetPackLoop3 - EngineLoop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/JetPackLoop3 - EngineLoop3.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/JetPackStart - Engines.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/JetPackStart - Engines.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/KLICK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/KLICK.WAV -------------------------------------------------------------------------------- /FlightSim/FlightSound/Shot - Cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/Shot - Cannon.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/Shot - MachineGun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/Shot - MachineGun.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/Shot - Missile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/Shot - Missile.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/SoundData.txt: -------------------------------------------------------------------------------- 1 | VehicleHitExplosion 5 -50 2 | VehicleDieExplosion 30 -50 3 | Shot - MachineGun 0 -55 4 | Shot - Missile 15 -55 5 | Shot - Cannon 10 -55 6 | BulletWhiz1 10 -55 7 | BulletWhiz2 10 -55 -------------------------------------------------------------------------------- /FlightSim/FlightSound/VehicleDieExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/VehicleDieExplosion.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/VehicleHitExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/VehicleHitExplosion.wav -------------------------------------------------------------------------------- /FlightSim/FlightSound/WeaponHoming - Missile.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightSound/WeaponHoming - Missile.WAV -------------------------------------------------------------------------------- /FlightSim/FlightStars/Raw Data.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightStars/Raw Data.ods -------------------------------------------------------------------------------- /FlightSim/FlightStars/Stars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightStars/Stars.txt -------------------------------------------------------------------------------- /FlightSim/FlightState$Craft$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Craft$1.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Craft.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Craft.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Doodad.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Doodad.class -------------------------------------------------------------------------------- /FlightSim/FlightState$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$GeneralVector.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Gun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Gun.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Object3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Object3DM.class -------------------------------------------------------------------------------- /FlightSim/FlightState$ObjectVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$ObjectVector.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Objective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Objective.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Plane.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Plane.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Position3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Position3DM.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Projectile.class -------------------------------------------------------------------------------- /FlightSim/FlightState$ProjectileType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$ProjectileType.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Structure.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Structure.class -------------------------------------------------------------------------------- /FlightSim/FlightState$TempSprite.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$TempSprite.class -------------------------------------------------------------------------------- /FlightSim/FlightState$TimeObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$TimeObjective.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Trail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Trail.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Turret.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Turret.class -------------------------------------------------------------------------------- /FlightSim/FlightState$UnitObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$UnitObjective.class -------------------------------------------------------------------------------- /FlightSim/FlightState$Vehicle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$Vehicle.class -------------------------------------------------------------------------------- /FlightSim/FlightState$World.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState$World.class -------------------------------------------------------------------------------- /FlightSim/FlightState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightState.class -------------------------------------------------------------------------------- /FlightSim/FlightText/PlayInstructions.txt: -------------------------------------------------------------------------------- 1 | Fly around and shoot down enemy aircraft! Friendly aircraft have blue trails enemy aircraft red. Use the obstacles around for cover and to avoid pursuit. 2 | 3 | Your objective is given to you in the briefing screen before each mission, with your targets highlighted on the map and any important navigation points marked out for you. Go to your targets and accomplish your objectives. -------------------------------------------------------------------------------- /FlightSim/FlightWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/FlightWindow.class -------------------------------------------------------------------------------- /FlightSim/Frames/AnnotatedScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Frames/AnnotatedScreenShot.png -------------------------------------------------------------------------------- /FlightSim/Frames/Blank.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FlightSim/Frames/BluePlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Frames/BluePlane.png -------------------------------------------------------------------------------- /FlightSim/Frames/BoxStyle.css: -------------------------------------------------------------------------------- 1 | margin: 5px; padding: 5px; border: 1px solid white; -------------------------------------------------------------------------------- /FlightSim/Frames/PlayInstructions.txt: -------------------------------------------------------------------------------- 1 | Fly around and shoot down enemy aircraft! Friendly aircraft have blue trails enemy aircraft red. Use the obstacles around for cover and to avoid pursuit. -------------------------------------------------------------------------------- /FlightSim/Frames/RedTurret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Frames/RedTurret.png -------------------------------------------------------------------------------- /FlightSim/Frames/ScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Frames/ScreenShot.png -------------------------------------------------------------------------------- /FlightSim/Frames/Terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Frames/Terrain.png -------------------------------------------------------------------------------- /FlightSim/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/GUI.class -------------------------------------------------------------------------------- /FlightSim/GameState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/GameState.class -------------------------------------------------------------------------------- /FlightSim/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/JCanvas.class -------------------------------------------------------------------------------- /FlightSim/MapState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/MapState.class -------------------------------------------------------------------------------- /FlightSim/MenuState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/MenuState.class -------------------------------------------------------------------------------- /FlightSim/New Text Document.txt: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightSim.java 2 | java FlightSim 3 | pause -------------------------------------------------------------------------------- /FlightSim/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/NumberQueue.class -------------------------------------------------------------------------------- /FlightSim/ObserverM$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/ObserverM$1.class -------------------------------------------------------------------------------- /FlightSim/ObserverM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/ObserverM.class -------------------------------------------------------------------------------- /FlightSim/Point3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Point3DM.class -------------------------------------------------------------------------------- /FlightSim/Point3DMShape.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Point3DMShape.class -------------------------------------------------------------------------------- /FlightSim/Printable3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Printable3DM.class -------------------------------------------------------------------------------- /FlightSim/Rotation3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Rotation3DM.class -------------------------------------------------------------------------------- /FlightSim/Run.bat: -------------------------------------------------------------------------------- 1 | java FlightSim 2 | pause -------------------------------------------------------------------------------- /FlightSim/Shape3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Shape3DM.class -------------------------------------------------------------------------------- /FlightSim/Sprite3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Sprite3DM.class -------------------------------------------------------------------------------- /FlightSim/Store.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Store.class -------------------------------------------------------------------------------- /FlightSim/TextScroller$TextLine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/TextScroller$TextLine.class -------------------------------------------------------------------------------- /FlightSim/TextScroller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/TextScroller.class -------------------------------------------------------------------------------- /FlightSim/TextState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/TextState.class -------------------------------------------------------------------------------- /FlightSim/TimeKeeper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/TimeKeeper.class -------------------------------------------------------------------------------- /FlightSim/Utils3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/Utils3DM.class -------------------------------------------------------------------------------- /FlightSim/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/FlightSim/WaveSound.class -------------------------------------------------------------------------------- /FlightSim/compile.bat: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" Counter.java 2 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" 3DM.java 3 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlatHash.java 4 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightEditor.java 5 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightSim.java 6 | 7 | pause -------------------------------------------------------------------------------- /FlightSim/readme.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /GUI/Asteroids$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Asteroids$Background.class -------------------------------------------------------------------------------- /GUI/Asteroids$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Asteroids$Projectile.class -------------------------------------------------------------------------------- /GUI/Asteroids.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Asteroids.class -------------------------------------------------------------------------------- /GUI/Astrolander$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Astrolander$Background.class -------------------------------------------------------------------------------- /GUI/Astrolander$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Astrolander$Projectile.class -------------------------------------------------------------------------------- /GUI/Astrolander.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Astrolander.class -------------------------------------------------------------------------------- /GUI/Bricks$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Bricks$Background.class -------------------------------------------------------------------------------- /GUI/Bricks$Brick.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Bricks$Brick.class -------------------------------------------------------------------------------- /GUI/Bricks$BrickVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Bricks$BrickVector.class -------------------------------------------------------------------------------- /GUI/Bricks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Bricks.class -------------------------------------------------------------------------------- /GUI/CTimer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/CTimer.class -------------------------------------------------------------------------------- /GUI/Circuit$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$Background.class -------------------------------------------------------------------------------- /GUI/Circuit$CircuitComponent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$CircuitComponent.class -------------------------------------------------------------------------------- /GUI/Circuit$Front.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$Front.class -------------------------------------------------------------------------------- /GUI/Circuit$Gate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$Gate.class -------------------------------------------------------------------------------- /GUI/Circuit$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$GeneralVector.class -------------------------------------------------------------------------------- /GUI/Circuit$Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$Point.class -------------------------------------------------------------------------------- /GUI/Circuit$Wire.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit$Wire.class -------------------------------------------------------------------------------- /GUI/Circuit.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Circuit.class -------------------------------------------------------------------------------- /GUI/Counter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Counter.class -------------------------------------------------------------------------------- /GUI/Discover$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Discover$Background.class -------------------------------------------------------------------------------- /GUI/Discover$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Discover$GeneralVector.class -------------------------------------------------------------------------------- /GUI/Discover$Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Discover$Node.class -------------------------------------------------------------------------------- /GUI/Discover.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Discover.class -------------------------------------------------------------------------------- /GUI/GUI.bat: -------------------------------------------------------------------------------- 1 | java -classpath . GameLibrary 2 | java GameLibrary 1 int 1 true On 3 | -------------------------------------------------------------------------------- /GUI/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/GUI.class -------------------------------------------------------------------------------- /GUI/GUI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/GUI.zip -------------------------------------------------------------------------------- /GUI/GameLibrary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/GameLibrary.class -------------------------------------------------------------------------------- /GUI/GameLibrary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/GameLibrary.java -------------------------------------------------------------------------------- /GUI/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/JCanvas.class -------------------------------------------------------------------------------- /GUI/Klotski$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski$Background.class -------------------------------------------------------------------------------- /GUI/Klotski$Covered.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski$Covered.class -------------------------------------------------------------------------------- /GUI/Klotski$Piece.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski$Piece.class -------------------------------------------------------------------------------- /GUI/Klotski$PointV.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski$PointV.class -------------------------------------------------------------------------------- /GUI/Klotski$State.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski$State.class -------------------------------------------------------------------------------- /GUI/Klotski$StateVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski$StateVector.class -------------------------------------------------------------------------------- /GUI/Klotski.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Klotski.class -------------------------------------------------------------------------------- /GUI/LoopingMidi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/LoopingMidi.class -------------------------------------------------------------------------------- /GUI/Network/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/GUI.class -------------------------------------------------------------------------------- /GUI/Network/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/JCanvas.class -------------------------------------------------------------------------------- /GUI/Network/Link.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/Link.class -------------------------------------------------------------------------------- /GUI/Network/LoopingMidi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/LoopingMidi.class -------------------------------------------------------------------------------- /GUI/Network/MPong.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/MPong.class -------------------------------------------------------------------------------- /GUI/Network/MultiPong.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/MultiPong.class -------------------------------------------------------------------------------- /GUI/Network/Network.bat: -------------------------------------------------------------------------------- 1 | java MultiPong -------------------------------------------------------------------------------- /GUI/Network/NetworkVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/NetworkVector.class -------------------------------------------------------------------------------- /GUI/Network/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/NumberQueue.class -------------------------------------------------------------------------------- /GUI/Network/Parallel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/Parallel.class -------------------------------------------------------------------------------- /GUI/Network/PointVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/PointVector.class -------------------------------------------------------------------------------- /GUI/Network/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Network/WaveSound.class -------------------------------------------------------------------------------- /GUI/Network/compile.bat: -------------------------------------------------------------------------------- 1 | C:\programs\sun\jdk\bin\javac MultiPong.java 2 | PAUSE -------------------------------------------------------------------------------- /GUI/NewTest$Craft.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Craft.class -------------------------------------------------------------------------------- /GUI/NewTest$Doodad.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Doodad.class -------------------------------------------------------------------------------- /GUI/NewTest$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$GeneralVector.class -------------------------------------------------------------------------------- /GUI/NewTest$Gun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Gun.class -------------------------------------------------------------------------------- /GUI/NewTest$Object3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Object3DM.class -------------------------------------------------------------------------------- /GUI/NewTest$Plane.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Plane.class -------------------------------------------------------------------------------- /GUI/NewTest$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Projectile.class -------------------------------------------------------------------------------- /GUI/NewTest$ProjectileType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$ProjectileType.class -------------------------------------------------------------------------------- /GUI/NewTest$TempSprite.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$TempSprite.class -------------------------------------------------------------------------------- /GUI/NewTest$Trail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$Trail.class -------------------------------------------------------------------------------- /GUI/NewTest$World.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest$World.class -------------------------------------------------------------------------------- /GUI/NewTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NewTest.class -------------------------------------------------------------------------------- /GUI/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/NumberQueue.class -------------------------------------------------------------------------------- /GUI/Observer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Observer.class -------------------------------------------------------------------------------- /GUI/ObserverM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/ObserverM.class -------------------------------------------------------------------------------- /GUI/Point3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Point3D.class -------------------------------------------------------------------------------- /GUI/Point3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Point3DM.class -------------------------------------------------------------------------------- /GUI/PointVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/PointVector.class -------------------------------------------------------------------------------- /GUI/PointVectorM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/PointVectorM.class -------------------------------------------------------------------------------- /GUI/Pong$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Pong$Background.class -------------------------------------------------------------------------------- /GUI/Pong$Padel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Pong$Padel.class -------------------------------------------------------------------------------- /GUI/Pong.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Pong.class -------------------------------------------------------------------------------- /GUI/Queens$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Queens$Background.class -------------------------------------------------------------------------------- /GUI/Queens$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Queens$GeneralVector.class -------------------------------------------------------------------------------- /GUI/Queens.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Queens.class -------------------------------------------------------------------------------- /GUI/Rotation3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Rotation3D.class -------------------------------------------------------------------------------- /GUI/Shape3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Shape3D.class -------------------------------------------------------------------------------- /GUI/Shape3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Shape3DM.class -------------------------------------------------------------------------------- /GUI/ShapeVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/ShapeVector.class -------------------------------------------------------------------------------- /GUI/ShapeVectorM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/ShapeVectorM.class -------------------------------------------------------------------------------- /GUI/Snake$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Snake$Background.class -------------------------------------------------------------------------------- /GUI/Snake$Position.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Snake$Position.class -------------------------------------------------------------------------------- /GUI/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Snake.class -------------------------------------------------------------------------------- /GUI/Sounds/CHEERS1.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/CHEERS1.WAV -------------------------------------------------------------------------------- /GUI/Sounds/CHEERS2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/CHEERS2.WAV -------------------------------------------------------------------------------- /GUI/Sounds/EXPLODE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/EXPLODE.WAV -------------------------------------------------------------------------------- /GUI/Sounds/Explosion1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/Explosion1.wav -------------------------------------------------------------------------------- /GUI/Sounds/Explosion2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/Explosion2.WAV -------------------------------------------------------------------------------- /GUI/Sounds/Explosion3.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/Explosion3.WAV -------------------------------------------------------------------------------- /GUI/Sounds/Explosion4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/Explosion4.wav -------------------------------------------------------------------------------- /GUI/Sounds/Explosion5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/Explosion5.wav -------------------------------------------------------------------------------- /GUI/Sounds/GIRDERIMPACT.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/GIRDERIMPACT.WAV -------------------------------------------------------------------------------- /GUI/Sounds/MOVPIECE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/MOVPIECE.WAV -------------------------------------------------------------------------------- /GUI/Sounds/OilDrumImpact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/OilDrumImpact.wav -------------------------------------------------------------------------------- /GUI/Sounds/ROCKETRELEASE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/ROCKETRELEASE.WAV -------------------------------------------------------------------------------- /GUI/Sounds/TAH.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/TAH.wav -------------------------------------------------------------------------------- /GUI/Sounds/TEK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/TEK.wav -------------------------------------------------------------------------------- /GUI/Sounds/TIK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/TIK.WAV -------------------------------------------------------------------------------- /GUI/Sounds/TINK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/TINK.wav -------------------------------------------------------------------------------- /GUI/Sounds/TOK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/TOK.wav -------------------------------------------------------------------------------- /GUI/Sounds/Tetris.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/Tetris.mid -------------------------------------------------------------------------------- /GUI/Sounds/WEAPONHOMING.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sounds/WEAPONHOMING.WAV -------------------------------------------------------------------------------- /GUI/Sprite3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Sprite3D.class -------------------------------------------------------------------------------- /GUI/Tanks$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Background.class -------------------------------------------------------------------------------- /GUI/Tanks$Display.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Display.class -------------------------------------------------------------------------------- /GUI/Tanks$LevelData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$LevelData.class -------------------------------------------------------------------------------- /GUI/Tanks$LineVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$LineVector.class -------------------------------------------------------------------------------- /GUI/Tanks$Obstacle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Obstacle.class -------------------------------------------------------------------------------- /GUI/Tanks$ObstacleVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$ObstacleVector.class -------------------------------------------------------------------------------- /GUI/Tanks$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Projectile.class -------------------------------------------------------------------------------- /GUI/Tanks$ProjectileVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$ProjectileVector.class -------------------------------------------------------------------------------- /GUI/Tanks$Salvage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Salvage.class -------------------------------------------------------------------------------- /GUI/Tanks$SalvageVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$SalvageVector.class -------------------------------------------------------------------------------- /GUI/Tanks$Shot.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Shot.class -------------------------------------------------------------------------------- /GUI/Tanks$Tank$Order.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Tank$Order.class -------------------------------------------------------------------------------- /GUI/Tanks$Tank.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$Tank.class -------------------------------------------------------------------------------- /GUI/Tanks$TankVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$TankVector.class -------------------------------------------------------------------------------- /GUI/Tanks$TempText.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$TempText.class -------------------------------------------------------------------------------- /GUI/Tanks$TempTextVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks$TempTextVector.class -------------------------------------------------------------------------------- /GUI/Tanks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tanks.class -------------------------------------------------------------------------------- /GUI/Test$Aircraft3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Aircraft3D.class -------------------------------------------------------------------------------- /GUI/Test$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Background.class -------------------------------------------------------------------------------- /GUI/Test$Display.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Display.class -------------------------------------------------------------------------------- /GUI/Test$Fragment3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Fragment3D.class -------------------------------------------------------------------------------- /GUI/Test$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$GeneralVector.class -------------------------------------------------------------------------------- /GUI/Test$Gun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Gun.class -------------------------------------------------------------------------------- /GUI/Test$MammothTank3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$MammothTank3D.class -------------------------------------------------------------------------------- /GUI/Test$Object3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Object3D.class -------------------------------------------------------------------------------- /GUI/Test$Objective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Objective.class -------------------------------------------------------------------------------- /GUI/Test$Obstacle3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Obstacle3D.class -------------------------------------------------------------------------------- /GUI/Test$PowerUp3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$PowerUp3D.class -------------------------------------------------------------------------------- /GUI/Test$Shake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Shake.class -------------------------------------------------------------------------------- /GUI/Test$Shot3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Shot3D.class -------------------------------------------------------------------------------- /GUI/Test$ShotType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$ShotType.class -------------------------------------------------------------------------------- /GUI/Test$Tank3D$Commands.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Tank3D$Commands.class -------------------------------------------------------------------------------- /GUI/Test$Tank3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test$Tank3D.class -------------------------------------------------------------------------------- /GUI/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Test.class -------------------------------------------------------------------------------- /GUI/Tetris$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tetris$1.class -------------------------------------------------------------------------------- /GUI/Tetris$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tetris$Background.class -------------------------------------------------------------------------------- /GUI/Tetris$Block.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tetris$Block.class -------------------------------------------------------------------------------- /GUI/Tetris$Position.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tetris$Position.class -------------------------------------------------------------------------------- /GUI/Tetris.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Tetris.class -------------------------------------------------------------------------------- /GUI/Turmites$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Turmites$Background.class -------------------------------------------------------------------------------- /GUI/Turmites$Reaction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Turmites$Reaction.class -------------------------------------------------------------------------------- /GUI/Turmites$Turmite.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Turmites$Turmite.class -------------------------------------------------------------------------------- /GUI/Turmites$TurmiteVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Turmites$TurmiteVector.class -------------------------------------------------------------------------------- /GUI/Turmites.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Turmites.class -------------------------------------------------------------------------------- /GUI/Utils3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Utils3D.class -------------------------------------------------------------------------------- /GUI/Utils3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/Utils3DM.class -------------------------------------------------------------------------------- /GUI/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GUI/WaveSound.class -------------------------------------------------------------------------------- /GUI/compile.bat: -------------------------------------------------------------------------------- 1 | C:\programs\sun\jdk\bin\javac 3D.java 2 | C:\programs\sun\jdk\bin\javac 3DM.java 3 | C:\programs\sun\jdk\bin\javac GUI.java 4 | C:\programs\sun\jdk\bin\javac GameLibrary.java 5 | PAUSE -------------------------------------------------------------------------------- /GameLibrary/.idea/.name: -------------------------------------------------------------------------------- 1 | GameLibrary -------------------------------------------------------------------------------- /GameLibrary/.idea/GameLibrary.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /GameLibrary/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GameLibrary/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GameLibrary/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /GameLibrary/.idea/other.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GameLibrary/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /GameLibrary/.idea/testrunner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /GameLibrary/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GameLibrary/Asteroids$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Asteroids$Background.class -------------------------------------------------------------------------------- /GameLibrary/Asteroids$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Asteroids$Projectile.class -------------------------------------------------------------------------------- /GameLibrary/Asteroids.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Asteroids.class -------------------------------------------------------------------------------- /GameLibrary/Astrolander$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Astrolander$Background.class -------------------------------------------------------------------------------- /GameLibrary/Astrolander$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Astrolander$Projectile.class -------------------------------------------------------------------------------- /GameLibrary/Astrolander.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Astrolander.class -------------------------------------------------------------------------------- /GameLibrary/Bricks$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Bricks$Background.class -------------------------------------------------------------------------------- /GameLibrary/Bricks$Brick.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Bricks$Brick.class -------------------------------------------------------------------------------- /GameLibrary/Bricks$BrickVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Bricks$BrickVector.class -------------------------------------------------------------------------------- /GameLibrary/Bricks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Bricks.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$Background.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$CircuitComponent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$CircuitComponent.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$Front.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$Front.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$Gate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$Gate.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$GeneralVector.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$Point.class -------------------------------------------------------------------------------- /GameLibrary/Circuit$Wire.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit$Wire.class -------------------------------------------------------------------------------- /GameLibrary/Circuit.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Circuit.class -------------------------------------------------------------------------------- /GameLibrary/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/GUI.class -------------------------------------------------------------------------------- /GameLibrary/GameLibrary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/GameLibrary.class -------------------------------------------------------------------------------- /GameLibrary/GameLibrarySource.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/GameLibrarySource.zip -------------------------------------------------------------------------------- /GameLibrary/LoopingMidi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/LoopingMidi.class -------------------------------------------------------------------------------- /GameLibrary/Observer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Observer.class -------------------------------------------------------------------------------- /GameLibrary/Point3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Point3D.class -------------------------------------------------------------------------------- /GameLibrary/PointVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/PointVector.class -------------------------------------------------------------------------------- /GameLibrary/Pong$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Pong$Background.class -------------------------------------------------------------------------------- /GameLibrary/Pong$Padel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Pong$Padel.class -------------------------------------------------------------------------------- /GameLibrary/Pong.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Pong.class -------------------------------------------------------------------------------- /GameLibrary/Run.bat: -------------------------------------------------------------------------------- 1 | C:\Utilities\Java\jre6\bin\java GameLibrary -------------------------------------------------------------------------------- /GameLibrary/Shape3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Shape3D.class -------------------------------------------------------------------------------- /GameLibrary/ShapeVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/ShapeVector.class -------------------------------------------------------------------------------- /GameLibrary/Snake$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Snake$Background.class -------------------------------------------------------------------------------- /GameLibrary/Snake$Position.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Snake$Position.class -------------------------------------------------------------------------------- /GameLibrary/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Snake.class -------------------------------------------------------------------------------- /GameLibrary/Sounds/CHEERS1.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/CHEERS1.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/CHEERS2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/CHEERS2.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/EXPLODE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/EXPLODE.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/Explosion1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/Explosion1.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/Explosion2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/Explosion2.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/Explosion3.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/Explosion3.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/Explosion4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/Explosion4.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/Explosion5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/Explosion5.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/GIRDERIMPACT.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/GIRDERIMPACT.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/MOVPIECE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/MOVPIECE.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/OilDrumImpact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/OilDrumImpact.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/ROCKETRELEASE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/ROCKETRELEASE.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/TAH.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/TAH.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/TEK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/TEK.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/TIK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/TIK.WAV -------------------------------------------------------------------------------- /GameLibrary/Sounds/TINK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/TINK.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/TOK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/TOK.wav -------------------------------------------------------------------------------- /GameLibrary/Sounds/Tetris.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/Tetris.mid -------------------------------------------------------------------------------- /GameLibrary/Sounds/WEAPONHOMING.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Sounds/WEAPONHOMING.WAV -------------------------------------------------------------------------------- /GameLibrary/Tanks$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Background.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Display.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Display.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$LevelData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$LevelData.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$LineVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$LineVector.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Obstacle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Obstacle.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$ObstacleVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$ObstacleVector.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Projectile.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$ProjectileVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$ProjectileVector.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Salvage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Salvage.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$SalvageVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$SalvageVector.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Shot.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Shot.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Tank$Order.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Tank$Order.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$Tank.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$Tank.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$TankVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$TankVector.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$TempText.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$TempText.class -------------------------------------------------------------------------------- /GameLibrary/Tanks$TempTextVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks$TempTextVector.class -------------------------------------------------------------------------------- /GameLibrary/Tanks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tanks.class -------------------------------------------------------------------------------- /GameLibrary/Test$Aircraft3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Aircraft3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Background.class -------------------------------------------------------------------------------- /GameLibrary/Test$Display.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Display.class -------------------------------------------------------------------------------- /GameLibrary/Test$Fragment3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Fragment3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$GeneralVector.class -------------------------------------------------------------------------------- /GameLibrary/Test$Gun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Gun.class -------------------------------------------------------------------------------- /GameLibrary/Test$MammothTank3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$MammothTank3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$Object3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Object3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$Objective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Objective.class -------------------------------------------------------------------------------- /GameLibrary/Test$Obstacle3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Obstacle3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$PowerUp3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$PowerUp3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$Shake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Shake.class -------------------------------------------------------------------------------- /GameLibrary/Test$Shot3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Shot3D.class -------------------------------------------------------------------------------- /GameLibrary/Test$ShotType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$ShotType.class -------------------------------------------------------------------------------- /GameLibrary/Test$Tank3D$Commands.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Tank3D$Commands.class -------------------------------------------------------------------------------- /GameLibrary/Test$Tank3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test$Tank3D.class -------------------------------------------------------------------------------- /GameLibrary/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Test.class -------------------------------------------------------------------------------- /GameLibrary/Tetris$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tetris$1.class -------------------------------------------------------------------------------- /GameLibrary/Tetris$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tetris$Background.class -------------------------------------------------------------------------------- /GameLibrary/Tetris$Block.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tetris$Block.class -------------------------------------------------------------------------------- /GameLibrary/Tetris$Position.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tetris$Position.class -------------------------------------------------------------------------------- /GameLibrary/Tetris.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Tetris.class -------------------------------------------------------------------------------- /GameLibrary/Turmites$Background.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Turmites$Background.class -------------------------------------------------------------------------------- /GameLibrary/Turmites$Reaction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Turmites$Reaction.class -------------------------------------------------------------------------------- /GameLibrary/Turmites$Turmite.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Turmites$Turmite.class -------------------------------------------------------------------------------- /GameLibrary/Turmites$TurmiteVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Turmites$TurmiteVector.class -------------------------------------------------------------------------------- /GameLibrary/Turmites.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Turmites.class -------------------------------------------------------------------------------- /GameLibrary/Utils3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/Utils3D.class -------------------------------------------------------------------------------- /GameLibrary/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/GameLibrary/WaveSound.class -------------------------------------------------------------------------------- /GameLibrary/compile.bat: -------------------------------------------------------------------------------- 1 | javac 3D.java 2 | javac Sound.java 3 | javac GameLibrary.java 4 | pause -------------------------------------------------------------------------------- /Globe/DepthTexture3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/DepthTexture3DS.class -------------------------------------------------------------------------------- /Globe/DetNoise2D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/DetNoise2D.class -------------------------------------------------------------------------------- /Globe/DetPerlin2D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/DetPerlin2D.class -------------------------------------------------------------------------------- /Globe/Earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Earth.jpg -------------------------------------------------------------------------------- /Globe/FlatTexture3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/FlatTexture3DS.class -------------------------------------------------------------------------------- /Globe/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/GUI.class -------------------------------------------------------------------------------- /Globe/GUITest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/GUITest.class -------------------------------------------------------------------------------- /Globe/GUITestBed.bat: -------------------------------------------------------------------------------- 1 | ::"C:\Utilities\Java\jdk1.6.0_21\bin\javac" -O GUI.java 2 | ::"C:\Utilities\Java\jdk1.6.0_21\bin\javac" -O 3DS.java 3 | ::"C:\Utilities\Java\jdk1.6.0_21\bin\javac" -O JCanvas.java 4 | ::"C:\Utilities\Java\jdk1.6.0_21\bin\javac" -O Noise.java 5 | ::"C:\Utilities\Java\jdk1.6.0_21\bin\javac" -O NumberQueue.java 6 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" -O GUITestBed.java 7 | java GUITestBed 8 | pause -------------------------------------------------------------------------------- /Globe/GUITestBed.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/GUITestBed.class -------------------------------------------------------------------------------- /Globe/Globe Source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Globe Source.zip -------------------------------------------------------------------------------- /Globe/Image3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Image3DS.class -------------------------------------------------------------------------------- /Globe/ImageTexture3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/ImageTexture3DS.class -------------------------------------------------------------------------------- /Globe/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/JCanvas.class -------------------------------------------------------------------------------- /Globe/Matrix3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Matrix3DS.class -------------------------------------------------------------------------------- /Globe/Noise.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Noise.class -------------------------------------------------------------------------------- /Globe/Noise1D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Noise1D.class -------------------------------------------------------------------------------- /Globe/Noise2D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Noise2D.class -------------------------------------------------------------------------------- /Globe/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/NumberQueue.class -------------------------------------------------------------------------------- /Globe/Observer3DS$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Observer3DS$1.class -------------------------------------------------------------------------------- /Globe/Observer3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Observer3DS.class -------------------------------------------------------------------------------- /Globe/Perlin2D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Perlin2D.class -------------------------------------------------------------------------------- /Globe/Point3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Point3DS.class -------------------------------------------------------------------------------- /Globe/Polygon3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Polygon3DS.class -------------------------------------------------------------------------------- /Globe/Renderer3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Renderer3DS.class -------------------------------------------------------------------------------- /Globe/Rotation3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Rotation3DS.class -------------------------------------------------------------------------------- /Globe/Shape3DS$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Shape3DS$1.class -------------------------------------------------------------------------------- /Globe/Shape3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Shape3DS.class -------------------------------------------------------------------------------- /Globe/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Test.png -------------------------------------------------------------------------------- /Globe/Texture3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Texture3DS.class -------------------------------------------------------------------------------- /Globe/Utils3DS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/Utils3DS.class -------------------------------------------------------------------------------- /Globe/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/clouds.png -------------------------------------------------------------------------------- /Globe/grass4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/grass4.JPG -------------------------------------------------------------------------------- /Globe/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Globe/water.png -------------------------------------------------------------------------------- /New Folder/Counter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Counter.class -------------------------------------------------------------------------------- /New Folder/DataArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/DataArray.class -------------------------------------------------------------------------------- /New Folder/FileHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FileHandler.class -------------------------------------------------------------------------------- /New Folder/FlatHash.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlatHash.class -------------------------------------------------------------------------------- /New Folder/FlightCrafts/CraftList.txt: -------------------------------------------------------------------------------- 1 | F16Data.txt 2 | EuroData.txt 3 | MigData.txt -------------------------------------------------------------------------------- /New Folder/FlightCrafts/EuroData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 13000 2 | Thrust/Newtons = 120000 3 | WingArea/msquare = 50 4 | Length/m = 15.96 5 | WingSpan/m = 10.95 6 | MaxCl = 1.6 7 | InducedDragE = 0.7695 8 | CoefficientOfParasiticDrag = 0.0238 -------------------------------------------------------------------------------- /New Folder/FlightCrafts/F16Data.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 10000 2 | Thrust/Newtons = 76000 3 | WingArea/msquare = 28 4 | Length/m = 14.8 5 | WingSpan/m = 9.8 6 | MaxCl = 1.6 7 | InducedDragE = 0.9084 8 | CoefficientOfParasiticDrag = 0.0208 -------------------------------------------------------------------------------- /New Folder/FlightCrafts/MigData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 14000 2 | Thrust/Newtons = 197000 3 | WingArea/msquare = 38 4 | Length/m = 17.4 5 | WingSpan/m = 11.4 6 | MaxCl = 1.6 7 | InducedDragE = 0.728 8 | CoefficientOfParasiticDrag = 0.0258 -------------------------------------------------------------------------------- /New Folder/FlightLevels/1Terrain.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/1Terrain.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/Level0.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level0.txt: -------------------------------------------------------------------------------- 1 | This is a training mission. Your objective is to destroy all 4 target structures positioned around the area at Nav Points Alpha, Beta, Gamma and Delta. The target structures will have a yellow emblem while the friendly structures of your base will have a blue emblem. Do not destroy any friendly structures. -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/Level1.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level1.txt: -------------------------------------------------------------------------------- 1 | There are two Enemy Outposts Nav Points Beta and Gamma. They are expected to be lightly defended. Bring your two wingmates and destroy them. -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/Level2.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level2.txt: -------------------------------------------------------------------------------- 1 | There are enemy aircraft coming to attack your bases at Nav Points Alpha and Beta. They are expected to come from the directions of Nav Points Gamma, Delta and Epsilon. Defend the bases against these attacks. -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/Level3.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/Level3.txt: -------------------------------------------------------------------------------- 1 | There are Enemy installations at Nav Points Beta, Gamma, Delta and Epsilon. Proceed from your current Position at Nav Point Alpha and destroy them. 2 | The mountains are heavily fortified with gun and missile batteries. Do not expose yourself to their fire unnecessarily. -------------------------------------------------------------------------------- /New Folder/FlightLevels/LevelList.txt: -------------------------------------------------------------------------------- 1 | Level0.dat Mission 0 Level0.txt 2 | Level1.dat Mission 1 Level1.txt 3 | Level2.dat Mission 2 Level2.txt 4 | Level3.dat Mission 3 Level3.txt 5 | TestLevel.dat Mission -1 TestLevel.txt -------------------------------------------------------------------------------- /New Folder/FlightLevels/Test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/Test.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/TestLevel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/TestLevel.dat -------------------------------------------------------------------------------- /New Folder/FlightLevels/TestLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightLevels/TestLevel.txt -------------------------------------------------------------------------------- /New Folder/FlightLevels/nonsense.dat: -------------------------------------------------------------------------------- 1 | dd -------------------------------------------------------------------------------- /New Folder/FlightSim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSim.class -------------------------------------------------------------------------------- /New Folder/FlightSim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSim.java -------------------------------------------------------------------------------- /New Folder/FlightSound/BEEPDOUB.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/BEEPDOUB.WAV -------------------------------------------------------------------------------- /New Folder/FlightSound/BEEPPURE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/BEEPPURE.WAV -------------------------------------------------------------------------------- /New Folder/FlightSound/BEEP_FM.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/BEEP_FM.WAV -------------------------------------------------------------------------------- /New Folder/FlightSound/BulletWhiz1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/BulletWhiz1.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/BulletWhiz2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/BulletWhiz2.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/FlameThrowerLoop - Afterburners.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/FlameThrowerLoop - Afterburners.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/FlatSoundData.txt: -------------------------------------------------------------------------------- 1 | BEEP_FM 2 | BEEPDOUB 3 | BEEPPURE 4 | KLICK 5 | WeaponHoming - Missile -------------------------------------------------------------------------------- /New Folder/FlightSound/JetPackLoop1 - EngineLoop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/JetPackLoop1 - EngineLoop1.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/JetPackLoop2 - EngineLoop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/JetPackLoop2 - EngineLoop2.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/JetPackLoop3 - EngineLoop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/JetPackLoop3 - EngineLoop3.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/JetPackStart - Engines.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/JetPackStart - Engines.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/KLICK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/KLICK.WAV -------------------------------------------------------------------------------- /New Folder/FlightSound/Shot - Cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/Shot - Cannon.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/Shot - MachineGun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/Shot - MachineGun.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/Shot - Missile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/Shot - Missile.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/SoundData.txt: -------------------------------------------------------------------------------- 1 | VehicleHitExplosion 5 -50 2 | VehicleDieExplosion 30 -50 3 | Shot - MachineGun 0 -55 4 | Shot - Missile 15 -55 5 | Shot - Cannon 10 -55 6 | BulletWhiz1 10 -55 7 | BulletWhiz2 10 -55 -------------------------------------------------------------------------------- /New Folder/FlightSound/VehicleDieExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/VehicleDieExplosion.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/VehicleHitExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/VehicleHitExplosion.wav -------------------------------------------------------------------------------- /New Folder/FlightSound/WeaponHoming - Missile.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightSound/WeaponHoming - Missile.WAV -------------------------------------------------------------------------------- /New Folder/FlightState$Craft.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Craft.class -------------------------------------------------------------------------------- /New Folder/FlightState$Doodad.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Doodad.class -------------------------------------------------------------------------------- /New Folder/FlightState$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$GeneralVector.class -------------------------------------------------------------------------------- /New Folder/FlightState$Gun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Gun.class -------------------------------------------------------------------------------- /New Folder/FlightState$Object3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Object3DM.class -------------------------------------------------------------------------------- /New Folder/FlightState$ObjectVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$ObjectVector.class -------------------------------------------------------------------------------- /New Folder/FlightState$Objective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Objective.class -------------------------------------------------------------------------------- /New Folder/FlightState$Plane.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Plane.class -------------------------------------------------------------------------------- /New Folder/FlightState$Position3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Position3DM.class -------------------------------------------------------------------------------- /New Folder/FlightState$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Projectile.class -------------------------------------------------------------------------------- /New Folder/FlightState$ProjectileType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$ProjectileType.class -------------------------------------------------------------------------------- /New Folder/FlightState$Structure.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Structure.class -------------------------------------------------------------------------------- /New Folder/FlightState$TempSprite.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$TempSprite.class -------------------------------------------------------------------------------- /New Folder/FlightState$TimeObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$TimeObjective.class -------------------------------------------------------------------------------- /New Folder/FlightState$Trail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Trail.class -------------------------------------------------------------------------------- /New Folder/FlightState$Turret.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Turret.class -------------------------------------------------------------------------------- /New Folder/FlightState$UnitObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$UnitObjective.class -------------------------------------------------------------------------------- /New Folder/FlightState$Vehicle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$Vehicle.class -------------------------------------------------------------------------------- /New Folder/FlightState$World.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState$World.class -------------------------------------------------------------------------------- /New Folder/FlightState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightState.class -------------------------------------------------------------------------------- /New Folder/FlightText/PlayInstructions.txt: -------------------------------------------------------------------------------- 1 | Fly around and shoot down enemy aircraft! Friendly aircraft have blue trails enemy aircraft red. Use the obstacles around for cover and to avoid pursuit. -------------------------------------------------------------------------------- /New Folder/FlightWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/FlightWindow.class -------------------------------------------------------------------------------- /New Folder/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/GUI.class -------------------------------------------------------------------------------- /New Folder/GameState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/GameState.class -------------------------------------------------------------------------------- /New Folder/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/JCanvas.class -------------------------------------------------------------------------------- /New Folder/MapState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/MapState.class -------------------------------------------------------------------------------- /New Folder/MenuState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/MenuState.class -------------------------------------------------------------------------------- /New Folder/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/NumberQueue.class -------------------------------------------------------------------------------- /New Folder/ObserverM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/ObserverM.class -------------------------------------------------------------------------------- /New Folder/Point3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Point3DM.class -------------------------------------------------------------------------------- /New Folder/Point3DMShape.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Point3DMShape.class -------------------------------------------------------------------------------- /New Folder/Printable3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Printable3DM.class -------------------------------------------------------------------------------- /New Folder/Rotation3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Rotation3DM.class -------------------------------------------------------------------------------- /New Folder/Shape3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Shape3DM.class -------------------------------------------------------------------------------- /New Folder/Sprite3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Sprite3D.class -------------------------------------------------------------------------------- /New Folder/Sprite3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Sprite3DM.class -------------------------------------------------------------------------------- /New Folder/Store.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Store.class -------------------------------------------------------------------------------- /New Folder/Test Run.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Test Run.rar -------------------------------------------------------------------------------- /New Folder/TextScroller$TextLine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/TextScroller$TextLine.class -------------------------------------------------------------------------------- /New Folder/TextScroller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/TextScroller.class -------------------------------------------------------------------------------- /New Folder/TextState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/TextState.class -------------------------------------------------------------------------------- /New Folder/TimeKeeper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/TimeKeeper.class -------------------------------------------------------------------------------- /New Folder/Utils3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/Utils3DM.class -------------------------------------------------------------------------------- /New Folder/WaveSound$Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/WaveSound$Player.class -------------------------------------------------------------------------------- /New Folder/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/New Folder/WaveSound.class -------------------------------------------------------------------------------- /New Folder/compile.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Java\jdk1.6.0_01\bin\javac" 3DM.java 2 | PAUSE 3 | "C:\Program Files\Java\jdk1.6.0_01\bin\javac" GUI.java 4 | PAUSE 5 | "C:\Program Files\Java\jdk1.6.0_01\bin\javac" FlightSim.java 6 | PAUSE -------------------------------------------------------------------------------- /New Folder/run.bat: -------------------------------------------------------------------------------- 1 | java -cp . FlightSim -------------------------------------------------------------------------------- /Ribbon4K/Apple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/Apple.class -------------------------------------------------------------------------------- /Ribbon4K/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/JCanvas.class -------------------------------------------------------------------------------- /Ribbon4K/NE3W.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/NE3W.jar -------------------------------------------------------------------------------- /Ribbon4K/New Folder/Apple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/Apple.class -------------------------------------------------------------------------------- /Ribbon4K/New Folder/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/JCanvas.class -------------------------------------------------------------------------------- /Ribbon4K/New Folder/NE3W.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/NE3W.jar -------------------------------------------------------------------------------- /Ribbon4K/New Folder/Ribbon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/Ribbon.class -------------------------------------------------------------------------------- /Ribbon4K/New Folder/RibbonGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/RibbonGame.class -------------------------------------------------------------------------------- /Ribbon4K/New Folder/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/Snake.class -------------------------------------------------------------------------------- /Ribbon4K/New Folder/SnakeVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/New Folder/SnakeVector.class -------------------------------------------------------------------------------- /Ribbon4K/New Folder/compile.bat: -------------------------------------------------------------------------------- 1 | C:\programs\sun\jdk\bin\javac Ribbon.java 2 | 3 | PAUSE -------------------------------------------------------------------------------- /Ribbon4K/New Folder/jar.bat: -------------------------------------------------------------------------------- 1 | c:\programs\sun\jdk\bin\jar cf NE3W.jar *.class 2 | PAUSE -------------------------------------------------------------------------------- /Ribbon4K/Ribbon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/Ribbon.class -------------------------------------------------------------------------------- /Ribbon4K/RibbonGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/RibbonGame.class -------------------------------------------------------------------------------- /Ribbon4K/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/Snake.class -------------------------------------------------------------------------------- /Ribbon4K/SnakeVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Ribbon4K/SnakeVector.class -------------------------------------------------------------------------------- /Ribbon4K/compile.bat: -------------------------------------------------------------------------------- 1 | C:\programs\sun\jdk\bin\javac Ribbon.java 2 | 3 | PAUSE -------------------------------------------------------------------------------- /Ribbon4K/jar.bat: -------------------------------------------------------------------------------- 1 | c:\programs\sun\jdk\bin\jar cf NE3W.jar *.class 2 | PAUSE -------------------------------------------------------------------------------- /RibbonNet/Apple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/Apple.class -------------------------------------------------------------------------------- /RibbonNet/Client.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/Client.class -------------------------------------------------------------------------------- /RibbonNet/DataArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/DataArray.class -------------------------------------------------------------------------------- /RibbonNet/DataHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/DataHandler.class -------------------------------------------------------------------------------- /RibbonNet/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/GUI.class -------------------------------------------------------------------------------- /RibbonNet/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/JCanvas.class -------------------------------------------------------------------------------- /RibbonNet/Link.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/Link.class -------------------------------------------------------------------------------- /RibbonNet/NetRibbon.bat: -------------------------------------------------------------------------------- 1 | java NetRibbon -------------------------------------------------------------------------------- /RibbonNet/NetRibbon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/NetRibbon.class -------------------------------------------------------------------------------- /RibbonNet/NetworkVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/NetworkVector.class -------------------------------------------------------------------------------- /RibbonNet/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/NumberQueue.class -------------------------------------------------------------------------------- /RibbonNet/Parallel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/Parallel.class -------------------------------------------------------------------------------- /RibbonNet/RibbonClient.bat: -------------------------------------------------------------------------------- 1 | java RibbonClient -------------------------------------------------------------------------------- /RibbonNet/RibbonClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/RibbonClient.class -------------------------------------------------------------------------------- /RibbonNet/RibbonClientGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/RibbonClientGame.class -------------------------------------------------------------------------------- /RibbonNet/RibbonGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/RibbonGame.class -------------------------------------------------------------------------------- /RibbonNet/RibbonNet.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/RibbonNet.rar -------------------------------------------------------------------------------- /RibbonNet/ScanPort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/ScanPort.class -------------------------------------------------------------------------------- /RibbonNet/Scanner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/Scanner.class -------------------------------------------------------------------------------- /RibbonNet/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/Snake.class -------------------------------------------------------------------------------- /RibbonNet/SnakeVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/SnakeVector.class -------------------------------------------------------------------------------- /RibbonNet/TimeKeeper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/TimeKeeper.class -------------------------------------------------------------------------------- /RibbonNet/UDPListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/UDPListener.class -------------------------------------------------------------------------------- /RibbonNet/UtilsNet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/UtilsNet.class -------------------------------------------------------------------------------- /RibbonNet/compile.bat: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" DataArray.java 2 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" NetWork.java 3 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" NetRibbon.java 4 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" RibbonClient.java 5 | PAUSE -------------------------------------------------------------------------------- /RibbonNet/run.FFFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RibbonNet/run.FFFF -------------------------------------------------------------------------------- /RobotSim/ControlWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/ControlWindow.class -------------------------------------------------------------------------------- /RobotSim/Counter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Counter.class -------------------------------------------------------------------------------- /RobotSim/FileHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/FileHandler.class -------------------------------------------------------------------------------- /RobotSim/FilePicker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/FilePicker.class -------------------------------------------------------------------------------- /RobotSim/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/GUI.class -------------------------------------------------------------------------------- /RobotSim/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/JCanvas.class -------------------------------------------------------------------------------- /RobotSim/LoopingMidi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/LoopingMidi.class -------------------------------------------------------------------------------- /RobotSim/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/NumberQueue.class -------------------------------------------------------------------------------- /RobotSim/ObserverM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/ObserverM.class -------------------------------------------------------------------------------- /RobotSim/Point3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Point3DM.class -------------------------------------------------------------------------------- /RobotSim/PointVectorM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/PointVectorM.class -------------------------------------------------------------------------------- /RobotSim/Program.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Program.zip -------------------------------------------------------------------------------- /RobotSim/RobotControl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotControl.class -------------------------------------------------------------------------------- /RobotSim/RobotMobileStream.txt: -------------------------------------------------------------------------------- 1 | 1 1 1 1 2 | 1 -1 -1 -1 3 | 0 0 0 6 4 | 0 0 0 5.77 -------------------------------------------------------------------------------- /RobotSim/RobotOutputPosition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotOutputPosition.txt -------------------------------------------------------------------------------- /RobotSim/RobotOutputSpeeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotOutputSpeeds.txt -------------------------------------------------------------------------------- /RobotSim/RobotOutputWheels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotOutputWheels.txt -------------------------------------------------------------------------------- /RobotSim/RobotSim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotSim.class -------------------------------------------------------------------------------- /RobotSim/RobotStats.txt: -------------------------------------------------------------------------------- 1 | 0RobotLength 0.3 m 2 | 1RobotThickness 0.1 m 3 | 2WheelSpeeds 0.5 m/s 4 | 3TrailDuration 1.0 s 5 | 4 6 | 5 7 | 6 8 | 7InputFileV RobotMobileSpeed.txt 9 | 8InputFileW RobotWheelSpeed.txt 10 | 9InputStreamV RobotMobileStream.txt 11 | 10InputStreamW RobotWheelStream.txt 12 | 11OutputVFile RobotOutputSpeeds.txt 13 | 12OutputPFile RobotOutputPosition.txt 14 | 13OutputWFile RobotOutputWheels.txt -------------------------------------------------------------------------------- /RobotSim/RobotWheelSpeed.txt: -------------------------------------------------------------------------------- 1 | 1 1 1 1 2 | 2 1 0 0 3 | 3 0 0 0 4 | 4 -1 -1 -1 5 | 6 -1 1 0 6 | 8 -1 1 1 7 | 12 -1 -1 0 8 | 20 0 0 0 9 | -------------------------------------------------------------------------------- /RobotSim/RobotWheelStream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWheelStream.txt -------------------------------------------------------------------------------- /RobotSim/RobotWindow$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWindow$GeneralVector.class -------------------------------------------------------------------------------- /RobotSim/RobotWindow$Mobile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWindow$Mobile.class -------------------------------------------------------------------------------- /RobotSim/RobotWindow$Obstacle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWindow$Obstacle.class -------------------------------------------------------------------------------- /RobotSim/RobotWindow$Thruster.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWindow$Thruster.class -------------------------------------------------------------------------------- /RobotSim/RobotWindow$Trail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWindow$Trail.class -------------------------------------------------------------------------------- /RobotSim/RobotWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/RobotWindow.class -------------------------------------------------------------------------------- /RobotSim/Rotation3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Rotation3D.class -------------------------------------------------------------------------------- /RobotSim/RunControl.bat: -------------------------------------------------------------------------------- 1 | java -classpath . RobotControl 2 | Pause -------------------------------------------------------------------------------- /RobotSim/RunSim.bat: -------------------------------------------------------------------------------- 1 | java -classpath . RobotSim 2 | Pause -------------------------------------------------------------------------------- /RobotSim/Shape3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Shape3DM.class -------------------------------------------------------------------------------- /RobotSim/ShapeVectorM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/ShapeVectorM.class -------------------------------------------------------------------------------- /RobotSim/Sprite3D.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Sprite3D.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/Apple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/Apple.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/DataArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/DataArray.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/DataLink.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/DataLink.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/GUI.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/JCanvas.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/Link.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/Link.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/NetRibbon.bat: -------------------------------------------------------------------------------- 1 | java NetRibbon -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/NetRibbon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/NetRibbon.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/NetworkVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/NetworkVector.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/NumberQueue.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/Parallel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/Parallel.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/RibbonClient.bat: -------------------------------------------------------------------------------- 1 | java RibbonClient -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/RibbonClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/RibbonClient.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/RibbonClientGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/RibbonClientGame.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/RibbonGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/RibbonGame.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/ScanPort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/ScanPort.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/Scanner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/Scanner.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/Snake.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/SnakeVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/SnakeVector.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/TCP RibbonNet.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/TCP RibbonNet.zip -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/TimeKeeper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/TimeKeeper.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/UtilsNet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TCP RibbonNet/UtilsNet.class -------------------------------------------------------------------------------- /RobotSim/TCP RibbonNet/compile.bat: -------------------------------------------------------------------------------- 1 | C:\programs\sun\jdk\bin\javac NetWork.java 2 | C:\programs\sun\jdk\bin\javac NetRibbon.java 3 | C:\programs\sun\jdk\bin\javac RibbonClient.java 4 | PAUSE -------------------------------------------------------------------------------- /RobotSim/TimeKeeper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/TimeKeeper.class -------------------------------------------------------------------------------- /RobotSim/Utils3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/Utils3DM.class -------------------------------------------------------------------------------- /RobotSim/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/RobotSim/WaveSound.class -------------------------------------------------------------------------------- /RobotSim/compile.bat: -------------------------------------------------------------------------------- 1 | C:\programs\sun\jdk\bin\javac 3DM.java 2 | C:\programs\sun\jdk\bin\javac GUI.java 3 | C:\programs\sun\jdk\bin\javac RobotSim.java 4 | C:\programs\sun\jdk\bin\javac RobotControl.java 5 | PAUSE -------------------------------------------------------------------------------- /Test Run/FlightCrafts/CraftList.txt: -------------------------------------------------------------------------------- 1 | F16Data.txt 2 | EuroData.txt 3 | MigData.txt -------------------------------------------------------------------------------- /Test Run/FlightCrafts/EuroData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 13000 2 | Thrust/Newtons = 120000 3 | WingArea/msquare = 50 4 | Length/m = 15.96 5 | WingSpan/m = 10.95 6 | MaxCl = 1.6 7 | InducedDragE = 0.7695 8 | CoefficientOfParasiticDrag = 0.0238 -------------------------------------------------------------------------------- /Test Run/FlightCrafts/F16Data.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 10000 2 | Thrust/Newtons = 76000 3 | WingArea/msquare = 28 4 | Length/m = 14.8 5 | WingSpan/m = 9.8 6 | MaxCl = 1.6 7 | InducedDragE = 0.9084 8 | CoefficientOfParasiticDrag = 0.0208 -------------------------------------------------------------------------------- /Test Run/FlightCrafts/MigData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 14000 2 | Thrust/Newtons = 197000 3 | WingArea/msquare = 38 4 | Length/m = 17.4 5 | WingSpan/m = 11.4 6 | MaxCl = 1.6 7 | InducedDragE = 0.728 8 | CoefficientOfParasiticDrag = 0.0258 -------------------------------------------------------------------------------- /Test Run/FlightLevels/1Terrain.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/1Terrain.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/Level0.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level0.txt: -------------------------------------------------------------------------------- 1 | This is a training mission. Your objective is to destroy all 4 target structures positioned around the area at Nav Points Alpha, Beta, Gamma and Delta. The target structures will have a yellow emblem while the friendly structures of your base will have a blue emblem. Do not destroy any friendly structures. -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/Level1.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level1.txt: -------------------------------------------------------------------------------- 1 | There are two Enemy Outposts Nav Points Beta and Gamma. They are expected to be lightly defended. Bring your two wingmates and destroy them. -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/Level2.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level2.txt: -------------------------------------------------------------------------------- 1 | There are enemy aircraft coming to attack your bases at Nav Points Alpha and Beta. They are expected to come from the directions of Nav Points Gamma, Delta and Epsilon. Defend the bases against these attacks. -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/Level3.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/Level3.txt: -------------------------------------------------------------------------------- 1 | There are Enemy installations at Nav Points Beta, Gamma, Delta and Epsilon. Proceed from your current Position at Nav Point Alpha and destroy them. 2 | The mountains are heavily fortified with gun and missile batteries. Do not expose yourself to their fire unnecessarily. -------------------------------------------------------------------------------- /Test Run/FlightLevels/LevelList.txt: -------------------------------------------------------------------------------- 1 | Level0.dat Mission 0 Level0.txt 2 | Level1.dat Mission 1 Level1.txt 3 | Level2.dat Mission 2 Level2.txt 4 | Level3.dat Mission 3 Level3.txt 5 | TestLevel.dat Mission -1 TestLevel.txt -------------------------------------------------------------------------------- /Test Run/FlightLevels/Test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/Test.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/TestLevel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/TestLevel.dat -------------------------------------------------------------------------------- /Test Run/FlightLevels/TestLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightLevels/TestLevel.txt -------------------------------------------------------------------------------- /Test Run/FlightLevels/nonsense.dat: -------------------------------------------------------------------------------- 1 | dd -------------------------------------------------------------------------------- /Test Run/FlightSim.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSim.zip -------------------------------------------------------------------------------- /Test Run/FlightSound/BEEPDOUB.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/BEEPDOUB.WAV -------------------------------------------------------------------------------- /Test Run/FlightSound/BEEPPURE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/BEEPPURE.WAV -------------------------------------------------------------------------------- /Test Run/FlightSound/BEEP_FM.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/BEEP_FM.WAV -------------------------------------------------------------------------------- /Test Run/FlightSound/BulletWhiz1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/BulletWhiz1.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/BulletWhiz2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/BulletWhiz2.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/FlameThrowerLoop - Afterburners.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/FlameThrowerLoop - Afterburners.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/FlatSoundData.txt: -------------------------------------------------------------------------------- 1 | BEEP_FM 2 | BEEPDOUB 3 | BEEPPURE 4 | KLICK 5 | WeaponHoming - Missile -------------------------------------------------------------------------------- /Test Run/FlightSound/JetPackLoop1 - EngineLoop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/JetPackLoop1 - EngineLoop1.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/JetPackLoop2 - EngineLoop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/JetPackLoop2 - EngineLoop2.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/JetPackLoop3 - EngineLoop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/JetPackLoop3 - EngineLoop3.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/JetPackStart - Engines.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/JetPackStart - Engines.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/KLICK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/KLICK.WAV -------------------------------------------------------------------------------- /Test Run/FlightSound/Shot - Cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/Shot - Cannon.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/Shot - MachineGun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/Shot - MachineGun.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/Shot - Missile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/Shot - Missile.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/SoundData.txt: -------------------------------------------------------------------------------- 1 | VehicleHitExplosion 5 -50 2 | VehicleDieExplosion 30 -50 3 | Shot - MachineGun 0 -55 4 | Shot - Missile 15 -55 5 | Shot - Cannon 10 -55 6 | BulletWhiz1 10 -55 7 | BulletWhiz2 10 -55 -------------------------------------------------------------------------------- /Test Run/FlightSound/VehicleDieExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/VehicleDieExplosion.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/VehicleHitExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/VehicleHitExplosion.wav -------------------------------------------------------------------------------- /Test Run/FlightSound/WeaponHoming - Missile.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightSound/WeaponHoming - Missile.WAV -------------------------------------------------------------------------------- /Test Run/FlightStars/Raw Data.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightStars/Raw Data.ods -------------------------------------------------------------------------------- /Test Run/FlightStars/Stars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/FlightStars/Stars.txt -------------------------------------------------------------------------------- /Test Run/FlightText/PlayInstructions.txt: -------------------------------------------------------------------------------- 1 | Fly around and shoot down enemy aircraft! Friendly aircraft have blue trails enemy aircraft red. Use the obstacles around for cover and to avoid pursuit. 2 | 3 | Your objective is given to you in the briefing screen before each mission, with your targets highlighted on the map and any important navigation points marked out for you. Go to your targets and accomplish your objectives. -------------------------------------------------------------------------------- /Test Run/Frames/AnnotatedScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/Frames/AnnotatedScreenShot.png -------------------------------------------------------------------------------- /Test Run/Frames/Blank.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Test Run/Frames/BluePlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/Frames/BluePlane.png -------------------------------------------------------------------------------- /Test Run/Frames/BoxStyle.css: -------------------------------------------------------------------------------- 1 | margin: 5px; padding: 5px; border: 1px solid white; -------------------------------------------------------------------------------- /Test Run/Frames/PlayInstructions.txt: -------------------------------------------------------------------------------- 1 | Fly around and shoot down enemy aircraft! Friendly aircraft have blue trails enemy aircraft red. Use the obstacles around for cover and to avoid pursuit. -------------------------------------------------------------------------------- /Test Run/Frames/RedTurret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/Frames/RedTurret.png -------------------------------------------------------------------------------- /Test Run/Frames/ScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/Frames/ScreenShot.png -------------------------------------------------------------------------------- /Test Run/Frames/Terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/Frames/Terrain.png -------------------------------------------------------------------------------- /Test Run/JavaProject7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/JavaProject7.jar -------------------------------------------------------------------------------- /Test Run/javaproject7/CompileEdit.bat: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightEditor.java 2 | java FlightEditor 3 | pause -------------------------------------------------------------------------------- /Test Run/javaproject7/CompileRun.bat: -------------------------------------------------------------------------------- 1 | 2 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightSim.java 3 | java FlightSim 4 | pause -------------------------------------------------------------------------------- /Test Run/javaproject7/Counter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Counter.class -------------------------------------------------------------------------------- /Test Run/javaproject7/DataArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/DataArray.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FileHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FileHandler.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FilePicker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FilePicker.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlatHash.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlatHash.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightCrafts/CraftList.txt: -------------------------------------------------------------------------------- 1 | F16Data.txt 2 | EuroData.txt 3 | MigData.txt -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightCrafts/EuroData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 13000 2 | Thrust/Newtons = 120000 3 | WingArea/msquare = 50 4 | Length/m = 15.96 5 | WingSpan/m = 10.95 6 | MaxCl = 1.6 7 | InducedDragE = 0.7695 8 | CoefficientOfParasiticDrag = 0.0238 -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightCrafts/F16Data.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 10000 2 | Thrust/Newtons = 76000 3 | WingArea/msquare = 28 4 | Length/m = 14.8 5 | WingSpan/m = 9.8 6 | MaxCl = 1.6 7 | InducedDragE = 0.9084 8 | CoefficientOfParasiticDrag = 0.0208 -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightCrafts/MigData.txt: -------------------------------------------------------------------------------- 1 | Mass/kg = 14000 2 | Thrust/Newtons = 197000 3 | WingArea/msquare = 38 4 | Length/m = 17.4 5 | WingSpan/m = 11.4 6 | MaxCl = 1.6 7 | InducedDragE = 0.728 8 | CoefficientOfParasiticDrag = 0.0258 -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightEditor$Objective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightEditor$Objective.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightEditor$Order.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightEditor$Order.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightEditor$TimeObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightEditor$TimeObjective.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightEditor$UnitObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightEditor$UnitObjective.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightEditor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightEditor.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/1Terrain.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/1Terrain.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/Level0.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level0.txt: -------------------------------------------------------------------------------- 1 | This is a training mission. Your objective is to destroy all 4 target structures positioned around the area at Nav Points Alpha, Beta, Gamma and Delta. The target structures will have a yellow emblem while the friendly structures of your base will have a blue emblem. Do not destroy any friendly structures. -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/Level1.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level1.txt: -------------------------------------------------------------------------------- 1 | There are two Enemy Outposts Nav Points Beta and Gamma. They are expected to be lightly defended. Bring your two wingmates and destroy them. -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/Level2.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level2.txt: -------------------------------------------------------------------------------- 1 | There are enemy aircraft coming to attack your bases at Nav Points Alpha and Beta. They are expected to come from the directions of Nav Points Gamma, Delta and Epsilon. Defend the bases against these attacks. -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/Level3.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Level3.txt: -------------------------------------------------------------------------------- 1 | There are Enemy installations at Nav Points Beta, Gamma, Delta and Epsilon. Proceed from your current Position at Nav Point Alpha and destroy them. 2 | The mountains are heavily fortified with gun and missile batteries. Do not expose yourself to their fire unnecessarily. -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/LevelList.txt: -------------------------------------------------------------------------------- 1 | Level0.dat Mission 0 Level0.txt 2 | Level1.dat Mission 1 Level1.txt 3 | Level2.dat Mission 2 Level2.txt 4 | Level3.dat Mission 3 Level3.txt 5 | TestLevel.dat Mission -1 TestLevel.txt -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/Test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/Test.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/TestLevel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/TestLevel.dat -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/TestLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightLevels/TestLevel.txt -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightLevels/nonsense.dat: -------------------------------------------------------------------------------- 1 | dd -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSim.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/BEEPDOUB.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/BEEPDOUB.WAV -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/BEEPPURE.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/BEEPPURE.WAV -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/BEEP_FM.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/BEEP_FM.WAV -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/BulletWhiz1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/BulletWhiz1.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/BulletWhiz2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/BulletWhiz2.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/FlameThrowerLoop - Afterburners.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/FlameThrowerLoop - Afterburners.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/FlatSoundData.txt: -------------------------------------------------------------------------------- 1 | BEEP_FM 2 | BEEPDOUB 3 | BEEPPURE 4 | KLICK 5 | WeaponHoming - Missile -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/JetPackLoop1 - EngineLoop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/JetPackLoop1 - EngineLoop1.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/JetPackLoop2 - EngineLoop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/JetPackLoop2 - EngineLoop2.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/JetPackLoop3 - EngineLoop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/JetPackLoop3 - EngineLoop3.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/JetPackStart - Engines.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/JetPackStart - Engines.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/KLICK.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/KLICK.WAV -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/Shot - Cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/Shot - Cannon.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/Shot - MachineGun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/Shot - MachineGun.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/Shot - Missile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/Shot - Missile.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/SoundData.txt: -------------------------------------------------------------------------------- 1 | VehicleHitExplosion 5 -50 2 | VehicleDieExplosion 30 -50 3 | Shot - MachineGun 0 -55 4 | Shot - Missile 15 -55 5 | Shot - Cannon 10 -55 6 | BulletWhiz1 10 -55 7 | BulletWhiz2 10 -55 -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/VehicleDieExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/VehicleDieExplosion.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/VehicleHitExplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/VehicleHitExplosion.wav -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightSound/WeaponHoming - Missile.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightSound/WeaponHoming - Missile.WAV -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightStars/Raw Data.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightStars/Raw Data.ods -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightStars/Stars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightStars/Stars.txt -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Craft$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Craft$1.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Craft$PathState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Craft$PathState.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Craft.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Craft.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Doodad.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Doodad.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$GeneralVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$GeneralVector.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Gun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Gun.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Object3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Object3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$ObjectVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$ObjectVector.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Objective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Objective.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Plane.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Plane.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Position3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Position3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Projectile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Projectile.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$ProjectileType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$ProjectileType.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Structure.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Structure.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$TempSprite.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$TempSprite.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$TimeObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$TimeObjective.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Trail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Trail.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Turret.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Turret.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$UnitObjective.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$UnitObjective.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$Vehicle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$Vehicle.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState$World.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState$World.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightState.class -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightText/PlayInstructions.txt: -------------------------------------------------------------------------------- 1 | Fly around and shoot down enemy aircraft! Friendly aircraft have blue trails enemy aircraft red. Use the obstacles around for cover and to avoid pursuit. -------------------------------------------------------------------------------- /Test Run/javaproject7/FlightWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/FlightWindow.class -------------------------------------------------------------------------------- /Test Run/javaproject7/GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/GUI.class -------------------------------------------------------------------------------- /Test Run/javaproject7/GameState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/GameState.class -------------------------------------------------------------------------------- /Test Run/javaproject7/JCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/JCanvas.class -------------------------------------------------------------------------------- /Test Run/javaproject7/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: FlightSim 3 | Ant-Version: Apache Ant 1.8.1 4 | Created-By: 1.6.0_21-b07 (Sun Microsystems Inc.) 5 | X-COMMENT: Main-Class will be added automatically by build 6 | 7 | -------------------------------------------------------------------------------- /Test Run/javaproject7/MapState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/MapState.class -------------------------------------------------------------------------------- /Test Run/javaproject7/MenuState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/MenuState.class -------------------------------------------------------------------------------- /Test Run/javaproject7/New Text Document.txt: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightSim.java 2 | java FlightSim 3 | pause -------------------------------------------------------------------------------- /Test Run/javaproject7/NumberQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/NumberQueue.class -------------------------------------------------------------------------------- /Test Run/javaproject7/ObserverM$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/ObserverM$1.class -------------------------------------------------------------------------------- /Test Run/javaproject7/ObserverM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/ObserverM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Point3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Point3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Point3DMShape.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Point3DMShape.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Printable3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Printable3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Rotation3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Rotation3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Run.bat: -------------------------------------------------------------------------------- 1 | java FlightSim 2 | pause -------------------------------------------------------------------------------- /Test Run/javaproject7/Shape3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Shape3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Sprite3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Sprite3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Store.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Store.class -------------------------------------------------------------------------------- /Test Run/javaproject7/TextScroller$TextLine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/TextScroller$TextLine.class -------------------------------------------------------------------------------- /Test Run/javaproject7/TextScroller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/TextScroller.class -------------------------------------------------------------------------------- /Test Run/javaproject7/TextState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/TextState.class -------------------------------------------------------------------------------- /Test Run/javaproject7/TimeKeeper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/TimeKeeper.class -------------------------------------------------------------------------------- /Test Run/javaproject7/Utils3DM.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/Utils3DM.class -------------------------------------------------------------------------------- /Test Run/javaproject7/WaveSound$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/WaveSound$1.class -------------------------------------------------------------------------------- /Test Run/javaproject7/WaveSound$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/WaveSound$2.class -------------------------------------------------------------------------------- /Test Run/javaproject7/WaveSound$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/WaveSound$3.class -------------------------------------------------------------------------------- /Test Run/javaproject7/WaveSound$Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/WaveSound$Player.class -------------------------------------------------------------------------------- /Test Run/javaproject7/WaveSound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyi/Java-Games/f5a47a07993ea6a6504c071792ec37b9e62a49f8/Test Run/javaproject7/WaveSound.class -------------------------------------------------------------------------------- /Test Run/javaproject7/compile.bat: -------------------------------------------------------------------------------- 1 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" Counter.java 2 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" 3DM.java 3 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlatHash.java 4 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightEditor.java 5 | "C:\Utilities\Java\jdk1.6.0_21\bin\javac" FlightSim.java 6 | 7 | pause -------------------------------------------------------------------------------- /Test Run/readme.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | --------------------------------------------------------------------------------