ddnet/src/game/client/components/camera.h

57 lines
1.2 KiB
C
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#ifndef GAME_CLIENT_COMPONENTS_CAMERA_H
#define GAME_CLIENT_COMPONENTS_CAMERA_H
#include <base/vmath.h>
#include <game/bezier.h>
2010-05-29 07:25:38 +00:00
#include <game/client/component.h>
class CCamera : public CComponent
{
2020-09-18 16:45:42 +00:00
friend class CMenuBackground;
enum
{
2020-09-18 16:45:42 +00:00
CAMTYPE_UNDEFINED = -1,
CAMTYPE_SPEC,
CAMTYPE_PLAYER,
};
int m_CamType;
2020-10-18 14:51:26 +00:00
vec2 m_LastPos[NUM_DUMMIES];
vec2 m_PrevCenter;
2010-10-17 08:43:27 +00:00
bool m_Zooming;
CCubicBezier m_ZoomSmoothing;
float m_ZoomSmoothingStart;
float m_ZoomSmoothingEnd;
void ScaleZoom(float Factor);
void ChangeZoom(float Target);
float ZoomProgress(float CurrentTime) const;
2020-09-06 22:19:38 +00:00
float MinZoomLevel();
float MaxZoomLevel();
2010-05-29 07:25:38 +00:00
public:
vec2 m_Center;
2015-01-10 00:10:51 +00:00
bool m_ZoomSet;
2010-05-29 07:25:38 +00:00
float m_Zoom;
float m_ZoomSmoothingTarget;
2010-05-29 07:25:38 +00:00
CCamera();
virtual void OnRender();
// DDRace
2010-10-17 08:43:27 +00:00
virtual void OnConsoleInit();
2011-12-20 20:45:07 +00:00
virtual void OnReset();
private:
static void ConZoomPlus(IConsole::IResult *pResult, void *pUserData);
static void ConZoomMinus(IConsole::IResult *pResult, void *pUserData);
static void ConZoomReset(IConsole::IResult *pResult, void *pUserData);
2010-05-29 07:25:38 +00:00
};
#endif