Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10319 in orxonox.OLD


Ignore:
Timestamp:
Jan 24, 2007, 2:04:05 AM (17 years ago)
Author:
patrick
Message:

injected silvans patch

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/script_engine/script.cc

    r9916 r10319  
    129129   }
    130130
     131   printf("SCRIPT : ERROR: while loading file %s \n",filename.c_str());
    131132   return false;
    132133 }
  • trunk/src/story_entities/game_world.cc

    r10314 r10319  
    6565                        addMethod("setPlaymode", Executor1<GameWorld, lua_State*,const std::string&>(&GameWorld::setPlaymode))
    6666                        ->addMethod("setSoundtrack", Executor1<GameWorld, lua_State*, const std::string&>(&GameWorld::setSoundtrack))
     67                        ->addMethod("getStoryID", Executor0ret<StoryEntity, lua_State*, int>(&StoryEntity::getStoryID))
     68                        ->addMethod("setNextStoryName", Executor1ret<StoryEntity, lua_State*, bool, const std::string&>(&StoryEntity::setNextStoryName))
     69                        ->addMethod("stop", Executor0ret<GameWorld, lua_State*, bool>(&GameWorld::stop))
    6770                       );
    6871
     
    305308  if (this->dataTank->music != NULL)
    306309    this->dataTank->music->play();
     310
     311  PNode::getNullParent()->updateNode(0.01);
     312  PNode::getNullParent()->updateNode(0.01);
     313
    307314
    308315  while( this->bRunning) /* @todo implement pause */
  • trunk/src/story_entities/story_entity.cc

    r9869 r10319  
    132132  this->nextStoryID = nextStoryID;
    133133}
     134
     135
     136/**
     137 * sets the id of the next story entity by name
     138 * @param nextStoryName the story name of the next StoryEntity
     139 */
     140bool StoryEntity::setNextStoryName(const std::string& nextStoryName)
     141{
     142  for (ObjectList<StoryEntity>::const_iterator it = StoryEntity::objectList().begin();
     143       it != StoryEntity::objectList().end();
     144       ++it)
     145    if( (*it)->getName().compare(nextStoryName) == 0)
     146     {
     147      this->setNextStoryID( (*it)->getStoryID() );
     148      return true;
     149     }
     150
     151     return false;
     152}
     153
    134154
    135155/**
  • trunk/src/story_entities/story_entity.h

    r9869 r10319  
    6767  const std::string& getLoadFile() const { return this->loadFile; }
    6868
     69  bool setNextStoryName(const std::string& nextStoryName);
    6970  void setNextStoryID(int nextStoryID);
    7071  /**  gets the story id of the current entity @returns story id */
  • trunk/src/world_entities/script_trigger.cc

    r9869 r10319  
    6363  addToScript = false;
    6464  this->activeOnCreation = false;
     65  target = NULL;
    6566
    6667  if(root != NULL)
Note: See TracChangeset for help on using the changeset viewer.