Skip to content

Commit

Permalink
Project
Browse files Browse the repository at this point in the history
  • Loading branch information
Oneiros90 committed Jul 21, 2018
1 parent 789e843 commit 7f76c4b
Show file tree
Hide file tree
Showing 20 changed files with 548 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

nbproject/

dist/

DoodleJava\.exe

DoodleJava\.zip

build/
100 changes: 100 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<?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="DoodleJava" default="default" basedir=".">
<description>Builds, tests, and runs the project DoodleJava.</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-with-manifest: JAR building (if you are using a manifest)
-do-jar-without-manifest: JAR building (if you are not using a manifest)
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="DoodleJava-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.
-->
<target name="-unjar-and-copy-lib-jars">
<unjar dest="${build.classes.dir}">
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
<patternset>
<exclude name="META-INF/**"/>
<exclude name="/*"/>
</patternset>
</unjar>
</target>

<target depends="init,compile,-pre-pre-jar,-pre-jar,-unjar-and-copy-lib-jars" name="fat-jar">
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
<jar destfile="${dist.jar}">
<fileset dir="${build.classes.dir}"/>
<manifest>
<attribute name="Main-Class" value="${main.class}"/>
</manifest>
</jar>
<echo>To run this application from the command line without Ant, try:</echo>
<property location="${dist.jar}" name="dist.jar.resolved"/>
<echo>java -jar "${dist.jar.resolved}"</echo>
</target>

<target depends="clean,fat-jar" name="clean-and-fat-jar"/>
</project>
Binary file added doodle.ico
Binary file not shown.
34 changes: 34 additions & 0 deletions launch4jbuild.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\Oneiros\Desktop\Dropbox\Programmazione\Java\Giochi\DoodleJava\dist\DoodleJava.jar</jar>
<outfile>C:\Users\Oneiros\Desktop\Dropbox\Programmazione\Java\Giochi\DoodleJava\DoodleJava.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir></chdir>
<priority>normal</priority>
<downloadUrl>http://java.com/download</downloadUrl>
<supportUrl></supportUrl>
<customProcName>false</customProcName>
<stayAlive>false</stayAlive>
<manifest></manifest>
<icon>C:\Users\Oneiros\Desktop\Dropbox\Programmazione\Java\Giochi\DoodleJava\doodle.ico</icon>
<jre>
<path></path>
<minVersion>1.6.0</minVersion>
<maxVersion></maxVersion>
<jdkPreference>preferJre</jdkPreference>
</jre>
<versionInfo>
<fileVersion>1.1.0.0</fileVersion>
<txtFileVersion>1.1</txtFileVersion>
<fileDescription>Doodle Jump in Java by Lorenzo Valente</fileDescription>
<copyright>Lima Sky</copyright>
<productVersion>1.1.0.0</productVersion>
<txtProductVersion>1.1</txtProductVersion>
<productName>Doodle Java</productName>
<companyName>Oneiros</companyName>
<internalName>doodlejava</internalName>
<originalFilename>DoodleJava.exe</originalFilename>
</versionInfo>
</launch4jConfig>
Binary file added lib/Oneiros.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions manifest.mf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build

63 changes: 63 additions & 0 deletions src/doodlejava/Doodle.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package doodlejava;

import java.awt.Image;
import java.awt.Rectangle;
import oneiros.games.OSprite;
import oneiros.physic.OVector2D;
import oneiros.sound.SoundManager;
import util.Resource;

public class Doodle extends OSprite {

public static final OVector2D JUMP_VECTOR = new OVector2D(12, 90);
public static final OVector2D MOVING_VECTOR = new OVector2D(0.3, 0);
public static final Image DOODLE_RIGHT = Resource.getImage("doodleR.png");
public static final Image DOODLE_LEFT = Resource.getImage("doodleL.png");

public Doodle() {
super(DOODLE_RIGHT);
}

public void jump() {
this.setVelocityY(0);
this.addVelocity(JUMP_VECTOR);
SoundManager.play("jump");
}

public void stopAnyMotion() {
this.setVelocity(null);
this.setAcceleration(null);
}

public void startMovingLeft() {
this.subAcceleration(MOVING_VECTOR);
}

public void stopMovingLeft() {
this.addAcceleration(MOVING_VECTOR);
}

public void startMovingRight() {
this.addAcceleration(MOVING_VECTOR);
}

public void stopMovingRight() {
this.subAcceleration(MOVING_VECTOR);
}

public void turnRight() {
this.setBackground(DOODLE_RIGHT);
}

public void turnLeft() {
this.setBackground(DOODLE_LEFT);
}

public Rectangle getFeet() {
if (this.getBackgroundImage() == DOODLE_RIGHT) {
return new Rectangle(getX(), getY() + getHeight() - 15, 55, 15);
} else {
return new Rectangle(getX() + getWidth() - 55, getY() + getHeight() - 15, 55, 15);
}
}
}
99 changes: 99 additions & 0 deletions src/doodlejava/Frame.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
package doodlejava;

import java.awt.Dimension;
import java.awt.Insets;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.UIManager;
import util.Resource;

public class Frame extends JFrame {

private static final Dimension SIZE;

static {
int screenHeight = (int) (Toolkit.getDefaultToolkit().getScreenSize().getHeight()) - 100;
if (screenHeight > 800) {
screenHeight = 800;
}
SIZE = new Dimension(500, screenHeight);
}
private GamePanel gamePanel;

public Frame() {
super();
this.setIconImage(Resource.getImage("doodle.png"));
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setResizable(false);
this.pack();
this.setSizeWithoutInsets(SIZE);
this.setLocationRelativeTo(null);

try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ex) {
System.err.println("Impossibile impostare il look and feel: " + ex);
}

this.setTitle(0);
this.gamePanel = new GamePanel(SIZE);
this.gamePanel.setNewGameListener(new NewGameListener() {

@Override
public void updateScore(int score) {
setTitle(score);
}

@Override
public void gameOver() {
setTitle(0);
}
});
this.add(this.gamePanel);
this.gamePanel.requestFocus();
}

public void start() {
JOptionPane.showOptionDialog(null, "Ready...?",
"Start", JOptionPane.OK_OPTION, JOptionPane.WARNING_MESSAGE, null, new String[]{"GO!"}, 0);
this.gamePanel.start();
}

public static void main(String[] args) {
Frame f = new Frame();
f.setVisible(true);
f.start();
}

private void setTitle(int points) {
this.setTitle("Doodle Java by Oneiros (Lorenzo Valente) - " + points + " points");
}

/**Imposta la grandezza del frame senza considerare i bordi*/
private void setSizeWithoutInsets(Dimension d) {
Insets i = this.getInsets();
this.setSize(d.width + i.left + i.right, d.height + i.top + i.bottom);
}
}

/**Listener che gestisce il passaggio da un pannello all'altro*/
class SwapPanelListener implements ActionListener {

private JPanel pFrom;
private JPanel pTo;

public SwapPanelListener(JPanel from, JPanel to) {
this.pFrom = from;
this.pTo = to;
}

@Override
public void actionPerformed(ActionEvent e) {
this.pTo.setVisible(true);
this.pFrom.setVisible(false);
}
}
Loading

0 comments on commit 7f76c4b

Please sign in to comment.