mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 10:38:20 +00:00
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/* (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. */
|
|
#ifndef GAME_CLIENT_COMPONENTS_CAMERA_H
|
|
#define GAME_CLIENT_COMPONENTS_CAMERA_H
|
|
#include <base/vmath.h>
|
|
#include <game/bezier.h>
|
|
#include <game/client/component.h>
|
|
|
|
class CCamera : public CComponent
|
|
{
|
|
enum
|
|
{
|
|
CAMTYPE_UNDEFINED=-1,
|
|
CAMTYPE_SPEC,
|
|
CAMTYPE_PLAYER,
|
|
};
|
|
|
|
int m_CamType;
|
|
vec2 m_LastPos[2];
|
|
vec2 m_PrevCenter;
|
|
|
|
bool m_Zooming;
|
|
float m_ZoomSmoothingTarget;
|
|
CCubicBezier m_ZoomSmoothing;
|
|
float m_ZoomSmoothingStart;
|
|
float m_ZoomSmoothingEnd;
|
|
|
|
void ScaleZoom(float Factor);
|
|
void ChangeZoom(float Target);
|
|
float ZoomProgress(float CurrentTime) const;
|
|
|
|
public:
|
|
vec2 m_Center;
|
|
bool m_ZoomSet;
|
|
float m_Zoom;
|
|
|
|
CCamera();
|
|
virtual void OnRender();
|
|
|
|
// DDRace
|
|
|
|
virtual void OnConsoleInit();
|
|
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);
|
|
};
|
|
|
|
#endif
|