WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   Improve performance with large number of onthefly objects? (https://forum.worldviz.com/showthread.php?t=1463)

Fox5 04-26-2008 08:17 PM

Improve performance with large number of onthefly objects?
 
Hey all,

I'm currently working with a file that attempts to render 20000+ on the fly objects. (each about 12 polys) I'm currently just doing the onthefly drawing of the object once, storing it, and then copying it as needed. And performance is pretty bad.

The original development computer I was working on was a Pentium 4 with a Geforce FX 5200 and performance was hovering around 10fps. To test to see if it was the limited hardware causing the problem, I published an exe file (coming out to a ridiculous 3.05MB) and attempted to run it on a computer with a Radeon X1950XT and a Core 2 Duo. Performance was actually slightly worse, which leads me to believe that either (and perhaps both):
20,000+ objects is just too cpu intensive (no idea how I would reduce the load)
A 3.05MB exe file for something that only contains a few hundred lines of scripts does terrible things to the cache of a cpu

Either way, it would appear that the polygon budget isn't a limitation given that performance actually went down. So, given that, is there anything I can do to reduce the cpu load?
In fact, I'm sure it's cpu, as my cpu load spikes to max (on a single core) when running the app. My memory usage also spikes about 300MB.

Also, is it possible to add both onthefly objects (which stack with .startlayer) and static models (which stack with .addchild) to the same node and have them translate and scale together?

Thank you in advance.

farshizzo 04-28-2008 10:59 AM

20000 separate objects is definitely going to cause a slowdown on the CPU. Do you need all the polygons to be contained by a separate object? Your performance would drastically improve if you used one OTF object that contained all the polygons.

You can add any 3D object underneath another node by specifying the parent when you add it. For example, to add an OTF object under a node called root, use the following code:
Code:

otf = viz.endlayer(parent=root)

Fox5 04-28-2008 11:15 AM

Interesting, I've been using:
parent.startLayer(otherOnTheFlyObject)


Is there a difference between the two ways of establishing a parent-child hierarchy?

farshizzo 04-28-2008 11:19 AM

The code you are using is invalid and should not work. The only way of adding an OTF object to a parent is using the code I posted previously.

Fox5 04-28-2008 11:41 AM

The code I was using was:
.startLayer

However, I believe you're right that it shouldn't work. Doesn't throw an exception however.

Also, since they're all identical objects, I was using .copy() to copy the original onthefly object (assuming performance would be faster this way than doing another startlayer/endlayer), is there anyway to make the copies children of the original?

farshizzo 04-28-2008 11:46 AM

Are you saying that you want to create an object, modify it, then create a copy of it before the modification? If so, this is not possible. The copy command will create a copy of the object at its current state. You can create a master version of the object that is hidden, and use it for all copies.

Fox5 04-28-2008 05:16 PM

Quote:

Originally Posted by farshizzo (Post 5470)
Are you saying that you want to create an object, modify it, then create a copy of it before the modification? If so, this is not possible. The copy command will create a copy of the object at its current state. You can create a master version of the object that is hidden, and use it for all copies.

No, rather:
I want to create the original object.
I want to make n copies of it.
I want to make the copies children of the original.

Since they're all onthefly objects, is it possible besides the way you detailed (doing an identical startlayer/endlayer to create each object as a child of the original)

farshizzo 04-28-2008 05:19 PM

Yes, whenever you create an object you can specify the parent it will be attached to. If you want to copy an object underneath another object you would do the following:
Code:

child = node.copy(parent=node)


All times are GMT -7. The time now is 04:03 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC