Xith vs jME

[quote]I have a feeling this might go the same way as the last idea simply because its too much like hard work :wink:
[/quote]
But…surely not!

The test cases can be invented by anyone who has a decent grasp of what they’d like to do in a game, and then they can be implemented by any user of the API - each could easily be written by a differnet person (a la NeHe conversions to JOGL. LWJGL, etc).

The individual tests themselves are pretty trivial - they should be typically hardly any more complex than the demos that each engine already has and maintains, but the advantage is that they come from a common root, allowing an (approximate) like for like comparison (which is what no-one has access to right now).

I agree the best thing to make sure this happened would be to define a couple and implement them myself for one API, and I’m sure other people would then say “what the heck” and have a go at doing it for their own API…but, sadly, I’m too busy.

Unfortunately I think most everyone else is also too busy for this sort of task. There just always seem to be more important tasks at hand.

Tcomparison to the NeHe ports, no disrespect to the providers (of what I’m sure is a fundamentally useful resource), however they’re a trivial (in terms of engineering) porting exercise in comparison to developing the sort of demos you’re talking about.

As to the validity of these things as a benchmarking tool after development while I don’t think there is any reason to believe that there would be anything wrong with them they’d never be kept up to date with the latest developments in the APIs or be 100% understood and accepted.

I applaud the thought and the intent but doubt the action.

Kev

[quote]As to the validity of these things as a benchmarking tool after development
[/quote]
Perhaps this explains our different perspectives a little - I’m not thinking of benchmarking as being part of the purpose (despite references to making versions tuned for performance) but instead ONLY thinking of using them as a comparison for people trying to appreciate the differences as potential users.

For instance, 10 minutes looking at JOGL code side-by-side with LWJGL code to do the same kind of thing is enough for a lot of people to quickly decide which one they want to use. In that case it’s easier because you’re only considering low-level differences, e.g. method-signatures etc. You either see C syntax and think “yes! Want that!” or you see a more OOP approach to OGL and have similar thoughts (both of those being aspects that leap out at you as soon as you get the code in front of your eyes).

