( Note: the starter tutorials in this wiki are not always up to date
with the latest development version of jME. You can find up to date
source files for the tutorials here: http://code.google.com/p/jmonkeyengine/source/browse/#svn/trunk/src/jmetest/TutorialGuide
)
Here we’ll learn the basics of creating a jME program, by exploring SimpleGame
, Box
, and rootNode.
OK, let’s just dive in. Here’s as basic a program as you can get:
(注解:这份指南在wiki上并不一定是跟最新的jME开发版本一样.你可以在http://code.google.com/p/jmonkeyengine/source/browse/#svn/trunk/src/jmetest/TutorialGuide
找到最新的源码文件)
这里我们将通过探索SimpleGame,Box,rootNode学习基本的创建一个jME程序.OK,开始了,下面是一个简单的程序:
import com.jme.app.SimpleGame;
import com.jme.scene.shape.Box;
import com.jme.math.Vector3f;
/**
* Started Date: Jul 20, 2004<br><br>
* Simple HelloWorld program for jME
*
* @author Jack Lindamood
*/
public class HelloWorld extends SimpleGame{
public static void main(String[] args) {
HelloWorld app = new HelloWorld(); // Create Object
// Signal to show properties dialog
app.setConfigShowMode(ConfigShowMode.AlwaysShow);
app.start(); // Start the program
}
protected void simpleInitGame() {
// Make a box
Box b = new Box("Mybox", new Vector3f(0,0,0), new Vector3f(1,1,1));
rootNode.attachChild(b); // Put it in the scene graph
}
}
Pretty short, right? The real meat of our program begins with the following:
是不是很精炼?我们的程序从这里开始:
public class HelloWorld extends SimpleGame{
SimpleGame
does a lot of initialization for us behind our back. If you really want
to, you can look at its code, but for now just understand that it
creates all the basics needed for rendering. It's a great class to
start with for prototyping and testing.
SimpleGame在后面帮我们干了很多初始化工作.如果你想细致的了解,请看源码,现在只需要了解它创建了很多基础的需要渲染的东西.这是个很好的原型和测试的类.
app.setConfigShowMode(ConfigShowMode.AlwaysShow);
You know the picture of a monkey you see when the program is first run, the one that lets you select the resolution?
就像你看到的那样,程序一开始有一个猴子,下面有让我们选择分辨率的选项
Well, this command makes it appear. As the name suggests, it always shows the properties dialog
on every run. You’ll never see that dialog box if you change it to the following:
是 app.setConfigShowMode
(
ConfigShowMode.AlwaysShow
)
;让它显示出来的,就像它的名字一样每当运行的时候配置框都会出来,如果你不想看到的话写成
ConfigShowMode.NeverShow即可
Not too difficult.
也不太困难嘛.
app.start(); // Start the program启动程序
The function start() is a while loop.
First, it initializes the jME system. Then, the while loop does two
things per iteration: first, it tells everything in your game that it
needs to move, and second, it renders everything. Basically, it gets
the game going.
start()是循环执行的.首先,初始化jME系统.然后,每次循环都重复两件事情:第一,它告诉所有程序哪些要移动,第二,它负责渲染.基本上,是它让程序运行的.
protected void simpleInitGame() {
// Make a box
Box b = new Box("Mybox",
new Vector3f(0,0,0),
new Vector3f(1,1,1));
rootNode.attachChild(b); // Put it in the scene graph
}
The function simpleInitGame() is abstract in SimpleGame
, so you’re forced to implement it every time you extend SimpleGame
.
Looking at the code we can see that two things happen. First, I make a
box (it’s the thing you saw on the screen). Second, I attach the box to
the root of my scene graph. The object rootNode is of class Node
which is created by SimpleGame
for you. You’ll attach everything to it or one of its children. Notice I gave b 3 parameters: a string and two Vector3f
objects. Every Node
, Box
,
Circle, Person or anything in your scene graph will have a name.
Usually you want the name to be specific for each object. I called this
one “My box”, but really you could have called it anything. The next
two parameters specify the corners of the Box. It has one corner at the
origin, and another at x=1, y=1, z=1. Basically, it’s a unit cube.
simpleInitGame()
方法是SimpleGame的抽象方法,所有你每次继承SimpleGame的时候都必须重载它.通过代码我们可以看到,两件事发生,第一,我创建了一个
Box(就是你在屏幕上看到的那个东西).第二,我把box附给了我的场景图.对象rootNode是Node类的实例是从SimpleGame里面创建
的.你可以把所有的东西(组件)都附给rootNode或者其他子节点.注意我给了b(Box)3个参数:一个String和两个Vector3f对象.
每个Node,Box,Circle,Person或者任何在你场景里面的东西都必须有一个名字.通常你需要为每个对象命名专用名字.就像"My
box"一样,当然你可以随意给它起名子.另外两个参数指定了Box的两个角.从一个角开始(new
Vector3f(
0
,0
,0
)
),到另一个角(new
Vector3f(
1
,1
,1
)
),在x=1,y=1,z=1的地方,这就是一个方块单位.
OK, I’ve created the Box, but I have to tell it I want it rendered, too. That’s why I attach it to the rootNode object. Your scene graph
basically looks like this:
OK,我们已经创建了一个Box了,我必须告诉程序我们要渲染它.这就是我为什么把它附给rootNode对象.你的场景看起来像这样(Mybox在rootNode下):
The object rootNode is at the top and “My box” is below it. So, when SimpleGame
tries to draw rootNode it will try to draw “My box” as well. That’s it! Now, on to something more complex.
相关推荐
1. **Java Micro Edition (JME)**:JME是为了适应有限资源的设备而设计的,如手机、嵌入式系统等。它提供了Java SE(标准版)的核心功能,但简化了API以减少内存和处理器的需求。开发者使用JME可以创建跨平台的应用...
### JME中文教程知识点概述 #### 一、jMonkeyEngine3简介 - **定义与特点**:jMonkeyEngine3(简称JME3)是一款纯Java编写的免费3D游戏引擎,具备丰富的功能集,适用于各类游戏开发需求。该引擎不仅功能全面,其...
jme-3.0.10 兼容): 版本:1.+ 分支:jme_3.0 JME3-JFX 需要 java 8,但是可以使用 java 7 在纹理上绘制视频。对于 jME SDK,您应该创建一个 java 8 平台,但是 java8 支持非常糟糕(因为它基于 netbeans 7)。 ...
RPG手机游戏开发代码,是一个完整的开发代码
2. **配置文件**:Gradle构建文件(build.gradle)会包含JME3和JOGL的依赖项,以及自定义的构建任务。 3. **主类**:通常有一个启动类,它创建JME3的应用实例,设置窗口属性,并初始化场景。 4. **场景管理**:...
代码测试环境:JME-2核心板+1T指令周期的STC单片机(51内核 STC12LE5A60S2)+33M晶振 单片机工作电压3.3V 程序默认IO连接方式: 控制线:RS-P3^5; WR-P3^6; RD-P3^7; CS-P1^0; REST-P1^2; 数据线: DB0-DB7依次连接P0^0...
jme-remoterpiui-demo RemoteRPIUIControllerDemo MIDlet 该程序允许从JME Emulator远程控制在Raspberry Pi上运行的RPIUIDemoMIDlet应用程序(jme-rpiui-demo存储库)。 该程序连接到RPIUIDemoMIDlet的服务器套接...
jmasters JMasters 是一个简单的应用程序,遵循所有 JMonkeyEngine 3.x 教程。 可以说它是对网站上现有教程的翻译。 使用的平台: JMonkeyEngine 3.x 64 位; Oracle JDK 7; Kubuntu 14.04 LTS。
2. 获取jme3-clj-aide项目的源码,将其解压到你的设备上。 3. 在AIDE中打开项目,导入必要的依赖,如JMonkeyEngine3库和Clojure相关库。 4. 编写Clojure代码,实现游戏的基本框架,包括场景创建、物体加载、用户交互...
jme3-样板 jMonkeyEngine 3.0 项目的 gradle 样板 桌面+安卓构建 maven 满足 jme3 依赖项 android sdk 必须在local.properties提供 安卓依赖 android sdk 构建工具 21.1.1 android 支持存储库 8 安卓支持库 21.0.1...
MultiverseKing_JME 使用JMonkeyEngine( )的开源战术动作RPG游戏所有图形均已在CC BY-SA 4.0下获得许可。 许可链接: : 该项目使用可以在以下位置找到的HexGridAPI:
### JME3游戏开发引擎中文学习指南 #### 引言 JME3,全称jMonkeyEngine3,是一款开源的3D游戏开发引擎,专为Java开发者设计,旨在简化3D游戏和应用程序的开发过程。本文档将详细介绍如何在Netbeans6.x环境下搭建...
标题中的“联想的JME2207P键盘驱动”是指专门为联想品牌的一款键盘型号为JME2207P的设备设计的驱动程序。在计算机硬件系统中,驱动程序是连接操作系统与硬件设备的关键软件,它使得操作系统能够识别并控制特定硬件,...
jme8002b蓝牙键盘驱动
**1. JMonkeyEngine (jme3)** JMonkeyEngine是一款开源的3D游戏开发引擎,完全用Java编写,旨在提供高效、高性能的3D图形渲染能力。它支持多种现代游戏特性,如光照、阴影、粒子系统、物理模拟等,且具备良好的跨...
JME,以前被称为Java 2 Micro Edition,是Java平台的一个子集,用于嵌入式设备和移动设备,如智能手机和小型家电。ant-jme.jar可能包含了JME开发所需的特定任务或类库,使得开发者能够在这些资源有限的平台上使用Ant...
标题“jme-process-site”可能指的是一个基于Java ME(Micro Edition)平台的项目站点,用于处理特定的工作流程或过程管理。然而,由于信息有限,我们无法深入探讨该项目的具体功能和目的。不过,我们可以从标签...
关于这个图书馆 该库提供了一些接口来与jMonkeyBuilder集成。 执照 请参阅名为LICENSE的文件。 如何使用 Gradle repositories { maven { url " ... <id>bintray-javasabr-maven</id>
适用于移动设备和 PC 的基于 Java 的 Commodore 64 模拟器。 如果你想在你的手机或 PC 上看到旧的 C64 变得活跃,那么试试这个模拟器。 有关更多信息,请参阅 Wiki 页面 ...
com.jme3.animation com.jme3.app com.jme3.app.state com.jme3.asset com.jme3.asset.pack com.jme3.asset.plugins com.jme3.audio com.jme3.audio.joal ...jme3tools.preview