Re: Identifiying which derived class you have in code
On Sep 12, 5:46 am, "Alf P. Steinbach" <al...@start.no> wrote:
* Christopher:
I've seen various ways of doing this, but what I want is to
be able to take a base class pointer and know which derived
class to cast to.
For example I am going to make a base light class, that has
a position and intensity. A derived classes class may be a
point light which also has a falloff value.
The derived class has all the base class methods and data in
common, but has the additional falloff value get/set
methods.
Now my rendering interface takes a base light class pointer
Use a reference, unless you're planning on supporting
nullpointer argument.
, but the body needs to know if it is a point light or not,
so it can cast and get that fall off value.
Ways I've seen this done:
1) dynamic cast and check for NULL;
Well, we could potentially be going through 10 dynamic casts
or more before we know what we have. I heard it was rather
expensive to do that.
Very expensive. Each time you add a class, you have to go back
and modify the code. You can't get much more expensive than
that.
2) Put a static const int identifier in every derived class and check
for each in a switch, then you know what to cast to.
I don't know if this is really more efficient than 1.
It's not. Each time you add a class, you have to go back and
modify the code.
It also requires keeping track of all these IDs and which
are used already when you make a new derived class.
3) Any other sugestions?
As I understand it the problem is how to optimize the
rendering when the light is point with no fall off.
Just let the base class provide identification that it is a
point.
With that identification of point-ness in hand the rendering
code can branch to treatment as point or treatment as
fall-off.
For the 9 or 10 classes with fall-off, provide the fall-off
information through a common interface.
If this is the case, then the obvious design is to provide a
derived class (also abstract) with the additional functions.
Classes which support the added functionality derive from the
derived class, rather than directly from Light, and his
rendering code has one dynamic_cast, and an if on the results of
it, e.g.:
PointLight* pointLight
= dynamic_cast< PointLight* >( light ) ;
if ( pointLight != NULL ) {
// implementation using the PointLight interface...
} else {
// implementation using the original Light interface...
}
This interface can be present also in the base class, but the
rendering code can, based on identification of point-ness,
choose to use more efficient way then.
As always, remember to measure.
It might be that this attempt at optimization will have
little, no or even negative effect (such is difficult to
predict, measurement is needed).
It's rather obvious that maintaining code with 10 or more
dynamic_cast's is very expensive. I don't think you need to
measure that.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34