Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 9, 2008, 10:55:17 PM (16 years ago)
Author:
landauf
Message:

reduced the build-script of the core branch to the minimum (utils, core, orxonox + test objects)

Location:
code/branches/core/src/orxonox/objects
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core/src/orxonox/objects/Model.cc

    r790 r793  
    7171
    7272    void Model::registerAllVariables(){
    73       registerVar(&meshSrc_, meshSrc_.length() + 1, network::STRING);
     73//      registerVar(&meshSrc_, meshSrc_.length() + 1, network::STRING);
    7474    }
    7575}
  • code/branches/core/src/orxonox/objects/WorldEntity.cc

    r790 r793  
    163163    void WorldEntity::registerAllVariables()
    164164    {
    165       // register coordinates
     165/*      // register coordinates
    166166      registerVar( (void*) &(this->getPosition().x), sizeof(this->getPosition().x), network::DATA);
    167167      registerVar( (void*) &(this->getPosition().y), sizeof(this->getPosition().y), network::DATA);
     
    171171      registerVar( (void*) &(this->getOrientation().x), sizeof(this->getOrientation().x), network::DATA);
    172172      registerVar( (void*) &(this->getOrientation().y), sizeof(this->getOrientation().y), network::DATA);
    173       registerVar( (void*) &(this->getOrientation().z), sizeof(this->getOrientation().z), network::DATA);
     173      registerVar( (void*) &(this->getOrientation().z), sizeof(this->getOrientation().z), network::DATA);*/
    174174      // not needed at the moment, because we don't have prediction yet
    175175      /*// register velocity_
  • code/branches/core/src/orxonox/objects/WorldEntity.h

    r790 r793  
    1717namespace orxonox
    1818{
    19   class _OrxonoxExport WorldEntity : public BaseObject, public Tickable, public network::Synchronisable
     19  class _OrxonoxExport WorldEntity : public BaseObject, public Tickable//, public network::Synchronisable
    2020  {
    2121    public:
  • code/branches/core/src/orxonox/objects/test3.cc

    r790 r793  
    5151        SetConfigValue(value_bool_, 1);
    5252        SetConfigValue(value_string_, "This is a test");
    53         SetConfigValue(value_constchar_, "This is another test");
     53//        SetConfigValue(value_constchar_, "This is another test");
    5454        SetConfigValue(value_vector2_, Vector2(101, 202));
    5555        SetConfigValue(value_vector3_, Vector3(13, 26, 39));
Note: See TracChangeset for help on using the changeset viewer.