├── README.md ├── dist ├── README.TXT ├── SuperMiroGame.jar ├── images │ ├── A.png │ ├── B.png │ ├── C.png │ ├── D.png │ ├── E.png │ ├── F.png │ ├── G.png │ ├── H.png │ ├── I.png │ ├── Thumbs.db │ ├── background.JPG │ ├── coin1.PNG │ ├── coin2.PNG │ ├── coin3.PNG │ ├── coin4.PNG │ ├── coin5.PNG │ ├── fly1.png │ ├── fly2.png │ ├── fly3.png │ ├── grub1.png │ ├── grub2.png │ ├── heart.gif │ ├── heart.png │ ├── player.PNG │ ├── star1.PNG │ ├── star2.PNG │ ├── star3.PNG │ ├── star4.PNG │ └── star5.PNG └── maps │ ├── map1.txt │ ├── map2.txt │ ├── map3.txt │ └── map4.txt ├── images ├── A.png ├── B.png ├── C.png ├── D.png ├── E.png ├── F.png ├── G.png ├── H.png ├── I.png ├── Thumbs.db ├── background.JPG ├── coin1.PNG ├── coin2.PNG ├── coin3.PNG ├── coin4.PNG ├── coin5.PNG ├── fly1.png ├── fly2.png ├── fly3.png ├── grub1.png ├── grub2.png ├── heart.gif ├── heart.png ├── player.PNG ├── star1.PNG ├── star2.PNG ├── star3.PNG ├── star4.PNG └── star5.PNG ├── manifest.mf ├── maps ├── map1.txt ├── map2.txt ├── map3.txt └── map4.txt ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── private │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml └── src └── com └── TETOSOFT ├── graphics ├── Animation.java ├── ScreenManager.java └── Sprite.java ├── input ├── GameAction.java └── InputManager.java ├── test └── GameCore.java └── tilegame ├── GameEngine.java ├── MapLoader.java ├── TileMap.java ├── TileMapDrawer.java └── sprites ├── Creature.java ├── Fly.java ├── Grub.java ├── Player.java └── PowerUp.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/README.md -------------------------------------------------------------------------------- /dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/README.TXT -------------------------------------------------------------------------------- /dist/SuperMiroGame.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/SuperMiroGame.jar -------------------------------------------------------------------------------- /dist/images/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/A.png -------------------------------------------------------------------------------- /dist/images/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/B.png -------------------------------------------------------------------------------- /dist/images/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/C.png -------------------------------------------------------------------------------- /dist/images/D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/D.png -------------------------------------------------------------------------------- /dist/images/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/E.png -------------------------------------------------------------------------------- /dist/images/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/F.png -------------------------------------------------------------------------------- /dist/images/G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/G.png -------------------------------------------------------------------------------- /dist/images/H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/H.png -------------------------------------------------------------------------------- /dist/images/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/I.png -------------------------------------------------------------------------------- /dist/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/Thumbs.db -------------------------------------------------------------------------------- /dist/images/background.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/background.JPG -------------------------------------------------------------------------------- /dist/images/coin1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/coin1.PNG -------------------------------------------------------------------------------- /dist/images/coin2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/coin2.PNG -------------------------------------------------------------------------------- /dist/images/coin3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/coin3.PNG -------------------------------------------------------------------------------- /dist/images/coin4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/coin4.PNG -------------------------------------------------------------------------------- /dist/images/coin5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/coin5.PNG -------------------------------------------------------------------------------- /dist/images/fly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/fly1.png -------------------------------------------------------------------------------- /dist/images/fly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/fly2.png -------------------------------------------------------------------------------- /dist/images/fly3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/fly3.png -------------------------------------------------------------------------------- /dist/images/grub1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/grub1.png -------------------------------------------------------------------------------- /dist/images/grub2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/grub2.png -------------------------------------------------------------------------------- /dist/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/heart.gif -------------------------------------------------------------------------------- /dist/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/heart.png -------------------------------------------------------------------------------- /dist/images/player.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/player.PNG -------------------------------------------------------------------------------- /dist/images/star1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/star1.PNG -------------------------------------------------------------------------------- /dist/images/star2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/star2.PNG -------------------------------------------------------------------------------- /dist/images/star3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/star3.PNG -------------------------------------------------------------------------------- /dist/images/star4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/star4.PNG -------------------------------------------------------------------------------- /dist/images/star5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/images/star5.PNG -------------------------------------------------------------------------------- /dist/maps/map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/maps/map1.txt -------------------------------------------------------------------------------- /dist/maps/map2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/maps/map2.txt -------------------------------------------------------------------------------- /dist/maps/map3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/maps/map3.txt -------------------------------------------------------------------------------- /dist/maps/map4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/dist/maps/map4.txt -------------------------------------------------------------------------------- /images/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/A.png -------------------------------------------------------------------------------- /images/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/B.png -------------------------------------------------------------------------------- /images/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/C.png -------------------------------------------------------------------------------- /images/D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/D.png -------------------------------------------------------------------------------- /images/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/E.png -------------------------------------------------------------------------------- /images/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/F.png -------------------------------------------------------------------------------- /images/G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/G.png -------------------------------------------------------------------------------- /images/H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/H.png -------------------------------------------------------------------------------- /images/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/I.png -------------------------------------------------------------------------------- /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/Thumbs.db -------------------------------------------------------------------------------- /images/background.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/background.JPG -------------------------------------------------------------------------------- /images/coin1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/coin1.PNG -------------------------------------------------------------------------------- /images/coin2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/coin2.PNG -------------------------------------------------------------------------------- /images/coin3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/coin3.PNG -------------------------------------------------------------------------------- /images/coin4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/coin4.PNG -------------------------------------------------------------------------------- /images/coin5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/coin5.PNG -------------------------------------------------------------------------------- /images/fly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/fly1.png -------------------------------------------------------------------------------- /images/fly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/fly2.png -------------------------------------------------------------------------------- /images/fly3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/fly3.png -------------------------------------------------------------------------------- /images/grub1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/grub1.png -------------------------------------------------------------------------------- /images/grub2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/grub2.png -------------------------------------------------------------------------------- /images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/heart.gif -------------------------------------------------------------------------------- /images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/heart.png -------------------------------------------------------------------------------- /images/player.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/player.PNG -------------------------------------------------------------------------------- /images/star1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/star1.PNG -------------------------------------------------------------------------------- /images/star2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/star2.PNG -------------------------------------------------------------------------------- /images/star3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/star3.PNG -------------------------------------------------------------------------------- /images/star4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/star4.PNG -------------------------------------------------------------------------------- /images/star5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/images/star5.PNG -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/manifest.mf -------------------------------------------------------------------------------- /maps/map1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/maps/map1.txt -------------------------------------------------------------------------------- /maps/map2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/maps/map2.txt -------------------------------------------------------------------------------- /maps/map3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/maps/map3.txt -------------------------------------------------------------------------------- /maps/map4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/maps/map4.txt -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/com/TETOSOFT/graphics/Animation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/graphics/Animation.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/graphics/ScreenManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/graphics/ScreenManager.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/graphics/Sprite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/graphics/Sprite.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/input/GameAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/input/GameAction.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/input/InputManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/input/InputManager.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/test/GameCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/test/GameCore.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/GameEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/GameEngine.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/MapLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/MapLoader.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/TileMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/TileMap.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/TileMapDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/TileMapDrawer.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/sprites/Creature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/sprites/Creature.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/sprites/Fly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/sprites/Fly.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/sprites/Grub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/sprites/Grub.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/sprites/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/sprites/Player.java -------------------------------------------------------------------------------- /src/com/TETOSOFT/tilegame/sprites/PowerUp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtala3t/Super-Mario-Java-2D-Game/HEAD/src/com/TETOSOFT/tilegame/sprites/PowerUp.java --------------------------------------------------------------------------------