Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5805


Ignore:
Timestamp:
Sep 27, 2009, 2:33:48 AM (15 years ago)
Author:
landauf
Message:
  • Enhanced SmartPtr: a) It stores now two pointers, one OrxonoxClass* (for reference counting) and one T* (for normal use). b) Incrementing the reference is now optional in the constructor for raw pointers. This is needed because Scene has a selfreference but should still be destroyable.
  • Changed BaseObject to store a SmartPtr to it's Scene instead of a normal pointer.
  • Changed setScene and getScene to deal directly with SmartPtr instead of a Scene* pointer to avoid casting-to-OrxonoxClass issues.
  • Fixed two problems with lost SceneManagers in CameraManger: a) added a SmartPtr to the Scene for the fallback camera b) added a call to GUIManager in the destructor to release the scene manager
  • Enabled unloading in GSLevel again (after years). Works if playing without bots.
Location:
code/branches/core5/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core5/src/libraries/core/BaseObject.h

    r5738 r5805  
    5353#include "OrxonoxClass.h"
    5454#include "Super.h"
     55#include "SmartPtr.h"
    5556
    5657namespace orxonox
     
    134135            inline BaseObject* getCreator() const { return this->creator_; }
    135136
    136             inline void setScene(Scene* scene) { this->scene_ = scene; }
    137             inline Scene* getScene() const { return this->scene_; }
     137            inline void setScene(const SmartPtr<Scene>& scene) { this->scene_ = scene; }
     138            inline const SmartPtr<Scene>& getScene() const { return this->scene_; }
    138139
    139140            inline void setGametype(Gametype* gametype)
     
    194195            Namespace*             namespace_;
    195196            BaseObject*            creator_;
    196             Scene*                 scene_;
     197            SmartPtr<Scene>        scene_;
    197198            Gametype*              gametype_;
    198199            Gametype*              oldGametype_;
  • code/branches/core5/src/libraries/core/OrxonoxClass.cc

    r5804 r5805  
    5555//            COUT(2) << "Warning: Destroyed object without destroy() (" << this->getIdentifier()->getName() << ")" << std::endl;
    5656
    57         assert(this->referenceCount_ == 0);
     57        assert(this->referenceCount_ <= 0);
    5858
    5959        delete this->metaList_;
  • code/branches/core5/src/libraries/core/OrxonoxClass.h

    r5804 r5805  
    135135            std::set<const Identifier*>* parents_;     //!< List of all parents of the object
    136136            MetaObjectList* metaList_;                 //!< MetaObjectList, containing all ObjectLists and ObjectListElements the object is registered in
    137             unsigned int referenceCount_;              //!< Counts the references from smart pointers to this object
     137            int referenceCount_;                       //!< Counts the references from smart pointers to this object
    138138            bool requestedDestruction_;                //!< Becomes true after someone called delete on this object
    139139
  • code/branches/core5/src/libraries/core/SmartPtr.h

    r5804 r5805  
    4242    {
    4343        public:
    44             inline SmartPtr() : pointer_(0)
    45             {
    46             }
    47 
    48             inline SmartPtr(T* pointer) : pointer_(pointer)
    49             {
    50                 if (this->pointer_)
    51                     this->pointer_->incrementReferenceCount();
    52             }
    53 
    54             inline SmartPtr(const SmartPtr& other) : pointer_(other.pointer_)
    55             {
    56                 if (this->pointer_)
    57                     this->pointer_->incrementReferenceCount();
     44            inline SmartPtr() : pointer_(0), base_(0)
     45            {
     46            }
     47
     48            inline SmartPtr(int) : pointer_(0), base_(0)
     49            {
     50            }
     51
     52            inline SmartPtr(T* pointer, bool bAddRef = true) : pointer_(pointer), base_(pointer)
     53            {
     54                if (this->base_ && bAddRef)
     55                    this->base_->incrementReferenceCount();
     56            }
     57
     58            inline SmartPtr(const SmartPtr& other) : pointer_(other.pointer_), base_(other.base_)
     59            {
     60                if (this->base_)
     61                    this->base_->incrementReferenceCount();
    5862            }
    5963
    6064            template <class O>
    61             inline SmartPtr(const SmartPtr<O>& other) : pointer_(other.get())
    62             {
    63                 if (this->pointer_)
    64                     this->pointer_->incrementReferenceCount();
     65            inline SmartPtr(const SmartPtr<O>& other) : pointer_(other.get()), base_(other.base_)
     66            {
     67                if (this->base_)
     68                    this->base_->incrementReferenceCount();
    6569            }
    6670
    6771            inline ~SmartPtr()
    6872            {
    69                 if (this->pointer_)
    70                     this->pointer_->decrementReferenceCount();
     73                if (this->base_)
     74                    this->base_->decrementReferenceCount();
     75            }
     76           
     77            inline const SmartPtr& operator=(int)
     78            {
     79                SmartPtr(0).swap(*this);
     80                return *this;
    7181            }
    7282
     
    96106
    97107            inline operator T*() const
    98             {std::cout << "(implizit)";
     108            {
    99109                return this->pointer_;
    100110            }
     
    117127            inline void swap(SmartPtr& other)
    118128            {
    119                 T* temp = this->pointer_;
    120                 this->pointer_ = other.pointer_;
    121                 other.pointer_ = temp;
     129                {
     130                    T* temp = this->pointer_;
     131                    this->pointer_ = other.pointer_;
     132                    other.pointer_ = temp;
     133                }
     134                {
     135                    OrxonoxClass* temp = this->base_;
     136                    this->base_ = other.base_;
     137                    other.base_ = temp;
     138                }
    122139            }
    123140
     
    129146        private:
    130147            T* pointer_;
     148            OrxonoxClass* base_;
    131149    };
    132150
  • code/branches/core5/src/modules/gamestates/GSLevel.cc

    r5799 r5805  
    242242    void GSLevel::unloadLevel()
    243243    {
    244         //////////////////////////////////////////////////////////////////////////////////////////
    245         // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO //
    246         //////////////////////////////////////////////////////////////////////////////////////////
    247         // Loader::unload(startFile_); // TODO: REACTIVATE THIS IF LOADER::UNLOAD WORKS PROPERLY /
    248         //////////////////////////////////////////////////////////////////////////////////////////
     244        Loader::unload(startFile_s);
    249245
    250246        delete startFile_s;
  • code/branches/core5/src/orxonox/CameraManager.cc

    r5738 r5805  
    5353    {
    5454        if (this->fallbackCamera_)
    55             this->fallbackCamera_->getSceneManager()->destroyCamera(this->fallbackCamera_);
     55            this->fallbackCameraScene_->getSceneManager()->destroyCamera(this->fallbackCamera_);
     56        GUIManager::getInstance().setCamera(0);
    5657    }
    5758
     
    7475        else if (this->fallbackCamera_)
    7576        {
    76             this->fallbackCamera_->getSceneManager()->destroyCamera(this->fallbackCamera_);
     77            this->fallbackCameraScene_->getSceneManager()->destroyCamera(this->fallbackCamera_);
    7778            this->fallbackCamera_ = 0;
    7879        }
     
    107108                // there are no more cameras, create a fallback
    108109                if (!this->fallbackCamera_)
    109                     this->fallbackCamera_ = camera->getScene()->getSceneManager()->createCamera(getUniqueNumberString());
     110                {
     111                    this->fallbackCameraScene_ = camera->getScene();
     112                    this->fallbackCamera_ = this->fallbackCameraScene_->getSceneManager()->createCamera(getUniqueNumberString());
     113                }
    110114                this->useCamera(this->fallbackCamera_);
    111115            }
  • code/branches/core5/src/orxonox/CameraManager.h

    r3370 r5805  
    4242#include "util/OgreForwardRefs.h"
    4343#include "util/Singleton.h"
     44#include "core/SmartPtr.h"
    4445
    4546namespace orxonox
     
    6768            Ogre::Viewport*       viewport_;
    6869            Ogre::Camera*         fallbackCamera_;
     70            SmartPtr<Scene>       fallbackCameraScene_;
    6971
    7072            static CameraManager* singletonPtr_s;
  • code/branches/core5/src/orxonox/Scene.cc

    r5738 r5805  
    5454        RegisterObject(Scene);
    5555
    56         this->setScene(this);
     56        this->setScene(SmartPtr<Scene>(this, false));
    5757        this->bShadows_ = true;
    5858
Note: See TracChangeset for help on using the changeset viewer.