1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include <boost/cstdint.hpp>
#include <SDL_keycode.h>
#include "TWController.h"
#include "Game/Camera.h"
#include "Map/Ground.h"
#include "Game/UI/MouseHandler.h"
#include "Rendering/GlobalRendering.h"
#include "System/Config/ConfigHandler.h"
#include "System/Log/ILog.h"
#include "System/myMath.h"
#include "System/Input/KeyInput.h"
CONFIG(int, TWScrollSpeed).defaultValue(10);
CONFIG(bool, TWEnabled).defaultValue(true);
CONFIG(float, TWFOV).defaultValue(45.0f);
CTWController::CTWController()
{
scrollSpeed = configHandler->GetInt("TWScrollSpeed") * 0.1f;
enabled = configHandler->GetBool("TWEnabled");
fov = configHandler->GetFloat("TWFOV");
UpdateVectors();
}
void CTWController::KeyMove(float3 move)
{
float3 flatForward=camera->forward;
flatForward.y=0;
flatForward.ANormalize();
move *= math::sqrt(move.z) * 200;
pos += (camera->right * move.x + flatForward * move.y) * scrollSpeed;
UpdateVectors();
}
void CTWController::MouseMove(float3 move)
{
move *= (1 + KeyInput::GetKeyModState(KMOD_SHIFT) * 3) * pixelSize;
float3 flatForward = camera->forward;
flatForward.y = 0;
flatForward.ANormalize();
pos += (camera->right * move.x - flatForward * move.y) * scrollSpeed;
UpdateVectors();
}
void CTWController::ScreenEdgeMove(float3 move)
{
if (mouse->lasty < globalRendering->viewSizeY / 3) {
camera->rot.y -= (move.x * globalRendering->lastFrameTime * 0.5f * 0.2f);
move.x = 0.0f;
}
KeyMove(move);
}
void CTWController::MouseWheelMove(float move)
{
camera->rot.x -= (move * 0.001f);
UpdateVectors();
}
void CTWController::UpdateVectors()
{
pos.x = Clamp(pos.x, 0.01f, gs->mapx * SQUARE_SIZE - 0.01f);
pos.z = Clamp(pos.z, 0.01f, gs->mapy * SQUARE_SIZE - 0.01f);
pos.y = CGround::GetHeightAboveWater(pos.x, pos.z, false);
camera->rot.x = Clamp(camera->rot.x, -PI * 0.4f, -0.1f);
dir.x = math::sin(camera->rot.y) * math::cos(camera->rot.x);
dir.y = math::sin(camera->rot.x);
dir.z = math::cos(camera->rot.y) * math::cos(camera->rot.x);
dir.ANormalize();
}
void CTWController::Update()
{
pixelSize = (camera->GetTanHalfFov() * 2.0f) / globalRendering->viewSizeY * (-camera->rot.x * 1500) * 2.0f;
}
float3 CTWController::GetPos() const
{
float dist = -camera->rot.x * 1500;
float3 cpos = pos - dir * dist;
if (cpos.y < CGround::GetHeightAboveWater(cpos.x, cpos.z, false) + 5)
cpos.y = CGround::GetHeightAboveWater(cpos.x, cpos.z, false) + 5;
return cpos;
}
void CTWController::SetPos(const float3& newPos)
{
pos = newPos;
UpdateVectors();
}
float3 CTWController::SwitchFrom() const
{
return pos;
}
void CTWController::SwitchTo(bool showText)
{
if (showText) {
LOG("Switching to Total War style camera");
}
}
void CTWController::GetState(StateMap& sm) const
{
CCameraController::GetState(sm);
}
bool CTWController::SetState(const StateMap& sm)
{
CCameraController::SetState(sm);
return true;
}
|