Differences between jPCT and jPCT-AE

From JPCT
Revision as of 21:18, 24 June 2010 by Admin (Talk | contribs)

Jump to: navigation, search

Differences between jPCT and jPCT-AE

Wording

In the following sections, i'm going to use AE for jPCT-AE and jPCT for desktop jPCT.


Classes, packages and methods

The basic structure of jPCT and AE doesn't differ that much. If you are familiar with jPCT, you'll instantly find your way into AE. However, AE is smaller. It lacks some options of jPCT, because of hardware and software limitations of the underlying platform and some cleanup work. Here's a brief overview about the main differences:

  • there's no procs nor threading package in AE.
  • the util package is there, but it contains less classes. The Lights class has moved into the main package and it now the default way of creating lights in AE.
  • the methods to work with lights in World are all gone in AE. Use the Lights class instead.
  • software and hybrid hardware mode are gone. AE uses compiled objects only.
  • there's no way to explicitly compile an Object3D, AE does this automagically. However, there is a method in World to compile all objects in the world that jPCT doesn't have.
  • portal rendering has been removed. I'm not sure if it works properly in jPCT anyway, because no one ever really used it for years.
  • image, texture and color handling is different, simply because Android has no AWT package or classes.
  • ...

Afterall, AE looks and feel like the little brother of jPCT. While jPCT is pretty easy to use, AE is actually even simpler.


Porting

AE provides the 3D engine only. It doesn't provide any Activity example or framework for Android. You'll find some example code on the AE-homepage. So porting from jPCT to AE means to port from your native OpenGL window or AWT/Swing component with it's key and mouse polling and/or listeners to an Android Activity...and vice versa. To ease porting, i suggest to use the Lights class for managing lights in jPCT, not the methods in World. That way, you can simply port those sections by changing the import only (because the Lights class has moved from util into the main package). It's cleaner that way anyway...


Performance and memory issues

On the desktop, memory and performance are to spare...at least to a degree. On Android, this isn't the case. Remember that you have to work with a max memory of 16mb...and coming close to that border isn't really fun, so your should plan to use some mb less. CPU power is limited too and many phones don't even have a FPU, meaning that all the floating point calculations are done in software emulation mode.

Apart from the usual tips like using low polygon models and lowres textures, there's one thing that really helps: Using serialized objects! For this, current versions of jPCT come with a new class, the DeSerializer. While it can be used within jPCT only, it's main purpose is to be used in combination with AE. The idea is, to load the models in jPCT and serialize it to an optimized format that can be loaded by AE. AE has no DeSerializer class but a method to load these objects in Loader. Loading objects serialized by jPCT is the fastest way to load in AE and it's also the most memory saving way. I can only recommend it! It's a bit painful to use right now, because there's no tool that loads the model and does the serialization for you, so you have to write your own code for this. I'm trying to add some simple tool that does this in the future...or if you have created one, feel free to share it.

If you are using serialized objects in AE, remember too things:

  • serialize them in reduced mode (check out the method signature of serialize(...) for this). AE will load none-reduced models too, but it's a waste of time and memory.
  • call build() on them before serializing them. AE will recognize this and can optimize it's own build()-process if some of the work is already done.

If possible, use strip() on your Object3Ds after loading them in AE. It will free some of the precious memory.

For more performance tips, look at Performance tips for Android .