camera adjustments
This commit is contained in:
parent
0517fe07dd
commit
e65a111f1f
3 changed files with 8 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using namespace DirectX;
|
using namespace DirectX;
|
||||||
|
|
||||||
Camera::Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far)
|
Camera::Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far, float _moveSpeed)
|
||||||
{
|
{
|
||||||
transform.SetPosition(_x, _y, _z);
|
transform.SetPosition(_x, _y, _z);
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ Camera::Camera(float _x, float _y, float _z, float _aspect, float _fov, float _n
|
||||||
fovYRadians = XMConvertToRadians(_fov);
|
fovYRadians = XMConvertToRadians(_fov);
|
||||||
clipNear = _near;
|
clipNear = _near;
|
||||||
clipFar = _far;
|
clipFar = _far;
|
||||||
|
moveSpeed = _moveSpeed;
|
||||||
|
|
||||||
UpdateViewMatrix();
|
UpdateViewMatrix();
|
||||||
UpdateProjectionMatrix();
|
UpdateProjectionMatrix();
|
||||||
|
@ -100,8 +101,8 @@ void Camera::ReadInput(float _dt)
|
||||||
if (input.KeyDown(VK_SHIFT)) modify *= 2.0f;
|
if (input.KeyDown(VK_SHIFT)) modify *= 2.0f;
|
||||||
if (input.KeyDown(VK_CONTROL)) modify /= 2.0f;
|
if (input.KeyDown(VK_CONTROL)) modify /= 2.0f;
|
||||||
|
|
||||||
transform.TranslateRelative(moveLat * _dt * modify, 0, moveLong * _dt * modify);
|
transform.TranslateRelative(moveLat * _dt * modify * moveSpeed, 0, moveLong * _dt * modify * moveSpeed);
|
||||||
transform.TranslateAbsolute(0, moveVert * _dt * modify, 0);
|
transform.TranslateAbsolute(0, moveVert * _dt * modify * moveSpeed, 0);
|
||||||
|
|
||||||
if (input.MouseLeftDown())
|
if (input.MouseLeftDown())
|
||||||
{
|
{
|
||||||
|
|
3
Camera.h
3
Camera.h
|
@ -6,7 +6,7 @@
|
||||||
class Camera
|
class Camera
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far);
|
Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far, float _moveSpeed);
|
||||||
~Camera();
|
~Camera();
|
||||||
|
|
||||||
void Update(float _dt);
|
void Update(float _dt);
|
||||||
|
@ -23,6 +23,7 @@ public:
|
||||||
void SetFarClip(float _far);
|
void SetFarClip(float _far);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
float moveSpeed;
|
||||||
float aspect;
|
float aspect;
|
||||||
float fovYRadians;
|
float fovYRadians;
|
||||||
float clipNear;
|
float clipNear;
|
||||||
|
|
4
Game.cpp
4
Game.cpp
|
@ -34,7 +34,7 @@ Game::Game(HINSTANCE hInstance)
|
||||||
CreateConsoleWindow(500, 120, 32, 120);
|
CreateConsoleWindow(500, 120, 32, 120);
|
||||||
printf("Console window created successfully. Feel free to printf() here.\n");
|
printf("Console window created successfully. Feel free to printf() here.\n");
|
||||||
#endif
|
#endif
|
||||||
camera = std::make_shared<Camera>(0.0f, 0.0f, -20.0f, (float)width / height, 60, 0.01f, 1000.0f);
|
camera = std::make_shared<Camera>(0.0f, 0.0f, -10.0f, (float)width / height, 60, 0.01f, 1000.0f, 5.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
@ -226,7 +226,7 @@ void Game::CreateBasicGeometry()
|
||||||
|
|
||||||
for (int i = 0; i < entities.size(); ++i)
|
for (int i = 0; i < entities.size(); ++i)
|
||||||
{
|
{
|
||||||
entities[i]->GetTransform()->SetPosition((-(int)(entities.size() / 2) + i) * 5, 0, 0);
|
entities[i]->GetTransform()->SetPosition((-(int)(entities.size() / 2) + i + 0.5f) * 2.5f, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
skybox = std::make_shared<Sky>(
|
skybox = std::make_shared<Sky>(
|
||||||
|
|
Reference in a new issue