aboutsummaryrefslogtreecommitdiff
path: root/engine/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/test')
-rw-r--r--engine/src/test/jme3test/app/TestAppStateLifeCycle.java126
-rw-r--r--engine/src/test/jme3test/effect/TestSoftParticles.java130
-rw-r--r--engine/src/test/jme3test/helloworld/HelloMaterial.java3
-rw-r--r--engine/src/test/jme3test/model/shape/TestExpandingTorus.java45
4 files changed, 303 insertions, 1 deletions
diff --git a/engine/src/test/jme3test/app/TestAppStateLifeCycle.java b/engine/src/test/jme3test/app/TestAppStateLifeCycle.java
new file mode 100644
index 0000000..f224242
--- /dev/null
+++ b/engine/src/test/jme3test/app/TestAppStateLifeCycle.java
@@ -0,0 +1,126 @@
+/*
+ * Copyright (c) 2009-2012 jMonkeyEngine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * * Neither the name of 'jMonkeyEngine' nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+package jme3test.app;
+
+import com.jme3.app.Application;
+import com.jme3.app.SimpleApplication;
+import com.jme3.app.state.AbstractAppState;
+import com.jme3.app.state.AppStateManager;
+import com.jme3.material.Material;
+import com.jme3.math.Vector3f;
+import com.jme3.renderer.RenderManager;
+import com.jme3.scene.Geometry;
+import com.jme3.scene.shape.Box;
+
+
+/**
+ * Tests the app state lifecycles.
+ *
+ * @author Paul Speed
+ */
+public class TestAppStateLifeCycle extends SimpleApplication {
+
+ public static void main(String[] args){
+ TestAppStateLifeCycle app = new TestAppStateLifeCycle();
+ app.start();
+ }
+
+ @Override
+ public void simpleInitApp() {
+ Box b = new Box(Vector3f.ZERO, 1, 1, 1);
+ Geometry geom = new Geometry("Box", b);
+ Material mat = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
+ mat.setTexture("ColorMap", assetManager.loadTexture("Interface/Logo/Monkey.jpg"));
+ geom.setMaterial(mat);
+ rootNode.attachChild(geom);
+
+ System.out.println("Attaching test state.");
+ stateManager.attach(new TestState());
+ }
+
+ @Override
+ public void simpleUpdate(float tpf) {
+
+ if(stateManager.getState(TestState.class) != null) {
+ System.out.println("Detaching test state.");
+ stateManager.detach(stateManager.getState(TestState.class));
+ System.out.println("Done");
+ }
+ }
+
+ public class TestState extends AbstractAppState {
+
+ @Override
+ public void initialize(AppStateManager stateManager, Application app) {
+ super.initialize(stateManager, app);
+ System.out.println("Initialized");
+ }
+
+ @Override
+ public void stateAttached(AppStateManager stateManager) {
+ super.stateAttached(stateManager);
+ System.out.println("Attached");
+ }
+
+ @Override
+ public void update(float tpf) {
+ super.update(tpf);
+ System.out.println("update");
+ }
+
+ @Override
+ public void render(RenderManager rm) {
+ super.render(rm);
+ System.out.println("render");
+ }
+
+ @Override
+ public void postRender() {
+ super.postRender();
+ System.out.println("postRender");
+ }
+
+ @Override
+ public void stateDetached(AppStateManager stateManager) {
+ super.stateDetached(stateManager);
+ System.out.println("Detached");
+ }
+
+ @Override
+ public void cleanup() {
+ super.cleanup();
+ System.out.println("Cleanup");
+ }
+
+ }
+}
diff --git a/engine/src/test/jme3test/effect/TestSoftParticles.java b/engine/src/test/jme3test/effect/TestSoftParticles.java
new file mode 100644
index 0000000..d779a6f
--- /dev/null
+++ b/engine/src/test/jme3test/effect/TestSoftParticles.java
@@ -0,0 +1,130 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package jme3test.effect;
+
+import com.jme3.app.SimpleApplication;
+import com.jme3.effect.ParticleEmitter;
+import com.jme3.effect.ParticleMesh;
+import com.jme3.effect.shapes.EmitterSphereShape;
+import com.jme3.input.KeyInput;
+import com.jme3.input.controls.ActionListener;
+import com.jme3.input.controls.KeyTrigger;
+import com.jme3.material.Material;
+import com.jme3.math.ColorRGBA;
+import com.jme3.math.Quaternion;
+import com.jme3.math.Vector3f;
+import com.jme3.post.FilterPostProcessor;
+import com.jme3.post.filters.TranslucentBucketFilter;
+import com.jme3.scene.Geometry;
+import com.jme3.scene.shape.Box;
+
+/**
+ *
+ * @author Nehon
+ */
+public class TestSoftParticles extends SimpleApplication {
+
+ private boolean softParticles = true;
+ private FilterPostProcessor fpp;
+ private TranslucentBucketFilter tbf;
+
+ public static void main(String[] args) {
+ TestSoftParticles app = new TestSoftParticles();
+ app.start();
+ }
+
+ @Override
+ public void simpleInitApp() {
+
+ cam.setLocation(new Vector3f(-7.2221026f, 4.1183004f, 7.759811f));
+ cam.setRotation(new Quaternion(0.06152846f, 0.91236454f, -0.1492115f, 0.37621948f));
+
+ flyCam.setMoveSpeed(10);
+
+
+ // -------- floor
+ Box b = new Box(Vector3f.ZERO, 10, 0.1f, 10);
+ Geometry geom = new Geometry("Box", b);
+ Material mat = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
+ mat.setColor("Color", ColorRGBA.Gray);
+ mat.setTexture("ColorMap", assetManager.loadTexture("Interface/Logo/Monkey.jpg"));
+ geom.setMaterial(mat);
+ rootNode.attachChild(geom);
+
+ Box b2 = new Box(Vector3f.ZERO, 1, 1, 1);
+ Geometry geom2 = new Geometry("Box", b2);
+ Material mat2 = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
+ mat2.setColor("Color", ColorRGBA.DarkGray);
+ geom2.setMaterial(mat2);
+ rootNode.attachChild(geom2);
+ geom2.setLocalScale(0.1f, 0.2f, 1);
+
+ fpp = new FilterPostProcessor(assetManager);
+ tbf = new TranslucentBucketFilter(true);
+ fpp.addFilter(tbf);
+ viewPort.addProcessor(fpp);
+
+
+ Material material = new Material(assetManager, "Common/MatDefs/Misc/Particle.j3md");
+ material.setTexture("Texture", assetManager.loadTexture("Effects/Explosion/flame.png"));
+
+ material.setFloat("Softness", 3f); //
+
+
+ //Fire
+ ParticleEmitter fire = new ParticleEmitter("Fire", ParticleMesh.Type.Triangle, 30);
+ fire.setMaterial(material);
+ fire.setShape(new EmitterSphereShape(Vector3f.ZERO, 0.1f));
+ fire.setImagesX(2);
+ fire.setImagesY(2); // 2x2 texture animation
+ fire.setEndColor(new ColorRGBA(1f, 0f, 0f, 1f)); // red
+ fire.setStartColor(new ColorRGBA(1f, 1f, 0f, 0.5f)); // yellow
+ fire.setStartSize(0.6f);
+ fire.setEndSize(0.01f);
+ fire.setGravity(0, -0.3f, 0);
+ fire.setLowLife(0.5f);
+ fire.setHighLife(3f);
+ fire.setLocalTranslation(0, 0.2f, 0);
+
+ rootNode.attachChild(fire);
+
+
+ ParticleEmitter smoke = new ParticleEmitter("Smoke", ParticleMesh.Type.Triangle, 30);
+ smoke.setMaterial(material);
+ smoke.setShape(new EmitterSphereShape(Vector3f.ZERO, 5));
+ smoke.setImagesX(1);
+ smoke.setImagesY(1); // 2x2 texture animation
+ smoke.setStartColor(new ColorRGBA(0.1f, 0.1f, 0.1f,1f)); // dark gray
+ smoke.setEndColor(new ColorRGBA(0.5f, 0.5f, 0.5f, 0.3f)); // gray
+ smoke.setStartSize(3f);
+ smoke.setEndSize(5f);
+ smoke.setGravity(0, -0.001f, 0);
+ smoke.setLowLife(100f);
+ smoke.setHighLife(100f);
+ smoke.setLocalTranslation(0, 0.1f, 0);
+ smoke.emitAllParticles();
+
+ rootNode.attachChild(smoke);
+
+
+ inputManager.addListener(new ActionListener() {
+
+ public void onAction(String name, boolean isPressed, float tpf) {
+ if(isPressed && name.equals("toggle")){
+ // tbf.setEnabled(!tbf.isEnabled());
+ softParticles = !softParticles;
+ if(softParticles){
+ viewPort.addProcessor(fpp);
+ }else{
+ viewPort.removeProcessor(fpp);
+ }
+ }
+ }
+ }, "toggle");
+ inputManager.addMapping("toggle", new KeyTrigger(KeyInput.KEY_SPACE));
+ }
+
+
+}
diff --git a/engine/src/test/jme3test/helloworld/HelloMaterial.java b/engine/src/test/jme3test/helloworld/HelloMaterial.java
index e930c91..8ef6f56 100644
--- a/engine/src/test/jme3test/helloworld/HelloMaterial.java
+++ b/engine/src/test/jme3test/helloworld/HelloMaterial.java
@@ -80,7 +80,7 @@ public class HelloMaterial extends SimpleApplication {
/** A cube with its base color "leaking" through a partially transparent texture */
Box boxshape4 = new Box(new Vector3f(3f,-1f,0f), 1f,1f,1f);
Geometry cube_leak = new Geometry("Leak-through color cube", boxshape4);
- Material mat_tl = new Material(assetManager, "Common/MatDefs/Misc/ColoredTextured.j3md");
+ Material mat_tl = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
mat_tl.setTexture("ColorMap", assetManager.loadTexture("Textures/ColoredTex/Monkey.png"));
mat_tl.setColor("Color", new ColorRGBA(1f,0f,1f, 1f)); // purple
cube_leak.setMaterial(mat_tl);
@@ -103,6 +103,7 @@ public class HelloMaterial extends SimpleApplication {
shiny_rock.setLocalTranslation(0,2,-2); // Move it a bit
shiny_rock.rotate(1.6f, 0, 0); // Rotate it a bit
rootNode.attachChild(shiny_rock);
+
/** Must add a light to make the lit object visible! */
DirectionalLight sun = new DirectionalLight();
sun.setDirection(new Vector3f(1,0,-2).normalizeLocal());
diff --git a/engine/src/test/jme3test/model/shape/TestExpandingTorus.java b/engine/src/test/jme3test/model/shape/TestExpandingTorus.java
new file mode 100644
index 0000000..9e76b3f
--- /dev/null
+++ b/engine/src/test/jme3test/model/shape/TestExpandingTorus.java
@@ -0,0 +1,45 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package jme3test.model.shape;
+
+import com.jme3.app.SimpleApplication;
+import com.jme3.material.Material;
+import com.jme3.scene.Geometry;
+import com.jme3.scene.shape.Torus;
+
+public class TestExpandingTorus extends SimpleApplication {
+
+ private float outerRadius = 1.5f;
+ private float rate = 1;
+ private Torus torus;
+ private Geometry geom;
+
+ public static void main(String[] args) {
+ TestExpandingTorus app = new TestExpandingTorus();
+ app.start();
+ }
+
+ @Override
+ public void simpleInitApp() {
+ torus = new Torus(30, 10, .5f, 1f);
+ geom = new Geometry("Torus", torus);
+ Material mat = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
+ geom.setMaterial(mat);
+ rootNode.attachChild(geom);
+ }
+
+ @Override
+ public void simpleUpdate(float tpf){
+ if (outerRadius > 2.5f){
+ outerRadius = 2.5f;
+ rate = -rate;
+ }else if (outerRadius < 1f){
+ outerRadius = 1f;
+ rate = -rate;
+ }
+ outerRadius += rate * tpf;
+ torus.updateGeometry(30, 10, .5f, outerRadius);
+ }
+} \ No newline at end of file