| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- = jMonkeyEngine 3 Tutorial (1) - Hello SimpleApplication
- :revnumber: 3.0
- :revdate: 2022/03/22
- :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.
- ====
- == Code Sample
- Main.java contains the following example code.
- [source,java]
- ----
- package mygame;
- 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 Main extends SimpleApplication {
- public static void main(String[] args){
- Main app = new Main();
- 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 `Main` 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 Main.java class extends `com.jme3.app.SimpleApplication`.
- [source,java]
- ----
- public class Main 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){
- Main app = new Main(); // 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, …
- == 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]
|