2008-10-12 19:55:54 -07:00
|
|
|
// Copyright (C) 2002-2008 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_FPS_H_INCLUDED__
|
|
|
|
#define __C_SCENE_NODE_ANIMATOR_CAMERA_FPS_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "ISceneNodeAnimatorCameraFPS.h"
|
|
|
|
#include "vector2d.h"
|
|
|
|
#include "SKeyMap.h"
|
|
|
|
#include "irrArray.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
class ICursorControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Special scene node animator for FPS cameras
|
|
|
|
class CSceneNodeAnimatorCameraFPS : public ISceneNodeAnimatorCameraFPS
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! Constructor
|
|
|
|
CSceneNodeAnimatorCameraFPS(gui::ICursorControl* cursorControl,
|
|
|
|
f32 rotateSpeed = 100.0f, f32 moveSpeed = 500.0f, f32 jumpSpeed=0.f,
|
|
|
|
SKeyMap* keyMapArray=0, u32 keyMapSize=0, bool noVerticalMovement=false);
|
|
|
|
|
|
|
|
//! Destructor
|
|
|
|
virtual ~CSceneNodeAnimatorCameraFPS();
|
|
|
|
|
|
|
|
//! Animates the scene node, currently only works on cameras
|
|
|
|
virtual void animateNode(ISceneNode* node, u32 timeMs);
|
|
|
|
|
|
|
|
//! Event receiver
|
|
|
|
virtual bool OnEvent(const SEvent& event);
|
|
|
|
|
|
|
|
//! Returns the speed of movement in units per millisecond
|
|
|
|
virtual f32 getMoveSpeed() const;
|
|
|
|
|
|
|
|
//! Sets the speed of movement in units per millisecond
|
|
|
|
virtual void setMoveSpeed(f32 moveSpeed);
|
|
|
|
|
|
|
|
//! Returns the rotation speed
|
|
|
|
virtual f32 getRotateSpeed() const;
|
|
|
|
|
|
|
|
//! Set the rotation speed
|
|
|
|
virtual void setRotateSpeed(f32 rotateSpeed);
|
|
|
|
|
|
|
|
//! Sets the keyboard mapping for this animator
|
|
|
|
//! \param keymap: an array of keyboard mappings, see SKeyMap
|
|
|
|
//! \param count: the size of the keyboard map array
|
|
|
|
virtual void setKeyMap(SKeyMap *map, u32 count);
|
|
|
|
|
|
|
|
//! Sets whether vertical movement should be allowed.
|
|
|
|
virtual void setVerticalMovement(bool allow);
|
|
|
|
|
|
|
|
//! This animator will receive events when attached to the active camera
|
|
|
|
virtual bool isEventReceiverEnabled() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns the type of this animator
|
|
|
|
virtual ESCENE_NODE_ANIMATOR_TYPE getType() const
|
|
|
|
{
|
|
|
|
return ESNAT_CAMERA_FPS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Creates a clone of this animator.
|
|
|
|
/** Please note that you will have to drop
|
|
|
|
(IReferenceCounted::drop()) the returned pointer after calling
|
|
|
|
this. */
|
|
|
|
virtual ISceneNodeAnimator* createClone(ISceneNode* node, ISceneManager* newManager=0);
|
|
|
|
|
|
|
|
struct SCamKeyMap
|
|
|
|
{
|
|
|
|
SCamKeyMap() {};
|
|
|
|
SCamKeyMap(s32 a, EKEY_CODE k) : action(a), keycode(k) {}
|
|
|
|
|
|
|
|
s32 action;
|
|
|
|
EKEY_CODE keycode;
|
|
|
|
};
|
|
|
|
|
2008-12-03 14:26:53 -08:00
|
|
|
//! Sets the keyboard mapping for this animator
|
|
|
|
/** Helper function for the clone method.
|
|
|
|
\param keymap the new keymap array */
|
|
|
|
void setKeyMap(const core::array<SCamKeyMap>& keymap);
|
|
|
|
|
|
|
|
private:
|
2008-10-12 19:55:54 -07:00
|
|
|
void allKeysUp();
|
|
|
|
|
|
|
|
gui::ICursorControl *CursorControl;
|
|
|
|
|
|
|
|
f32 MaxVerticalAngle;
|
|
|
|
|
|
|
|
f32 MoveSpeed;
|
|
|
|
f32 RotateSpeed;
|
|
|
|
f32 JumpSpeed;
|
|
|
|
|
|
|
|
s32 LastAnimationTime;
|
|
|
|
|
|
|
|
core::vector3df TargetVector;
|
|
|
|
core::array<SCamKeyMap> KeyMap;
|
|
|
|
core::position2d<f32> CenterCursor, CursorPos;
|
|
|
|
|
|
|
|
bool CursorKeys[6];
|
|
|
|
|
|
|
|
bool firstUpdate;
|
|
|
|
bool NoVerticalMovement;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif // __C_SCENE_NODE_ANIMATOR_CAMERA_FPS_H_INCLUDED__
|