But right now we can only compare apples to oranges with X and J etc - there are no “common” cases :(.

Rotation and helloworld is in both the jME and Xith3d starter guides.

[quote]Rotation and helloworld is in both the jME and Xith3d starter guides.
[/quote]
Um…is that meant to be a joke? ??? Isn’t that a bit like saying “1 + 1 looks the same in both java and C” when trying to decide which language to use?

It’s not a joke. They look absolutely nothing alike and is exactly like the example you gave.

" For instance, 10 minutes looking at JOGL code side-by-side with LWJGL code to do the same kind of thing is enough for a lot of people to quickly decide which one they want to use. In that case it’s easier because you’re only considering low-level differences, e.g. method-signatures etc. You either see C syntax and think “yes! Want that!” or you see a more OOP approach to OGL and have similar thoughts (both of those being aspects that leap out at you as soon as you get the code in front of your eyes). "

They aren’t exact duplicates but they are close. I think it’s a good idea blahx3 what you’re proposing. I was just saying there’s already a few like that out now.

HelloWorld in the jME starter guide:


import com.jme.app.SimpleGame;
import com.jme.scene.shape.Box;
import com.jme.math.Vector3f;

/**
 * Started Date: Jul 20, 2004


 * 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
        app.setDialogBehaviour(SimpleGame.ALWAYS_SHOW_PROPS_DIALOG);
        // Signal to show properties dialog
        app.start();    // Start the program
    }
    protected void simpleInitGame() {
        Box b=new Box("My box",new Vector3f(0,0,0),new Vector3f(1,1,1));    // Make a box
        rootNode.attachChild(b);    // Put it in the scene graph
    }
}

HelloWorld from Xith3d starter guide.


package org.xith3d.gsg;

import javax.vecmath.*;

// Xith3D
import com.xith3d.scenegraph.*;
import com.xith3d.test.*;

// use Jogl
import com.xith3d.render.*;
import com.xith3d.render.jogl.*;

/**
* Simple Hello-World-application, displaying a single cube.
*
* @author Jens Lehmann
*/
public class HelloXith3D
{
      /**
      * Starts the application.
      *
      * @param args command line parameters
      */
      public static void main(String[] args)
      {
            new HelloXith3D();
      }

      /**
      * Draws a cube.
      */
      public HelloXith3D()
      {
            // create the virtual univers
            VirtualUniverse universe = new VirtualUniverse();

            // add a view to the universe
            View view = new View();
            universe.addView(view);

            // add a locale
            Locale locale = new Locale(5.0f, 0.0f, 10.0f);
            universe.addLocale(locale);

            // create a BranchGroup
            BranchGroup scene = new BranchGroup();
            locale.addBranchGraph(scene);

            // let objects along this path rotate
            Transform3D rotate = new Transform3D();
            rotate.rotXYZ((float)Math.PI/4,
            (float)Math.PI/5,
            (float)Math.PI/2);
            TransformGroup objRotate = new TransformGroup(rotate);
            scene.addChild(objRotate);

            // create Cube
            Geometry geo = Cube.createCubeViaTriangles(0, 0, 0, 1, true);
            Shape3D sh = new Shape3D(geo, new Appearance());
            objRotate.addChild(sh);

            // turn the scene into a render friendly format
            scene.compile();

            // create a canvas for our graphics
            RenderPeer rp = new RenderPeerImpl();
            CanvasPeer cp = rp.makeCanvas(null, 640, 480, 32, false);
            Canvas3D canvas = new Canvas3D();
            canvas.set3DPeer(cp);

            // modify our view so we can see the cube
            view.addCanvas3D(canvas);
            view.getTransform().lookAt(
            new Vector3f(0, 0,    2f),    // location of eye
            new Vector3f( 0, 0, 0),    // center of view
            new Vector3f( 0, 1, 0));    // vector pointing up
            view.startView();
      }
}


One big difference between Xith and jME is that jME have translation, rotation and scaling for each Spatial in the scene graph, even a TriMesh. Xith only have this data for a TransformGroup. To me it seems the jME solution would waste more resources, both memory and CPU.

and the TransformGroup has the translation, rotation and scaling. Its no difference. Actually, Xith3D’s is more momery wasteful as you need to create a furthur object (TransformGroup) rather than just 3 Vector3fs as you do in jME.

Edit: Just found out about Transform3D, even more memory wasteful!

I have a feeling Phazer was saying that JME effectively has a trasform group built into every node and has to account for each one when rendering.

Example: 5 TriMeshs in a Group. Not transformed in any way. In JME the rendering process has to at least check whether the transform components of the mesh have been used and hence need to be honoured during rendering. In Xith, there would be no transform information since there is no TransformGroup involved.

Memory usage would be higher in JME because every node would use memory for transform information even if its not used.

Kev

Exactly. It seems unnecessary to create three transform matrixes just because I create three TriMesh’es. I don’t understand this design choice, besides the fact that it saves lazy persons the extra code of adding a transform group to the graph.

right, so you have created your triMesh, where is it gonna go? Ummm…near the heavens?

It has to have a place in the coordinate system, if no location/rotation/scale is specified, its at (0,0,0) with the scale being (1,1,1).

Tell me, in Xith3D, if you created a triMesh, how do you place in the scene? and if no transform group is there, on what premises is it placed there?

The reason this happens is because each level of the scene graph has a bounding volume. It may seem wastefull to have to transform your node all the way down the scene graph but the real speed up is during rendering. If the middle of the scene graph can be culled with view fustrum culling, then none of the lower leaf nodes have to be checked. To do this, you need transforms at each level. It’s also very easy and fast O(1) to get the exact world location of any node on the scene graph.

You place potentially multiple TriMeshs within the same transform group.

Xith3D also supports bounding volume determination. I’m not sure why you believe you need a transform at every level to achieve this. Java3D did this also incidently.

Kev

It’s impractical and inefficient when you don’t need the transform, for example if you have one transform group and multiple TriMesh’es as children to this node. Sometimes you have mutiple TriMesh’es which can’t be replaced by one:

  • You want to be able to add/remove/hide/show individual TriMesh’es.

  • You have different materials on the TriMesh’es. One TriMesh can only have one texture.

I agree with kevglass. There is no need for a transformation matrix in each node to perform transformations in advance. Just use the matrix in the parent node if there is none in the node.

I was meaning to say if you have a SceneGraph of depth 10, consider each leaf node as a renderable object. If I can figure out that the node at depth 5 is not viewable I don’t need to check any nodes or leaves below it. I need the exact position of that node to figure out if it is viewable or not.

I see what you’re saying. I just think everything comes out even (speed wise) with how often jME uses the world location of an object and the nodes in the scene graph.

I know what you mean, but that isn’t an argument for having a transform matrix in each graph node. I think Xith does the bounding bounds/view frustum optimization too, but it doesn’t keep a matrix in each graph node, only transform groups.

I think jME is a great project (and so is Xith), I’m just a bit surprised by this design decision.

this is sad, horrible, and embarassing, but true:

I glanced at jME but did not even give it serious consideration
once I found Xith. Why?

Just because of the name, “monkey engine”. I’m in an organization
where convincing people to use java is in itself an issue,
and I feared that getting them to consider using something
called “monkey engine” would be impossible.

As java’s reputation in graphics improves in the next couple years
this won’t be an issue, but for now…

for your consideration.