Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently working on a 2D game project and I want to switch from Delphi to C++.

In Delphi, I could declare an array which had the type of a class Entity, and I could put Entitys as well as objects of classes which are derived from Entity into it.

This would be very important for me, as it seems logical that all entities should be stored and managed in one place.

  • Is this possible in C++?
  • (Why not if it is in Delphi?)

  • What other choices to achieve something similar do I have?

I would need to do something like below:

#include <vector>
using namespace std;

class Entity
{
public:
 int id;
};

class Camera : Entity
{
public:
 int speed;
};

int main()
{
 Entity point;
 Camera camera;

 vector<Entity> vec;

 vec.push_back( point );
 vec.push_back( camera ); //Why can't I do that?
}

I hope I have made myself clear enough and I'd really appreciate your help

share|improve this question
One question comes to my mind..: do you -have- to switch to C++, or do you -want- to switch? If the former is true, I'd recommend to stay with Delphi. You will run into many subtleties of the 'naked' C++ from which the one described in this question is rather harmless. C++ is a very powerful language with many amazing features - but, I am sorry for this in advance, only if beeing used by skilled and experienced experts. I am writing this as somebody who has spent years with industrial software development in C++ and still did not stop to discover the backyards of the language... – Paul Michalik Nov 1 '10 at 9:59

4 Answers

Use a boost::ptr_vector<Entity> to store polymorphic objects, or a container of smart pointers, e.g. vector<boost::shared_ptr<Entity> >, if you need to share/move them elsewhere.

share|improve this answer

...Because (without further modifiers) all C++ types are value types, speaking in terms of Delphi or C#. You are basically doing this:

 point = camera;

This statement invokes the compiler generated assignment operator:

Entity& Entity::operator(const Entity& pOther) ...

This works, since const Camera& is convertible to const Entity&. But inside the assignment there is no information about the 'Camera' part of the object, the pOther gets 'sliced' into Entity object. You get the required behaviour by telling the C++ compliler that you want to treat the objects as reference types (pointers):

int main() 
{ 
 vector<std::shared_ptr<Entity> > vec; 

 vec.push_back( std::shared_ptr<Entity>(new Point) ); 
 vec.push_back( std::shared_ptr<Entity>(new Camera) );
}
share|improve this answer

Your problem is that you are mixing the way Delphi and C++ deal with objects.

In C++ case a class instance can be used in three ways:

  • as a value
  • as a reference
  • as a pointer

Only the two last ways express the same behaviour as you would expect from Delphi code.

In your example, you are creating value objects, this means that when you try to assign a Camera to an Entity, the sub part of Entity that belongs to Camera gets copied, but nothing else.

You should change your code to use pointers instead,

int main()
{
 Entity* point = new Entity;
 Camera* camera = new Camera;

 vector<Entity*> vec;

 vec.push_back( point );
 vec.push_back( camera );

 // don't forget to delete them, when you're done with the list
 for (vector<Entity*>::iterator iter = vec.begin(); iter != vec.end(); ++iter)
     delete (*iter);
}
enter code here

To avoid messing with pointers directly, a more modern C++ idiom is to make use of smart pointers. As shown by paul_71's answer.

share|improve this answer

I guess you are looking for C++ templates.

share|improve this answer
3  
How would templates help? Fred wants to store objects of two different types (related by inheritance). – Roger Pate Oct 30 '10 at 11:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.