first commit
8
.idea/.gitignore
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
6
.idea/misc.xml
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_19" default="true" project-jdk-name="openjdk-19" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
8
.idea/modules.xml
generated
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/SuppaMario.iml" filepath="$PROJECT_DIR$/SuppaMario.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
26
LICENSE
Normal file
|
@ -0,0 +1,26 @@
|
|||
# DON'T BE A DICK PUBLIC LICENSE
|
||||
|
||||
> Version 1.1, December 2016
|
||||
|
||||
> Copyright (C) 2024 Rossi Stefano
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim or modified
|
||||
copies of this license document.
|
||||
|
||||
> DON'T BE A DICK PUBLIC LICENSE
|
||||
> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
1. Do whatever you like with the original work, just don't be a dick.
|
||||
|
||||
Being a dick includes - but is not limited to - the following instances:
|
||||
|
||||
1a. Outright copyright infringement - Don't just copy this and change the name.
|
||||
1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick.
|
||||
1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick.
|
||||
|
||||
2. If you become rich through modifications, related works/services, or supporting the original work,
|
||||
share the love. Only a dick would make loads off this work and not buy the original work's
|
||||
creator(s) a pint.
|
||||
|
||||
3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes
|
||||
you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back.
|
62
README.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
# SuppaMario
|
||||
|
||||
This is a concept for a clone of super Mario.
|
||||
With the possibility to create your own maps.
|
||||
|
||||

|
||||
|
||||
## Description
|
||||
|
||||

|
||||
|
||||
You can create you own map modifying the map file:
|
||||
|
||||
`\suppaMariov6\build\classes\mappe\map1.txt`
|
||||
|
||||

