2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __C_SCENE_NODE_ANIMATOR_CAMERA_MAYA_H_INCLUDED__
|
|
|
|
#define __C_SCENE_NODE_ANIMATOR_CAMERA_MAYA_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "ISceneNodeAnimatorCameraMaya.h"
|
|
|
|
#include "ICameraSceneNode.h"
|
|
|
|
#include "vector2d.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
class ICursorControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Special scene node animator for FPS cameras
|
|
|
|
/** This scene node animator can be attached to a camera to make it act
|
|
|
|
like a 3d modeling tool camera
|
|
|
|
*/
|
|
|
|
class CSceneNodeAnimatorCameraMaya : public ISceneNodeAnimatorCameraMaya
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//! Constructor
|
|
|
|
CSceneNodeAnimatorCameraMaya(gui::ICursorControl* cursor, f32 rotateSpeed = -1500.f,
|
|
|
|
f32 zoomSpeed = 200.f, f32 translationSpeed = 1500.f, f32 distance=70.f);
|
|
|
|
|
|
|
|
//! Destructor
|
|
|
|
virtual ~CSceneNodeAnimatorCameraMaya();
|
|
|
|
|
|
|
|
//! Animates the scene node, currently only works on cameras
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void animateNode(ISceneNode* node, u32 timeMs) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Event receiver
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool OnEvent(const SEvent& event) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns the speed of movement in units per millisecond
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual f32 getMoveSpeed() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets the speed of movement in units per millisecond
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setMoveSpeed(f32 moveSpeed) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns the rotation speed
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual f32 getRotateSpeed() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the rotation speed
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setRotateSpeed(f32 rotateSpeed) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns the zoom speed
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual f32 getZoomSpeed() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the zoom speed
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setZoomSpeed(f32 zoomSpeed) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns the current distance, i.e. orbit radius
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual f32 getDistance() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the distance
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setDistance(f32 distance) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the minimal distance to the camera target for zoom
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setTargetMinDistance(f32 minDistance) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns the minimal distance to the camera target for zoom
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual f32 getTargetMinDistance() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! This animator will receive events when attached to the active camera
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool isEventReceiverEnabled() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns type of the scene node
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ESCENE_NODE_ANIMATOR_TYPE getType() const IRR_OVERRIDE
|
2019-12-12 17:32:41 +01:00
|
|
|
{
|
|
|
|
return ESNAT_CAMERA_MAYA;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Creates a clone of this animator.
|
|
|
|
/** Please note that you will have to drop
|
|
|
|
(IReferenceCounted::drop()) the returned pointer after calling
|
|
|
|
this. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ISceneNodeAnimator* createClone(ISceneNode* node, ISceneManager* newManager=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Writes attributes of the scene node animator.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Reads attributes of the scene node animator.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void updateMousePos();
|
|
|
|
void allKeysUp();
|
|
|
|
void animate();
|
|
|
|
bool isMouseKeyDown(s32 key) const;
|
|
|
|
|
|
|
|
bool MouseKeys[3];
|
|
|
|
|
|
|
|
gui::ICursorControl *CursorControl;
|
|
|
|
scene::ICameraSceneNode* OldCamera;
|
|
|
|
core::vector3df OldTarget;
|
|
|
|
core::vector3df LastCameraTarget; // to find out if the camera target was moved outside this animator
|
|
|
|
core::position2df RotateStart;
|
|
|
|
core::position2df ZoomStart;
|
|
|
|
core::position2df TranslateStart;
|
|
|
|
core::position2df MousePos;
|
|
|
|
f32 TargetMinDistance;
|
|
|
|
f32 ZoomSpeed;
|
|
|
|
f32 RotateSpeed;
|
|
|
|
f32 TranslateSpeed;
|
|
|
|
f32 CurrentZoom;
|
|
|
|
f32 RotX, RotY;
|
|
|
|
bool Zooming;
|
|
|
|
bool Rotating;
|
|
|
|
bool Moving;
|
|
|
|
bool Translating;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|