123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- = jMonkeyEngine 3 Tutorial (1) - Hello SimpleApplication
- :revnumber: 2.0
- :revdate: 2020/07/24
- :keywords: beginner, intro, documentation, init, simpleapplication, basegame
- *Prerequisites:* This tutorial assumes that you have <<ROOT:documentation.adoc#install,downloaded the jMonkeyEngine SDK>>.
- In this tutorial series, we assume that you use the jMonkeyEngine xref:sdk:sdk.adoc[SDK]. As an intermediate or advanced Java developer, you will quickly see that, in general, you can develop jMonkeyEngine code in any integrated development environment (NetBeans IDE, Eclipse, IntelliJ) or even from the xref:ROOT:getting-started/simpleapplication_from_the_commandline.adoc[command line].
- OK, let's get ready to create our first jMonkeyEngine3 application.
- == Create a project
- In the jMonkeyEngine SDK:
- . Choose `menu:File[New Project]` from the main menu.
- . In the New Project wizard, select the template `menu:JME3[Basic Game]`.
- . Click btn:[Next].
- .. Specify a project name, e.g. "`HelloWorldTutorial`".
- .. Specify a path where to store your new project, e.g. a `jMonkeyProjects` directory in your home directory.
- . Click btn:[Finish].
- This will create a basic jme3 application for an easy start with jme3. You can click the run button to run it: You will see a blue cube.
- If you have questions, read more about xref:sdk:project_creation.adoc[Project Creation] here.
- [TIP]
- ====
- We recommend to go through the steps yourself, as described in the tutorials. Alternatively, you can create a project based on the xref:sdk:sample_code.adoc[JmeTests] template in the jMonkeyEngine SDK. It will create a project that already contains the `jme3test.helloworld` samples (and many others). For example, you can use the JmeTests project to verify whether you got the solution right.
- ====
- == Extend SimpleApplication
- For this tutorial, you need a jme3test.helloworld package in your project, with the file HelloJME3.java in it.
- In the jMonkeyEngine SDK:
- . In the `Source Packages` node of your project, btn:[RMB] select the "`mygame`" package.
- .. Choose: `menu:Refactor[Rename]`
- .. Enter the New Name: `jme3test.helloworld`
- .. Click btn:[Refactor] when ready.
- . In the newly refactored package, btn:[RMB] select the `Main.java` class.
- .. Choose: `menu:Refactor[Rename]`
- .. Enter the New Name: `HelloJME3`
- .. Click btn:[Refactor] when ready.
- You follow this same basic procedure for the remaining tutorials.
- TIP: The remaining tutorials all use the same `jme3test.helloworld` package. Just refactor the "`Main.java`" class name to the tutorial examples class name rather than creating a new project for each.
- == Code Sample
- Replace the contents of the HelloJME3.java file with the following code.
- [source,java]
- ----
- package jme3test.helloworld;
- import com.jme3.app.SimpleApplication;
- import com.jme3.material.Material;
- import com.jme3.scene.Geometry;
- import com.jme3.scene.shape.Box;
- import com.jme3.math.ColorRGBA;
- /** Sample 1 - how to get started with the most simple JME 3 application.
- * Display a blue 3D cube and view from all sides by
- * moving the mouse and pressing the WASD keys. */
- public class HelloJME3 extends SimpleApplication {
- public static void main(String[] args){
- HelloJME3 app = new HelloJME3();
- app.start(); // start the game
- }
- @Override
- public void simpleInitApp() {
- Box b = new Box(1, 1, 1); // create cube shape
- Geometry geom = new Geometry("Box", b); // create cube geometry from the shape
- Material mat = new Material(assetManager,
- "Common/MatDefs/Misc/Unshaded.j3md"); // create a simple material
- mat.setColor("Color", ColorRGBA.Blue); // set color of material to blue
- geom.setMaterial(mat); // set the cube's material
- rootNode.attachChild(geom); // make the cube appear in the scene
- }
- }
- ----
- btn:[RMB] select the `HelloJME3` class and choose `Run`. If a jME3 settings dialog pops up, confirm the default settings.
- . You should see a simple window displaying a 3D cube.
- . Press the kbd:[W] kbd:[A] kbd:[S] kbd:[D] keys and move the mouse to navigate around.
- . Look at the FPS text and object count information in the bottom left. You will use this information during development, and you will remove it for the release. (To read the numbers correctly, consider that the 14 lines of text counts as 14 objects with 914 vertices.)
- . Press kbd:[Esc] to close the application.
- Congratulations! Now let's find out how it works!
- == Understanding the Code
- The code above has initialized the scene, and started the application.
- === Start the SimpleApplication
- Look at the first line. Your HelloJME3.java class extends `com.jme3.app.SimpleApplication`.
- [source,java]
- ----
- public class HelloJME3 extends SimpleApplication {
- // your code...
- }
- ----
- Every JME3 game is an instance of the `com.jme3.app.SimpleApplication` class. The SimpleApplication class is the simplest example of an application: It manages a 3D scene graph, checks for user input, updates the game state, and automatically draws the scene to the screen. These are the core features of a game engine. You extend this simple application and customize it to create your game.
- You start every JME3 game from the main() method, as every standard Java application:
- . Instantiate your `SimpleApplication`-based class
- . Call the application's `start()` method to start the game engine.
- [source,java]
- ----
- public static void main(String[] args){
- HelloJME3 app = new HelloJME3(); // instantiate the game
- app.start(); // start the game!
- }
- ----
- The `app.start();` line opens the application window. Let's learn how you put something into this window (the scene) next.
- === Understanding the Terminology
- [cols="2", options="header"]
- |===
- a|What you want to do
- a|How you say that in JME3 terminology
- a|You want to create a cube.
- a|I create a Geometry with a 1x1x1 Box shape.
- a|You want to use a blue color.
- a|I create a Material with a blue Color property.
- a|You want to colorize the cube blue.
- a|I set the Material of the Box Geometry.
- a|You want to add the cube to the scene.
- a|I attach the Box Geometry to the rootNode.
- a|You want the cube to appear in the center.
- a|I create the Box at the origin = at `Vector3f.ZERO`.
- |===
- If you are unfamiliar with the vocabulary, read more about xref:concepts/the_scene_graph.adoc[the Scene Graph] here.
- === Initialize the Scene
- Look at rest of the code sample. The `simpleInitApp()` method is automatically called once at the beginning when the application starts. Every JME3 game must have this method. In the `simpleInitApp()` method, you load game objects before the game starts.
- [source,java]
- ----
- public void simpleInitApp() {
- // your initialization code...
- }
- ----
- The initialization code of a blue cube looks as follows:
- [source,java]
- ----
- public void simpleInitApp() {
- Box b = new Box(1, 1, 1); // create a 1x1x1 box shape
- Geometry geom = new Geometry("Box", b); // create a cube geometry from the box shape
- Material mat = new Material(assetManager,
- "Common/MatDefs/Misc/Unshaded.j3md"); // create a simple material
- mat.setColor("Color", ColorRGBA.Blue); // set color of material to blue
- geom.setMaterial(mat); // set the cube geometry 's material
- rootNode.attachChild(geom); // make the cube geometry appear in the scene
- }
- ----
- A typical JME3 game has the following initialization process:
- . You initialize game objects:
- ** You create or load objects and position them.
- ** You make objects appear in the scene by attaching them to the `rootNode`.
- ** *Examples:* Load player, terrain, sky, enemies, obstacles, …, and place them in their start positions.
- . You initialize variables:
- ** You create variables to track the game state.
- ** You set variables to their start values.
- ** *Examples:* Set the `score` to 0, set `health` to 100%, …
- . You initialize keys and mouse actions:
- ** The following input bindings are pre-configured:
- *** kbd:[W] kbd:[A] kbd:[S] kbd:[D] keys – Move around in the scene
- *** Mouse movement and arrow keys – Turn the camera
- *** kbd:[Esc] key – Quit the game
- ** Define your own additional keys and mouse click actions.
- ** *Examples:* Click to shoot, press kbd:[Space] to jump, …
- == The Future of SimpleApplication
- There are plans to change SimpleApplication. Sometime back it was decided that we should really re-factor the Application class. SimpleApplication especially is a mess of "`magic`" protected fields that on the one hand makes it really easy to slam some simple one-class application together, but on the other hand does new users no favors because they have no idea where 'cam' and 'assetManager' come from. Unfortunately, lots of code refers to Application and it's tough to change... especially the app states.
- So, we hatched a plan to convert the Application class to an interface. This would give us some freedom to iterate on a new set of application base classes. You can read about the changes link:https://hub.jmonkeyengine.org/t/jmonkeyengine-3-1-alpha-4-released/35478[here]. As said before we are envisioning a better design that is not enforced today, but that is already usable.
- If you look at SimpleApplication default constructor you will understand how it works.
- [source,java]
- ----
- public SimpleApplication() {
- this(new StatsAppState(), new FlyCamAppState(), new AudioListenerState(), new DebugKeysAppState());}
- ----
- Basically the application is injected upon construction with the default AppStates. Let's look at the second constructor.
- [source,java]
- ----
- public SimpleApplication( AppState... initialStates ) {
- super(initialStates);
- }
- ----
- It allows you to specify what AppState you want for your application. So SimpleApplication is handy for test projects (I very often use it as is) but I recommend for a full blown-game to use it like this:
- [source,java]
- ----
- public class MyGame extends SimpleApplication {
- public MyGame(){
- super(new MyCustomState(), new AnotherState(), ....);
- }
- public static void main(String[] args) {
- MyGame app = new MyGame();
- app.start();
- }
- }
- ----
- Then have all logic implemented in xref:core:app/state/application_states.adoc[AppStates] and your SimpleApplication will never change much, except when you want to add a bootstrap AppState (or maybe you can have an AppState that manages AppStates...), SimpleApplication is just the list of states you are using.
- In future versions, all the code in SimpleApplication will be refactored in AppStates (InputHandlingState, RenderAppState, whatever) and you will decide what you want to use. However, for legacy sake we kept the code as is for now.
- If you follow this recommendation, when the changes are finalized, you will only need to do a few things different from now to make your old apps work and to create new ones.
- .. Extend BaseApplication rather than SimpleApplication when creating new apps.
- .. Update your existing apps by changing SimpleApplication to BaseApplication in your main class.
- .. Change any references you have made to SimpleApplication's protected fields.
- +
- --
- For example, rather than turning off the FlyCam() like so,
- [source, java]
- ----
- flyCam.setEnabled(false);
- ----
- You would just leave the statement `new FlyCamAppState()` out of the constructor instead.
- --
- SimpleApplication will be around for some time as it will take time for people to migrate to BaseApplication, but AppStates make life easier anyway so you may as well start using them.
- == Conclusion
- You have learned that a SimpleApplication is a good starting point because it provides you with:
- * A `simpleInitApp()` method where you create objects.
- * A `rootNode` where you attach objects to make them appear in the scene.
- * Useful default input settings that you can use for navigation in the scene.
- When developing a game application, you want to:
- . Initialize the game scene
- . Trigger game actions
- . Respond to user input.
- *See also:*
- * xref:sdk:project_creation.adoc[Create a JME3 project]
|