Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 12, 2010, 1:08:58 PM (14 years ago)
Author:
scheusso
Message:
  • merged network2 branch into presentation3 branch (lots of network traffic and cpu load improvements)
  • fixed network related bugs in BigExplosion
Location:
code/branches/presentation3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3

  • code/branches/presentation3/src/libraries/network/synchronisable/Synchronisable.h

    r7127 r7153  
    6565    };
    6666  }
     67 
     68  typedef uint8_t VariableID;
    6769
    6870  /**
     
    7274   * in an emulated bitset.
    7375   * Bit 1 to 31 store the size of the Data the synchronisable consumes in the stream
    74    * Bit 32 is a bool and defines whether the data is actually stored or is just filled up with 0
     76   * Bit 32 is a bool and defines whether the variables are stored in diff mode
    7577   * Byte 5 to 8: objectID_
    7678   * Byte 9 to 12: classID_
     
    7880   */
    7981  class _NetworkExport SynchronisableHeader{
     82    friend class SynchronisableHeaderLight;
    8083    private:
    81       uint8_t *data_;
     84      uint8_t* data_;
    8285    public:
    8386      SynchronisableHeader(uint8_t* data)
    8487        { data_ = data; }
    8588      inline static uint32_t getSize()
    86         { return 16; }
    87       inline uint32_t getDataSize() const
    88         { return (*(uint32_t*)data_) & 0x7FFFFFFF; } //only use the first 31 bits
    89       inline void setDataSize(uint32_t size)
    90         { *(uint32_t*)(data_) = (size & 0x7FFFFFFF) | (*(uint32_t*)(data_) & 0x80000000 ); }
    91       inline bool isDataAvailable() const
    92         { return ( (*(uint32_t*)data_) & 0x80000000 ) == 0x80000000; }
    93       inline void setDataAvailable( bool b)
    94         { *(uint32_t*)(data_) = (b << 31) | (*(uint32_t*)(data_) & 0x7FFFFFFF ); }
     89        { return 14; }
     90      inline uint16_t getDataSize() const
     91        { return (*(uint16_t*)data_) & 0x7FFF; } //only use the first 31 bits
     92      inline void setDataSize(uint16_t size)
     93        { *(uint16_t*)(data_) = (size & 0x7FFFFFFF) | (*(uint16_t*)(data_) & 0x8000 ); }
     94      inline bool isDiffed() const
     95        { return ( (*(uint16_t*)data_) & 0x8000 ) == 0x8000; }
     96      inline void setDiffed( bool b)
     97        { *(uint16_t*)(data_) = (b << 15) | (*(uint16_t*)(data_) & 0x7FFF ); }
    9598      inline uint32_t getObjectID() const
    96         { return *(uint32_t*)(data_+4); }
     99        { return *(uint32_t*)(data_+2); }
    97100      inline void setObjectID(uint32_t objectID_)
    98         { *(uint32_t*)(data_+4) = objectID_; }
     101        { *(uint32_t*)(data_+2) = objectID_; }
    99102      inline uint32_t getClassID() const
    100         { return *(uint32_t*)(data_+8); }
     103        { return *(uint32_t*)(data_+6); }
    101104      inline void setClassID(uint32_t classID_)
    102         { *(uint32_t*)(data_+8) = classID_; }
     105        { *(uint32_t*)(data_+6) = classID_; }
    103106      inline uint32_t getCreatorID() const
    104         { return *(uint32_t*)(data_+12); }
     107        { return *(uint32_t*)(data_+10); }
    105108      inline void setCreatorID(uint32_t creatorID_)
    106         { *(uint32_t*)(data_+12) = creatorID_; }
     109        { *(uint32_t*)(data_+10) = creatorID_; }
    107110      inline void operator=(SynchronisableHeader& h)
    108111        { memcpy(data_, h.data_, getSize()); }
    109112  };
    110113
     114    /**
     115   * @brief: stores information about a Synchronisable (light version)
     116   *
     117   * This class stores the information about a Synchronisable (objectID_, dataSize)
     118   * in an emulated bitset.
     119   * Bit 1 to 31 store the size of the Data the synchronisable consumes in the stream
     120   * Bit 32 is a bool and defines whether the variables are stored in diff mode
     121   * Byte 5 to 8: objectID_
     122   */
     123  class _NetworkExport SynchronisableHeaderLight{
     124    private:
     125      uint8_t* data_;
     126    public:
     127      SynchronisableHeaderLight(uint8_t* data)
     128        { data_ = data; }
     129      inline static uint32_t getSize()
     130        { return 6; }
     131      inline uint16_t getDataSize() const
     132        { return (*(uint16_t*)data_) & 0x7FFF; } //only use the first 31 bits
     133      inline void setDataSize(uint16_t size)
     134        { *(uint16_t*)(data_) = (size & 0x7FFFFFFF) | (*(uint16_t*)(data_) & 0x8000 ); }
     135      inline bool isDiffed() const
     136        { return ( (*(uint16_t*)data_) & 0x8000 ) == 0x8000; }
     137      inline void setDiffed( bool b)
     138        { *(uint16_t*)(data_) = (b << 15) | (*(uint16_t*)(data_) & 0x7FFF ); }
     139      inline uint32_t getObjectID() const
     140        { return *(uint32_t*)(data_+2); }
     141      inline void setObjectID(uint32_t objectID_)
     142        { *(uint32_t*)(data_+2) = objectID_; }
     143      inline void operator=(SynchronisableHeader& h)
     144        { memcpy(data_, h.data_, getSize()); }
     145  };
    111146
    112147  /**
     
    135170
    136171    void setSyncMode(uint8_t mode);
     172   
     173    inline uint32_t getNrOfVariables(){ return this->syncList_.size(); }
     174    inline uint32_t getVarSize( VariableID ID )
     175    { return this->syncList_[ID]->getSize(state_); }
    137176
    138177  protected:
     
    140179    template <class T> void registerVariable(T& variable, uint8_t mode=0x1, NetworkCallbackBase *cb=0, bool bidirectional=false);
    141180    template <class T> void registerVariable(std::set<T>& variable, uint8_t mode=0x1, NetworkCallbackBase *cb=0, bool bidirectional=false);
     181    template <class T> void unregisterVariable(T& var);
    142182
    143183    void setPriority(unsigned int freq){ objectFrequency_ = freq; }
     
    145185
    146186  private:
    147     uint32_t getData(uint8_t*& men, int32_t id, uint8_t mode=0x0);
     187    uint32_t getData(uint8_t*& mem, std::vector<uint32_t>& sizes, int32_t id, uint8_t mode);
    148188    uint32_t getSize(int32_t id, uint8_t mode=0x0);
    149189    bool updateData(uint8_t*& mem, uint8_t mode=0x0, bool forceCallback=false);
    150     bool isMyData(uint8_t* mem);
    151190    bool doSync(int32_t id, uint8_t mode=0x0);
    152191
     
    158197    uint32_t classID_;
    159198
    160     std::vector<SynchronisableVariableBase*> syncList;
    161     std::vector<SynchronisableVariableBase*> stringList;
     199    std::vector<SynchronisableVariableBase*> syncList_;
     200    std::vector<SynchronisableVariableBase*> stringList_;
    162201    uint32_t dataSize_; //size of all variables except strings
    163202    static uint8_t state_; // detemines wheter we are server (default) or client
     
    173212    if (bidirectional)
    174213    {
    175       syncList.push_back(new SynchronisableVariableBidirectional<T>(variable, mode, cb));
    176       this->dataSize_ += syncList.back()->getSize(state_);
     214      syncList_.push_back(new SynchronisableVariableBidirectional<T>(variable, mode, cb));
     215      this->dataSize_ += syncList_.back()->getSize(state_);
    177216    }
    178217    else
    179218    {
    180       syncList.push_back(new SynchronisableVariable<T>(variable, mode, cb));
     219      syncList_.push_back(new SynchronisableVariable<T>(variable, mode, cb));
    181220      if ( this->state_ == mode )
    182         this->dataSize_ += syncList.back()->getSize(state_);
     221        this->dataSize_ += syncList_.back()->getSize(state_);
    183222    }
     223  }
     224 
     225  template <class T> void Synchronisable::unregisterVariable(T& variable){
     226    std::vector<SynchronisableVariableBase*>::iterator it = syncList_.begin();
     227    while(it!=syncList_.end()){
     228      if( ((*it)->getReference()) == &variable ){
     229        this->dataSize_ -= (*it)->getSize(Synchronisable::state_);
     230        delete (*it);
     231        syncList_.erase(it);
     232        return;
     233      }
     234      else
     235        it++;
     236    }
     237    bool unregistered_nonexistent_variable = false;
     238    assert(unregistered_nonexistent_variable); //if we reach this point something went wrong:
     239    // the variable has not been registered before
    184240  }
    185241
     
    191247    else
    192248      sv = new SynchronisableVariable<std::set<T> >(variable, mode, cb);
    193     syncList.push_back(sv);
    194     stringList.push_back(sv);
     249    syncList_.push_back(sv);
     250    stringList_.push_back(sv);
    195251  }
    196252
    197253  template <> _NetworkExport void Synchronisable::registerVariable( std::string& variable, uint8_t mode, NetworkCallbackBase *cb, bool bidirectional);
    198254//   template <class T> _NetworkExport void Synchronisable::registerVariable<std::set<T> >( std::set<T>& variable, uint8_t mode, NetworkCallbackBase *cb, bool bidirectional);
     255  template <> _NetworkExport void Synchronisable::unregisterVariable( std::string& variable );
    199256
    200257
Note: See TracChangeset for help on using the changeset viewer.