Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 12, 2005, 3:22:01 PM (18 years ago)
Author:
patrick
Message:

network: added extended game_loader interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/util/loading/game_loader.cc

    r6000 r6063  
    4646/**
    4747 *  simple constructor
    48 */
     48 */
    4949GameLoader::GameLoader ()
    5050{
     
    5757/**
    5858 *  simple deconstructor
    59 */
     59 */
    6060GameLoader::~GameLoader ()
    6161{
     
    6969 *  this class is a singleton class
    7070 * @returns an instance of itself
    71 
    72    if you are unsure about singleton classes, check the theory out on the internet :)
    73 */
     71 *
     72 * if you are unsure about singleton classes, check the theory out on the internet :)
     73 */
    7474GameLoader* GameLoader::getInstance()
    7575{
     
    8181/**
    8282 *  initializes the GameLoader
    83 */
     83 */
    8484ErrorMessage GameLoader::init()
    8585{
     
    100100 * @param fileName to be loaded
    101101 * @returns the loaded campaign
    102 
    103    this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
    104 */
     102 *
     103 * this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
     104 */
    105105ErrorMessage GameLoader::loadCampaign(const char* fileName)
    106106{
     
    122122 * @param fileName to be loaded
    123123 * @returns the loaded campaign
    124 
    125    this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
    126  */
    127 ErrorMessage GameLoader::loadNetworkCampaign(const char* fileName)
     124 *
     125 * this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
     126 */
     127ErrorMessage GameLoader::loadNetworkCampaign(const char* fileName, int nodeState)
    128128{
    129129  ErrorMessage errorCode;
     
    131131  if (campaignName)
    132132  {
    133     this->currentCampaign = this->fileToNetworkCampaign(campaignName);
     133    this->currentCampaign = this->fileToNetworkCampaign(campaignName, nodeState);
    134134    delete[] campaignName;
    135135  }
    136 //   World* world0 = new World(DEBUG_WORLD_0);
    137 //   world0->setNextStoryID(WORLD_ID_GAMEEND);
    138 //   this->currentCampaign->addEntity(world0, WORLD_ID_2);
    139 }
    140 
     136}
    141137
    142138
     
    145141 * @param campaignID the identifier of the campaign.
    146142 * @returns error message if not able to do so.
    147 */
     143 */
    148144ErrorMessage GameLoader::loadDebugCampaign(Uint32 campaignID)
    149145{
     
    180176
    181177/**
    182   *  starts the current entity
    183   * @returns error code if this action has caused a error
    184 */
     178 *  starts the current entity
     179 * @returns error code if this action has caused a error
     180 */
    185181ErrorMessage GameLoader::start()
    186182{
     
    191187
    192188/**
    193   *  stops the current entity
    194   * @returns error code if this action has caused a error
    195 
    196     ATTENTION: this function shouldn't call other functions, or if so, they must return
    197     after finishing. If you ignore or forget to do so, the current entity is not able to
    198     terminate and it will run in the background or the ressources can't be freed or even
    199     worse: are freed and the program will end in a segmentation fault!
    200     hehehe, have ya seen it... :)
    201 */
     189 *  stops the current entity
     190 * @returns error code if this action has caused a error
     191 *
     192 *  ATTENTION: this function shouldn't call other functions, or if so, they must return
     193 *  after finishing. If you ignore or forget to do so, the current entity is not able to
     194 *  terminate and it will run in the background or the ressources can't be freed or even
     195 *  worse: are freed and the program will end in a segmentation fault!
     196 *  hehehe, have ya seen it... :)
     197 */
    202198void GameLoader::stop()
    203199{
     
    208204
    209205/**
    210   *  pause the current entity
    211   * @returns error code if this action has caused a error
    212 
    213    this pauses the current entity or passes this call forth to the running entity.
    214 */
     206 *  pause the current entity
     207 * @returns error code if this action has caused a error
     208 *
     209 * this pauses the current entity or passes this call forth to the running entity.
     210 */
    215211ErrorMessage GameLoader::pause()
    216212{
     
    222218
    223219/**
    224   *  resumes a pause
    225   * @returns error code if this action has caused a error
    226 
    227     this resumess the current entity or passes this call forth to the running entity.
    228 */
     220 *  resumes a pause
     221 * @returns error code if this action has caused a error
     222 *
     223 *  this resumess the current entity or passes this call forth to the running entity.
     224 */
    229225ErrorMessage GameLoader::resume()
    230226{
     
    248244 * @param fileName to be loaded
    249245 * @returns the loaded campaign
    250 
    251    this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
    252 */
     246 *
     247 * this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
     248 */
    253249Campaign* GameLoader::fileToCampaign(const char* fileName)
    254250{
     
    296292
    297293
    298 
    299294/**
    300295 *  reads a campaign definition file into a campaign class
    301296 * @param fileName to be loaded
    302297 * @returns the loaded campaign
    303 
    304    this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
    305  */
    306 Campaign* GameLoader::fileToNetworkCampaign(const char* fileName)
     298 *
     299 *  this will interprete the map/campaign files and recursivly load a tree of worlds/campaigns
     300 */
     301Campaign* GameLoader::fileToNetworkCampaign(const char* fileName, int nodeState)
    307302{
    308303  /* do not entirely load the campaign. just the current world
     
    389384
    390385/**
    391   \brief this changes to the next level
    392 */
     386 * \brief this changes to the next level
     387 */
    393388void GameLoader::nextLevel()
    394389{
     
    399394
    400395/**
    401   \brief change to the previous level - not implemented
    402 
    403   this propably useless
    404 */
     396 * change to the previous level - not implemented
     397 *
     398 * this propably useless
     399 */
    405400void GameLoader::previousLevel()
    406401{
Note: See TracChangeset for help on using the changeset viewer.