is it possible to make some part of an object invisible ? if we somehow now the polyon ids..
Not really...you can try to attach a vertex controller to it and move the vertices of the polygons that should be invisible out of sight. But that's pretty crude IMHO.
i guess so. besides that, to hide 12 polygons, all merged structure's polygons will be uploaded again.
Yes, that's another issue....
i've noticed, when merging objects polygons orders and count are preserved. for example, merging 10 poly + 15 poly + 25 poly results in an object with 50 polygons. and first 10 polygons come from first object, second 15 from second and so on. is this always the case, can we count on this ?
provided this is true (at least for some kind of objects), -if possible- adding a method to PolygonManager not to render some polygons can be extremely useful. for example, consumable level items can be merged into level and can be hidden after consumed.
You can't really do this for compiled objects. They compile down into several batches of geometry optimized by different criteria. Those batches could be rendered individually, but you don't have control about which geometry is in which batch. And splitting the batches by object doesn't do any good, because it destroys the advantages of merging.
just for curiosity, how does dynamically compiled objects work then ? when some of their vertices are modified by a vertex controller, doesn't that require some of that vertices move among batches ?
No. Batching is done based on texture and blending modes, not on position in space. For simpler objects, the mapping is 1-to-1, for more complex ones, there's an additional index list that maps from the mesh to the compiled data. jPCT will print some messages about the mode it's using when compiling an animated object IIRC.
i see. but doesn't changing texture or texture mode via PolygonManager requires batch change in this case ?
Yes, it would....but it's simply ignored for compiled objects. You can do that before the actual compilation happens, which is why AE's PolygonManager still has these methods. But after compilation, it will be ignored.
i see. so there isn't much option left to handle many objects. i wanna try that crude option, at least for fun ;)
so, what are the steps i should take ?
* i need to make the merged object compiled dynamically, but there is no such option in AE. (this works for Bones but i cant remember how)
* i need the polygons ids. see below
* move vertices out of sight via VertexController and call touch on object
* anything else ?
Quote from: raft
i've noticed, when merging objects polygons orders and count are preserved. for example, merging 10 poly + 15 poly + 25 poly results in an object with 50 polygons. and first 10 polygons come from first object, second 15 from second and so on. is this always the case, can we count on this ?
can i count on this ?
Yes, counts will be preserved. Dynamic compilation in AE happens on the fact that the object has an IVertexController (or an Animation) attached to it.
yeap, the crude way is the way to go ;)
here is a screenshot of an experimental large scene. ~750 objects are merged into two. it runs at more than 30fps ;D
(http://img839.imageshack.us/img839/7630/pyramid.png)
i was planning to merge consumable items in 50 or so batches to reduce vertex uploads but seems as it's not necessary. no noticable hickups when some vertices are pushed away. afterall it's not done every frame.
i've a few questions:
* how can i determine how many vertices an object will occupy when merged. Mesh().getUniqueVertexCount() does not give the correct number. for example, for a box created by primitives, this methods return 18. but it occupies only 10 vertices when merged.
* is there a best location to push unwanted vertices ? for example, does it matter to push them to same place or is it better to spread them ? besides this, i guess it's always better to push them somewhere behind Config.farPlane
Cool...
uniqueVertexCount should actually be giving you the correct number...it just adds the vertices of the bounding box to the mix, which is why you get 18 and not 10. Just subtract 8 from the returned value and it should be correct.
About the location...i think it's fine to push them all to one secret place. I don't see why this should be a problem.
cool, thanks :D
indeed, i've found this technique so powerful that, you may want to add hide/ShowSubObject and/or translateSubObject methods to Object3D.
just for comparision. same level with separate diamond objects. barely renders at 10fps
(http://img6.imageshack.us/img6/7921/pyramidseparate.png)
btw, do dynamically compiled objects have any disadvantage compared to static objects ?
Quote from: raft on August 06, 2010, 03:41:42 AM
btw, do dynamically compiled objects have any disadvantage compared to static objects ?
In desktop jPCT: yes! They are a whole lot slower than static objects. In desktop jPCT, static objects are compiled to display lists using indexed geometry, dynamic ones to vertex arrays using non-indexed geometry by default.
In AE, it depends...! Static objects are compiled to either vertex arrays or VBOs (depending on the setting in Config) using non-indexed geometry, dynamic objects are compiled to vertex arrays using indexed geometry. The behaviour of AE is solely based on the performance characteristics of my phone (and the emulator), i.e. non-indexed geometry is prefered over indexed for static objects, because it's faster (should actually be the other way round like on the desktop, but it's not...). Dynamic objects use indexed geometry, because it decreases update time more than it hurts render time. VBOs are not used for dynamic objects, because it simply doesn't work in my phone that way. However, the difference between vertex arrays and VBOs as well as between indexed and non-indexed geometry on Android is pretty small. VBOs do speed up rendering on modern phones (like N1 or Galaxy S) by around 5-15%...nothing to get crazy about. It doesn't do anything for last generation chipsets like mine.
i went one step forward and merged moveable tiles into one. moving is not done always but once started it's performed every frame for a while. i do movement by translating vertices via VertexController. even that performed much better than many single objects with lazy transformations.
overhead of many objects really kills this interpreted jvm. maybe JIT balances it. (right, i didn't upgraded to 2.2 yet, despite it asks me every one hour or so :o)