|
||||
|
||||
- Idle cycle background. Speeding according to mario movement speed
|
||||
- Mario can move left and right, jump and crouch
|
||||
- Collide with solid blocks
|
||||
- Dies when hit by lateral collision with koopa, by deadly blocks (water) or
|
||||
falling out of the map
|
||||
- Has dead, jump and crouch animation
|
||||
- Background and death animation music
|
||||
- The map is loaded from an external file, you can build with:
|
||||
- 2 solid block (bricks)
|
||||
- 1 pass-through block (clouds)
|
||||
- 1 deadly block (water)
|
||||
- Implemented 2 walking koopa enemies, they die and disappear on upper
|
||||
collision with mario
|
||||
|
||||
## Requirements
|
||||
|
||||
- Java (6 to) 8 (max, recommended)
|
||||
- NetBeans (highly recommended)
|
||||
|
||||
Java Applets have been dropped with Java 9. So you need an older versione to run this project.
|
||||
Java 8 is the preferred version. Until Java 6 should be ok.
|
||||
|
||||
Problems running the project are expected, applets are deprecated and not supported by modern browsers.**
|
||||
|
||||
This is a NetBeans Project. Using NetBeans isn't mandatory but recommended for the built-in applet runner.
|
||||
You can run the GrigliaApplet.java class with netbeans.
|
||||
|
||||
[NetBeans Instructions](https://netbeans.apache.org/tutorial/main/kb/docs/java/javase-jdk8/)
|
||||
|
||||
Alternatively, you can use IntellijJ IDEA with the [Applet runner plugin](https://plugins.jetbrains.com/plugin/16682-applet-runner) (not tested).
|
||||
|
||||
## Installation and run
|
||||
|
||||
Clone the repo:
|
||||
|
||||
```bash
|
||||
https://gitlab.com/stefanorossiti/SuppaMario.git
|
||||
```
|
||||
|
||||
Run `SuppaMarioApplet.java` with your preferred IDE (NetBeans is recommended)
|
||||
using java 8.
|
||||
|
||||
## License
|
||||
|
||||
All my work is released under [DBAD](https://www.dbad-license.org/) license.
|
11
SuppaMario.iml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
3
applet.policy
Normal file
|
@ -0,0 +1,3 @@
|
|||
grant {
|
||||
permission java.security.AllPermission;
|
||||
};
|
73
build.xml
Normal file
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- You may freely edit this file. See commented blocks below for -->
|
||||
<!-- some examples of how to customize the build. -->
|
||||
<!-- (If you delete it and reopen the project it will be recreated.) -->
|
||||
<!-- By default, only the Clean and Build commands use this build script. -->
|
||||
<!-- Commands such as Run, Debug, and Test only use this build script if -->
|
||||
<!-- the Compile on Save feature is turned off for the project. -->
|
||||
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
|
||||
<!-- in the project's Project Properties dialog box.-->
|
||||
<project name="suppaMario" default="default" basedir=".">
|
||||
<description>Builds, tests, and runs the project suppaMario.</description>
|
||||
<import file="nbproject/build-impl.xml"/>
|
||||
<!--
|
||||
|
||||
There exist several targets which are by default empty and which can be
|
||||
used for execution of your tasks. These targets are usually executed
|
||||
before and after some main targets. They are:
|
||||
|
||||
-pre-init: called before initialization of project properties
|
||||
-post-init: called after initialization of project properties
|
||||
-pre-compile: called before javac compilation
|
||||
-post-compile: called after javac compilation
|
||||
-pre-compile-single: called before javac compilation of single file
|
||||
-post-compile-single: called after javac compilation of single file
|
||||
-pre-compile-test: called before javac compilation of JUnit tests
|
||||
-post-compile-test: called after javac compilation of JUnit tests
|
||||
-pre-compile-test-single: called before javac compilation of single JUnit test
|
||||
-post-compile-test-single: called after javac compilation of single JUunit test
|
||||
-pre-jar: called before JAR building
|
||||
-post-jar: called after JAR building
|
||||
-post-clean: called after cleaning build products
|
||||
|
||||
(Targets beginning with '-' are not intended to be called on their own.)
|
||||
|
||||
Example of inserting an obfuscator after compilation could look like this:
|
||||
|
||||
<target name="-post-compile">
|
||||
<obfuscate>
|
||||
<fileset dir="${build.classes.dir}"/>
|
||||
</obfuscate>
|
||||
</target>
|
||||
|
||||
For list of available properties check the imported
|
||||
nbproject/build-impl.xml file.
|
||||
|
||||
|
||||
Another way to customize the build is by overriding existing main targets.
|
||||
The targets of interest are:
|
||||
|
||||
-init-macrodef-javac: defines macro for javac compilation
|
||||
-init-macrodef-junit: defines macro for junit execution
|
||||
-init-macrodef-debug: defines macro for class debugging
|
||||
-init-macrodef-java: defines macro for class execution
|
||||
-do-jar: JAR building
|
||||
run: execution of project
|
||||
-javadoc-build: Javadoc generation
|
||||
test-report: JUnit report generation
|
||||
|
||||
An example of overriding the target for project execution could look like this:
|
||||
|
||||
<target name="run" depends="suppaMario-impl.jar">
|
||||
<exec dir="bin" executable="launcher.exe">
|
||||
<arg file="${dist.jar}"/>
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
Notice that the overridden target depends on the jar target and not only on
|
||||
the compile target as the regular run target does. Again, for a list of available
|
||||
properties which you can use, check the target you are overriding in the
|
||||
nbproject/build-impl.xml file.
|
||||
|
||||
-->
|
||||
</project>
|
28
build/SuppaMarioApplet.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Applet HTML Page</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
|
||||
<!--
|
||||
*** GENERATED applet HTML launcher - DO NOT EDIT IN 'BUILD' FOLDER ***
|
||||
|
||||
If you need to modify this HTML launcher file (e.g., to add applet parameters),
|
||||
copy it to where your applet class is found in the SRC folder. If you do this,
|
||||
the IDE will use it when you run or debug the applet.
|
||||
|
||||
Tip: To exclude an HTML launcher from the JAR file, use exclusion filters in
|
||||
the Packaging page in the Project Properties dialog.
|
||||
|
||||
For more information see the online help.
|
||||
-->
|
||||
|
||||
<H3><HR WIDTH="100%">Applet HTML Page<HR WIDTH="100%"></H3>
|
||||
|
||||
<P>
|
||||
<APPLET codebase="classes" code="suppamario/SuppaMarioApplet.class" width=350 height=200></APPLET>
|
||||
</P>
|
||||
|
||||
<HR WIDTH="100%"><FONT SIZE=-1><I>Generated by NetBeans IDE</I></FONT>
|
||||
</BODY>
|
||||
</HTML>
|
0
build/classes/.netbeans_automatic_build
Normal file
0
build/classes/.netbeans_update_resources
Normal file
BIN
build/classes/img/background/background.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
build/classes/img/enemies/koopaTroopa/greenHidden.gif
Normal file
After Width: | Height: | Size: 176 B |
BIN
build/classes/img/enemies/koopaTroopa/greenSemiHidd.gif
Normal file
After Width: | Height: | Size: 199 B |
BIN
build/classes/img/enemies/koopaTroopa/greenWalking.gif
Normal file
After Width: | Height: | Size: 561 B |
BIN
build/classes/img/enemies/koopaTroopa/shell.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 12 KiB |
BIN
build/classes/img/mario/die1.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
build/classes/img/mario/die2.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
build/classes/img/mario/die3.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
build/classes/img/mario/die4.gif
Normal file
After Width: | Height: | Size: 963 B |
BIN
build/classes/img/mario/die5.gif
Normal file
After Width: | Height: | Size: 1,004 B |
BIN
build/classes/img/mario/die6.gif
Normal file
After Width: | Height: | Size: 982 B |
BIN
build/classes/img/mario/die7.gif
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
build/classes/img/mario/marioDucked.gif
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
build/classes/img/mario/marioDuckedb.gif
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
build/classes/img/mario/marioJump.gif
Normal file
After Width: | Height: | Size: 213 B |
BIN
build/classes/img/mario/marioJumpb.gif
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
build/classes/img/mario/marioRun1.gif
Normal file
After Width: | Height: | Size: 198 B |
BIN
build/classes/img/mario/marioRun1b.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
build/classes/img/mario/marioRun2.gif
Normal file
After Width: | Height: | Size: 177 B |
BIN
build/classes/img/mario/marioRun2b.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
build/classes/img/mario/marioRun3.gif
Normal file
After Width: | Height: | Size: 175 B |
BIN
build/classes/img/mario/marioRun3b.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
build/classes/img/mario/marioStop.gif
Normal file
After Width: | Height: | Size: 185 B |
BIN
build/classes/img/mario/marioStopb.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
build/classes/img/scenery/block.gif
Normal file
After Width: | Height: | Size: 158 B |
39
build/classes/img/scenery/bridge.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
<!-- saved from url=(0066)http://www.videogamesprites.net/SuperMarioBros1/Scenery/index.html -->
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Super Mario Bros. Scenery Sprites</title>
|
||||
<meta name="description" content="Super Mario Bros. 1 scenery sprites">
|
||||
</head>
|
||||
<body bgcolor="#000000" text="#F7D6B5" link="#EC8347" vlink="#E75A10">
|
||||
<font size="2" face="Courier New"><b>
|
||||
<center><h2>Super Mario Bros. Scenery Sprites</h2></center>
|
||||
<hr width="100%" size="1" noshade="" color="#E75A10">
|
||||
<br>
|
||||
<a href="http://www.videogamesprites.net/">VideoGameSprites.net</a> > <a href="http://www.videogamesprites.net/SuperMarioBros1/">Super Mario Bros.</a>
|
||||
<br>
|
||||
<br><font color="#F7D6B5">
|
||||
<hr width="100%" size="1" noshade="" color="#E75A10">
|
||||
<form name="changeColor">
|
||||
<p><font size="3" face="Courier New"><b>Background Color</b><br><br>
|
||||
<input type="button" name="colr" value="BLACK" onclick="document.bgColor='#000000'">
|
||||
<input type="button" name="colr" value="WHITE" onclick="document.bgColor='#FFFFFF'">
|
||||
</font> </p></form>
|
||||
<hr width="100%" size="1" noshade="" color="#E75A10">
|
||||
<br>
|
||||
<img src="./bridge_files/Hill - Small.gif"> <img src="./bridge_files/Hill - Large.gif"> hills<br><br>
|
||||
<img src="./bridge_files/Tree - Small.gif"> <img src="./bridge_files/Tree - Large.gif"> trees<br><br>
|
||||
<img src="./bridge_files/Bush - Single.gif"> <img src="./bridge_files/Bush - Double.gif"> <img src="./bridge_files/Bush - Triple.gif"> bushes<br><br>
|
||||
<img src="./bridge_files/Cloud - Single.gif"> <img src="./bridge_files/Cloud - Double.gif"> <img src="./bridge_files/Cloud - Triple.gif"> clouds<br><br>
|
||||
<img src="./bridge_files/Waves.gif"> waves<br>
|
||||
<img src="./bridge_files/Firework1.gif"> <img src="./bridge_files/Firework2.gif"> <img src="./bridge_files/Firework3.gif"> fireworks<br><br>
|
||||
<hr width="100%" size="1" noshade="" color="#E75A10">
|
||||
<br>
|
||||
<img src="./bridge_files/Block.gif"> block<br><br>
|
||||
<img src="./bridge_files/Ground.gif"> ground<br><br>
|
||||
<img src="./bridge_files/Bridge.gif"> bridge<br><br>
|
||||
<img src="./bridge_files/Coin Heaven Cloud.gif"> Coin Heaven cloud<br><br>
|
||||
<img src="./bridge_files/Coral.gif"> coral<br><br>
|
||||
<img src="./bridge_files/Giant Mushroom.gif"> giant mushroom<br>
|
||||
<hr width="100%" size="1" noshade="" color="#E75A10">
|
||||
|
||||
</font></b></font></body></html>
|
BIN
build/classes/img/scenery/bridge_files/Block.gif
Normal file
After Width: | Height: | Size: 158 B |
BIN
build/classes/img/scenery/bridge_files/Bridge.gif
Normal file
After Width: | Height: | Size: 231 B |
BIN
build/classes/img/scenery/bridge_files/Bush - Double.gif
Normal file
After Width: | Height: | Size: 298 B |
BIN
build/classes/img/scenery/bridge_files/Bush - Single.gif
Normal file
After Width: | Height: | Size: 224 B |
BIN
build/classes/img/scenery/bridge_files/Bush - Triple.gif
Normal file
After Width: | Height: | Size: 371 B |
BIN
build/classes/img/scenery/bridge_files/Cloud - Double.gif
Normal file
After Width: | Height: | Size: 476 B |
BIN
build/classes/img/scenery/bridge_files/Cloud - Single.gif
Normal file
After Width: | Height: | Size: 348 B |
BIN
build/classes/img/scenery/bridge_files/Cloud - Triple.gif
Normal file
After Width: | Height: | Size: 597 B |
BIN
build/classes/img/scenery/bridge_files/Coin Heaven Cloud.gif
Normal file
After Width: | Height: | Size: 175 B |
BIN
build/classes/img/scenery/bridge_files/Coral.gif
Normal file
After Width: | Height: | Size: 220 B |
BIN
build/classes/img/scenery/bridge_files/Firework1.gif
Normal file
After Width: | Height: | Size: 97 B |
BIN
build/classes/img/scenery/bridge_files/Firework2.gif
Normal file
After Width: | Height: | Size: 170 B |
BIN
build/classes/img/scenery/bridge_files/Firework3.gif
Normal file
After Width: | Height: | Size: 224 B |
BIN
build/classes/img/scenery/bridge_files/Giant Mushroom.gif
Normal file
After Width: | Height: | Size: 835 B |
BIN
build/classes/img/scenery/bridge_files/Ground.gif
Normal file
After Width: | Height: | Size: 200 B |
BIN
build/classes/img/scenery/bridge_files/Hill - Large.gif
Normal file
After Width: | Height: | Size: 525 B |
BIN
build/classes/img/scenery/bridge_files/Hill - Small.gif
Normal file
After Width: | Height: | Size: 274 B |
BIN
build/classes/img/scenery/bridge_files/Tree - Large.gif
Normal file
After Width: | Height: | Size: 359 B |
BIN
build/classes/img/scenery/bridge_files/Tree - Small.gif
Normal file
After Width: | Height: | Size: 265 B |
BIN
build/classes/img/scenery/bridge_files/Waves.gif
Normal file
After Width: | Height: | Size: 128 B |
BIN
build/classes/img/scenery/bushb.gif
Normal file
After Width: | Height: | Size: 371 B |
BIN
build/classes/img/scenery/bushs.gif
Normal file
After Width: | Height: | Size: 298 B |
BIN
build/classes/img/scenery/bushss.gif
Normal file
After Width: | Height: | Size: 224 B |
BIN
build/classes/img/scenery/coinheavencloud.gif
Normal file
After Width: | Height: | Size: 175 B |
BIN
build/classes/img/scenery/coral.gif
Normal file
After Width: | Height: | Size: 220 B |
BIN
build/classes/img/scenery/fwks1.gif
Normal file
After Width: | Height: | Size: 97 B |
BIN
build/classes/img/scenery/fwks2.gif
Normal file
After Width: | Height: | Size: 170 B |
BIN
build/classes/img/scenery/fwks3.gif
Normal file
After Width: | Height: | Size: 224 B |
BIN
build/classes/img/scenery/giantmushroom.gif
Normal file
After Width: | Height: | Size: 835 B |
BIN
build/classes/img/scenery/ground.gif
Normal file
After Width: | Height: | Size: 200 B |
BIN
build/classes/img/scenery/hillb.gif
Normal file
After Width: | Height: | Size: 525 B |
BIN
build/classes/img/scenery/hills.gif
Normal file
After Width: | Height: | Size: 274 B |
BIN
build/classes/img/scenery/treeg.gif
Normal file
After Width: | Height: | Size: 359 B |
BIN
build/classes/img/scenery/trees.gif
Normal file
After Width: | Height: | Size: 359 B |
BIN
build/classes/img/scenery/wawes.gif
Normal file
After Width: | Height: | Size: 128 B |
28
build/classes/mappe/map1.txt
Normal file
|
@ -0,0 +1,28 @@
|
|||
! Author: BBC Games
|
||||
!
|
||||
!
|
||||
! SuppaMario lvl1
|
||||
! tile map 200x15
|
||||
! Legenda:
|
||||
! = nothing
|
||||
! b = ground block
|
||||
! w = wawes
|
||||
! c = coin heaven cloud
|
||||
! g = ground
|
||||
!-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg
|
||||
gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg
|
||||
ggggg gggg
|
||||
ggg gggggggggggc ggggggggggggggggggggggggggggggggggggggggggggg gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg
|
||||
ggg ggggggg c gggg c c
|
||||
ggg bbbbbb c c ccccgg
|
||||
gggggggggg bbbbbb gggggggggggggg ggggggggggggggggggggggggggggggg gggggggggggggggggggggggggggggggggggg
|
||||
ggg ggggg c c ggg cc c
|
||||
ggg bbbbb ggg ggggggg ggggggggggggggggggggggggggggggggggggggg gg gggg ggggggggggggggggggg
|
||||
ggg bbb ggggg
|
||||
gggc bbbbbbbbbbbbbbbbbbbb b ggggggggggggggggggggg bbbbbb bbbbbbbbbb c c cc c c c c c
|
||||
ggg ggg gggggggggggggggggggggg ggg bbbbbbb bbbbbbbbbbbbbb
|
||||
ggg g ggggggggggggggggggggggggggggggggggggggggwwwggggggggbbbbbbbbbbbbbbbbbbgggggggggggggggggggggggggggggggggggggggggggggggggggggggwwwwwwwwwwwwww
|
||||
gggggggggg gggggwwwwwgg ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggwwwwwwwggggggggggww
|
||||
gggggggggg gggggggggggg gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww
|
||||
!-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
BIN
build/classes/midi/1up.mid
Normal file
BIN
build/classes/midi/battle.mid
Normal file
BIN
build/classes/midi/beatbrowser.mid
Normal file
BIN
build/classes/midi/castle.mid
Normal file
BIN
build/classes/midi/die.wav
Normal file
BIN
build/classes/midi/jump.wav
Normal file
BIN
build/classes/midi/lvl1.mid
Normal file
BIN
build/classes/midi/star.mid
Normal file
BIN
build/classes/midi/underground.mid
Normal file
BIN
build/classes/suppamario/Animation$AnimFrame.class
Normal file
BIN
build/classes/suppamario/Animation.class
Normal file
BIN
build/classes/suppamario/Background.class
Normal file
BIN
build/classes/suppamario/Enemy.class
Normal file
BIN
build/classes/suppamario/KoopaTroopa.class
Normal file
BIN
build/classes/suppamario/Mario.class
Normal file
BIN
build/classes/suppamario/SuppaMarioApplet.class
Normal file
BIN
build/classes/suppamario/Tile.class
Normal file
BIN
images/ezgif-2-db46d0ad92.gif
Normal file
After Width: | Height: | Size: 651 KiB |
BIN
images/suppamario.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
images/suppamario2.png
Normal file
After Width: | Height: | Size: 130 KiB |
3
manifest.mf
Normal file
|
@ -0,0 +1,3 @@
|
|||
Manifest-Version: 1.0
|
||||
X-COMMENT: Main-Class will be added automatically by build
|
||||
|
1799
nbproject/build-impl.xml
Normal file
8
nbproject/genfiles.properties
Normal file
|
@ -0,0 +1,8 @@
|
|||
build.xml.data.CRC32=c7b0c067
|
||||
build.xml.script.CRC32=245a017c
|
||||
build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48
|
||||
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
|
||||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
|
||||
nbproject/build-impl.xml.data.CRC32=c7b0c067
|
||||
nbproject/build-impl.xml.script.CRC32=81cc81d6
|
||||
nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48
|
0
nbproject/private/config.properties
Normal file
8
nbproject/private/private.properties
Normal file
|
@ -0,0 +1,8 @@
|
|||
compile.on.save=true
|
||||
do.depend=false
|
||||
do.jar=true
|
||||
do.jlink=false
|
||||
javac.debug=true
|
||||
javadoc.preview=true
|
||||
jlink.strip=false
|
||||
user.properties.file=C:\\Users\\Administrator\\AppData\\Roaming\\NetBeans\\22\\build.properties
|