Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/story_entities/campaign_data.h @ 6512

Last change on this file since 6512 was 6512, checked in by bensch, 18 years ago

orxonox/trunk: loadParams is now virtual.
ALL THE CLASSES HAVE TO CALL

SuperClass::loadParams(root);

isntead of:
static_cast<SuperClass*>(this)→loadParams(root);

which was quite stupid anyways

File size: 834 bytes
Line 
1/*!
2 * @file campaign_data.h
3 * definition of the campaign data tank
4 */
5
6#ifndef _CAMPAIGN_DATA_H
7#define _CAMPAIGN_DATA_H
8
9
10#include "data_tank.h"
11#include <list>
12
13class StoryEntity;
14
15//! A class that contains the data of the Campaign object
16class CampaignData : public DataTank
17{
18
19  public:
20    CampaignData(const TiXmlElement* root);
21    virtual ~CampaignData();
22
23    virtual void loadParams(const TiXmlElement* root);
24
25    void loadData(const TiXmlElement* root);
26
27    void addStoryEntity(StoryEntity* se);
28
29    StoryEntity* getFirstLevel();
30    StoryEntity* getNextLevel();
31
32
33  private:
34    StoryEntity*                  currentEntity;                //!< reference to the currently used StoryEntity
35    std::list<StoryEntity*>       storyEntities;                //!< list of story entities
36};
37
38
39#endif /* _CAMPAIGN_DATA_H */
40
Note: See TracBrowser for help on using the repository browser.