Last change
on this file since 3726 was
3681,
checked in by bensch, 20 years ago
|
orxonox/branches/textEngine: merged trunk here.
merged with command:
svn merge ../trunk textEngine -r 3467:HEAD
no conflicts
|
File size:
1.4 KB
|
Rev | Line | |
---|
[2096] | 1 | /*! |
---|
| 2 | \file camera.h |
---|
| 3 | \brief Viewpoint controlling class definitions |
---|
| 4 | */ |
---|
[2068] | 5 | |
---|
[3224] | 6 | #ifndef _CAMERA_H |
---|
| 7 | #define _CAMERA_H |
---|
[2068] | 8 | |
---|
[3681] | 9 | #include "p_node.h" |
---|
| 10 | #include "vector.h" |
---|
[2100] | 11 | |
---|
[2636] | 12 | class World; |
---|
[3681] | 13 | class CameraTarget; |
---|
[2100] | 14 | |
---|
[3681] | 15 | enum ViewMode{VIEW_NORMAL, VIEW_BEHIND, VIEW_FRONT, VIEW_LEFT, VIEW_RIGHT, VIEW_TOP}; |
---|
| 16 | |
---|
[2096] | 17 | //! Camera |
---|
| 18 | /** |
---|
[3681] | 19 | This class controls the viewpoint from which the World is rendered. |
---|
[2096] | 20 | */ |
---|
[3681] | 21 | class Camera : public PNode |
---|
| 22 | { |
---|
| 23 | private: |
---|
| 24 | CameraTarget* target; //!< The Target of the Camera (where this Camera Looks at) |
---|
[2551] | 25 | |
---|
[3681] | 26 | float fovy; //!< The field of view Angle (in degrees). |
---|
| 27 | float aspectRatio; //!< The aspect ratio (width / height). |
---|
| 28 | float nearClip; //!< The near clipping plane. |
---|
| 29 | float farClip; //!< The far clipping plane. |
---|
[2551] | 30 | |
---|
[3681] | 31 | Vector toRelCoor; |
---|
| 32 | float toFovy; |
---|
[2551] | 33 | |
---|
[3681] | 34 | public: |
---|
| 35 | Camera(void); |
---|
| 36 | virtual ~Camera(void); |
---|
[2068] | 37 | |
---|
[3681] | 38 | void lookAt(PNode* target); |
---|
| 39 | PNode* getTarget(); |
---|
| 40 | |
---|
| 41 | void setAspectRatio(float aspectRatio); |
---|
| 42 | void setFovy(float fovy); |
---|
| 43 | void setClipRegion(float nearClip, float farClip); |
---|
| 44 | |
---|
| 45 | void setViewMode(ViewMode mode); |
---|
| 46 | void tick(float dt); |
---|
| 47 | void apply (void); |
---|
| 48 | }; |
---|
| 49 | |
---|
| 50 | //! A CameraTarget is where the Camera is looking at. |
---|
| 51 | class CameraTarget : public PNode |
---|
| 52 | { |
---|
| 53 | friend class Camera; //! The CameraTarget is a friend of Camera. noone else needs a CameraTarget, so noone else can create it. |
---|
[2551] | 54 | |
---|
[3681] | 55 | private: |
---|
| 56 | CameraTarget(void); |
---|
[2636] | 57 | |
---|
[2068] | 58 | public: |
---|
[3681] | 59 | virtual ~CameraTarget(void); |
---|
| 60 | }; |
---|
[2068] | 61 | |
---|
| 62 | |
---|
[3224] | 63 | #endif /* _CAMERA_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.