Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/objects/worldentities/Camera.cc @ 5734

Last change on this file since 5734 was 3280, checked in by rgrieder, 15 years ago

Merged most of the core4 revisions back to the trunk except for:

  • orxonox_cast
  • all the radical changes in the input library
  • Property svn:eol-style set to native
File size: 4.9 KB
RevLine 
[1505]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      Benjamin Knecht
26 *
27 */
28
29#include "Camera.h"
30
[3280]31#include <algorithm>
[2023]32#include <OgreCamera.h>
[1505]33#include <OgreSceneManager.h>
34#include <OgreSceneNode.h>
35
[2171]36#include "util/Exception.h"
[3280]37#include "util/StringUtils.h"
[1505]38#include "core/CoreIncludes.h"
[2019]39#include "core/ConfigValueIncludes.h"
40#include "objects/Scene.h"
[2073]41#include "CameraManager.h"
[1505]42
43namespace orxonox
44{
[2019]45    CreateFactory(Camera);
[1993]46
[2662]47    Camera::Camera(BaseObject* creator) : StaticEntity(creator)
[2019]48    {
49        RegisterObject(Camera);
[1505]50
[2662]51        if (!this->getScene())
52            ThrowException(AbortLoading, "Can't create Camera, no scene.");
53        if (!this->getScene()->getSceneManager())
54            ThrowException(AbortLoading, "Can't create Camera, no scene-manager given.");
55        if (!this->getScene()->getRootSceneNode())
56            ThrowException(AbortLoading, "Can't create Camera, no root-scene-node given.");
[1505]57
[2019]58        this->camera_ = this->getScene()->getSceneManager()->createCamera(getUniqueNumberString());
[2662]59        this->cameraNode_ = this->getScene()->getRootSceneNode()->createChildSceneNode();
60        this->attachNode(this->cameraNode_);
61        this->cameraNode_->attachObject(this->camera_);
[2019]62
63        this->bHasFocus_ = false;
64        this->bDrag_ = false;
65        this->nearClipDistance_ = 1;
66
67        this->setObjectMode(0x0);
68
69        this->setConfigValues();
70        this->configvaluecallback_changedNearClipDistance();
71    }
72
73    Camera::~Camera()
[1989]74    {
[2019]75        if (this->isInitialized())
76        {
77            this->releaseFocus();
[2662]78
79            this->cameraNode_->detachAllObjects();
80            this->getScene()->getSceneManager()->destroyCamera(this->camera_);
81
82            if (this->bDrag_)
83                this->detachNode(this->cameraNode_);
84
85            if (this->getScene()->getSceneManager())
86                this->getScene()->getSceneManager()->destroySceneNode(this->cameraNode_->getName());
[2019]87        }
[1989]88    }
[1505]89
[2019]90    void Camera::setConfigValues()
91    {
92        SetConfigValue(nearClipDistance_, 1.0f).callback(this, &Camera::configvaluecallback_changedNearClipDistance);
93    }
[1505]94
[2019]95    void Camera::configvaluecallback_changedNearClipDistance()
96    {
97        this->camera_->setNearClipDistance(this->nearClipDistance_);
98    }
[1505]99
[2019]100    void Camera::tick(float dt)
101    {
[2662]102        SUPER(Camera, tick, dt);
[1505]103
[2662]104        if (this->bDrag_)
105        {
106            // this stuff here may need some adjustments
[3280]107            float coeff = std::min(1.0f, 15.0f * dt);
[1505]108
[2757]109            Vector3 offset = this->getWorldPosition() - this->cameraNode_->_getDerivedPosition();
[2662]110            this->cameraNode_->translate(coeff * offset);
111
[2757]112            this->cameraNode_->setOrientation(Quaternion::Slerp(coeff, this->cameraNode_->_getDerivedOrientation(), this->getWorldOrientation(), true));
[2662]113            //this->cameraNode_->setOrientation(this->getWorldOrientation());
114        }
[2019]115    }
[1505]116
[2019]117    void Camera::requestFocus()
118    {
[2073]119        CameraManager::getInstance().requestFocus(this);
[2019]120    }
[1989]121
[2019]122    void Camera::releaseFocus()
123    {
[2073]124        CameraManager::getInstance().releaseFocus(this);
[2019]125    }
126
127    /**
128        what to do when camera loses focus (do not request focus in this function!!)
[2073]129        this is called by the CameraManager singleton class to notify the camera
[2019]130    */
131    void Camera::removeFocus()
132    {
133        this->bHasFocus_ = false;
134    }
135
[2662]136    void Camera::setFocus()
[2019]137    {
138        this->bHasFocus_ = true;
[2662]139        CameraManager::getInstance().useCamera(this->camera_);
[2019]140    }
[2662]141
142    void Camera::setDrag(bool bDrag)
143    {
144        if (bDrag != this->bDrag_)
145        {
146            this->bDrag_ = bDrag;
147
148            if (!bDrag)
149            {
150                this->attachNode(this->cameraNode_);
151                this->cameraNode_->setPosition(Vector3::ZERO);
152                this->cameraNode_->setOrientation(Quaternion::IDENTITY);
153            }
154            else
155            {
156                this->detachNode(this->cameraNode_);
157                this->cameraNode_->setPosition(this->getWorldPosition());
158                this->cameraNode_->setOrientation(this->getWorldOrientation());
159            }
160        }
161    }
[1505]162}
Note: See TracBrowser for help on using the repository browser.