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
|
|
|
#include <engine/shared/config.h>
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <base/math.h>
|
|
|
|
#include <game/collision.h>
|
|
|
|
#include <game/client/gameclient.h>
|
|
|
|
#include <game/client/component.h>
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "camera.h"
|
|
|
|
#include "controls.h"
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CCamera::CCamera()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2011-03-12 17:07:57 +00:00
|
|
|
m_CamType = CAMTYPE_UNDEFINED;
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CCamera::OnRender()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
|
|
|
//vec2 center;
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Zoom = 1.0f;
|
2008-10-14 12:11:42 +00:00
|
|
|
|
|
|
|
// update camera center
|
2011-03-12 17:07:57 +00:00
|
|
|
if(m_pClient->m_Snap.m_SpecInfo.m_Active && !m_pClient->m_Snap.m_SpecInfo.m_UsePosition)
|
2010-09-19 14:00:46 +00:00
|
|
|
{
|
2011-03-12 17:07:57 +00:00
|
|
|
if(m_CamType != CAMTYPE_SPEC)
|
2010-09-19 14:12:18 +00:00
|
|
|
{
|
2011-03-12 17:07:57 +00:00
|
|
|
m_pClient->m_pControls->m_MousePos = m_PrevCenter;
|
2010-09-19 14:12:18 +00:00
|
|
|
m_pClient->m_pControls->ClampMousePos();
|
2011-03-12 17:07:57 +00:00
|
|
|
m_CamType = CAMTYPE_SPEC;
|
2010-09-19 14:12:18 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
m_Center = m_pClient->m_pControls->m_MousePos;
|
2010-09-19 14:00:46 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
else
|
|
|
|
{
|
2011-03-12 17:07:57 +00:00
|
|
|
if(m_CamType != CAMTYPE_PLAYER)
|
2010-09-19 14:00:46 +00:00
|
|
|
{
|
|
|
|
m_pClient->m_pControls->ClampMousePos();
|
2011-03-12 17:07:57 +00:00
|
|
|
m_CamType = CAMTYPE_PLAYER;
|
2010-09-19 14:00:46 +00:00
|
|
|
}
|
2011-03-10 16:57:15 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 CameraOffset(0, 0);
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2011-03-10 16:57:15 +00:00
|
|
|
float l = length(m_pClient->m_pControls->m_MousePos);
|
2008-08-27 15:48:50 +00:00
|
|
|
if(l > 0.0001f) // make sure that this isn't 0
|
2011-03-10 16:57:15 +00:00
|
|
|
{
|
|
|
|
float DeadZone = g_Config.m_ClMouseDeadzone;
|
|
|
|
float FollowFactor = g_Config.m_ClMouseFollowfactor/100.0f;
|
|
|
|
float OffsetAmount = max(l-DeadZone, 0.0f) * FollowFactor;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CameraOffset = normalize(m_pClient->m_pControls->m_MousePos)*OffsetAmount;
|
2011-03-10 16:57:15 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2011-03-12 17:07:57 +00:00
|
|
|
if(m_pClient->m_Snap.m_SpecInfo.m_Active)
|
|
|
|
m_Center = m_pClient->m_Snap.m_SpecInfo.m_Position + CameraOffset;
|
2011-03-10 16:57:15 +00:00
|
|
|
else
|
|
|
|
m_Center = m_pClient->m_LocalCharacterPos + CameraOffset;
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2011-03-12 17:07:57 +00:00
|
|
|
|
|
|
|
m_PrevCenter = m_Center;
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|