Author Topic: Basic usage of multiple similar objects  (Read 1747 times)

Offline menion

  • byte
  • *
  • Posts: 3
    • View Profile
Basic usage of multiple similar objects
« on: May 20, 2015, 09:38:58 am »
Hello guys,

Question (example): imagine Earth (sphere) and 20-50 satellites around. Every second, number (I define which sats are visible at the moment), position (they are moving) and color (color define strength of signal) of satellites change.

May you forward me to any sample application or existing topic (I was searching a lot and I'm unable to find it), where I may read some similar technique how to handle this task.

Because I do not know if I should pre-create all sats at begin (there should be up to 100 objects, maybe more) and before every draw remove or add sats to world, define it's parameters and then call "draw", or if I may use just one satellite (I'm unable to find method to do this) and then just in cycle change it's parameters and call "draw" on it. Etc etc. Too much options.

Also because lib is closed source, it is not clear for me, if I may change color of Object3D "setAdditionalColor" even after "build" was called.

Thank you for you time!

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Basic usage of multiple similar objects
« Reply #1 on: May 20, 2015, 12:33:30 pm »
You can set an additional color at any time. build() basically locks the mesh, but not colors, transformations or texturing information. What you can't do it to render one object multiple times unless you are rendering the scene itself multiple times in the same buffer with modified transformations...that would be possible, but I've never actually seen that somebody did it that way.
If your satellites are based on one or a limited set of models, the best way would be load them as a kind of blue prints and for each actual object on screen do something like at application startup like so:

Code: [Select]
Object3D clone=new Object3D(bluePrint, true);
clone.shareCompiledMesh(bluePrint);
clone.build();

Offline menion

  • byte
  • *
  • Posts: 3
    • View Profile
Re: Basic usage of multiple similar objects
« Reply #2 on: May 20, 2015, 12:44:43 pm »
Thank you Egon, you gave me very nice answer on most of questions!!

One last if I can.

I can imagine this, like creating required objects (satellites) on-the-fly as copy of a single object (shared mesh). Isn't a big performance problem to add or remove a lot of them from the "world" instance before a draw? Or is there a faster method how to temporary disable rendering of certain object, like object3D.setVisible(true/false)?

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net

Offline menion

  • byte
  • *
  • Posts: 3
    • View Profile
Re: Basic usage of multiple similar objects
« Reply #4 on: May 20, 2015, 02:48:47 pm »
Ah, I completely missed this.

Thank you Egon, really appreciate your help!