Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
EditorCamera.hpp
1#pragma once
2
3#include <glm/glm.hpp>
4#include <glm/gtc/quaternion.hpp>
5
6#include "GridRenderer.hpp"
7#include "GizmoRenderer.hpp"
8
9namespace Grindstone {
10 class BaseRenderer;
11 struct TransformComponent;
12 struct CameraComponent;
13
14 namespace GraphicsAPI {
15 class Framebuffer;
16 class CommandBuffer;
17 class DescriptorSet;
18 class DescriptorSetLayout;
19 class RenderTarget;
20 class DepthStencilTarget;
21 class RenderPass;
22 }
23
24 namespace Editor {
26 public:
29 uint64_t GetRenderOutput();
30 void Render(GraphicsAPI::CommandBuffer* commandBuffer);
31 void RenderPlayModeCamera(GraphicsAPI::CommandBuffer* commandBuffer);
32 void OffsetRotation(float pitch, float yaw);
33 void OffsetPosition(float x, float y, float z);
34 void ResizeViewport(uint32_t width, uint32_t height);
35 void UpdateProjectionMatrix();
36 void UpdateViewMatrix();
37 glm::mat4& GetProjectionMatrix();
38 glm::mat4& GetViewMatrix();
39 BaseRenderer* GetRenderer() const;
40 private:
41 glm::vec3 GetForward() const;
42 glm::vec3 GetRight() const;
43 glm::vec3 GetUp() const;
44
45 GizmoRenderer gizmoRenderer;
46 GridRenderer gridRenderer;
47 GraphicsAPI::RenderTarget* renderTarget = nullptr;
48 GraphicsAPI::DepthStencilTarget* depthTarget = nullptr;
49 GraphicsAPI::RenderPass* renderPass = nullptr;
50 GraphicsAPI::RenderPass* gizmoRenderPass = nullptr;
51 GraphicsAPI::DescriptorSetLayout* descriptorSetLayout = nullptr;
52 GraphicsAPI::Framebuffer* framebuffer = nullptr;
53 GraphicsAPI::DescriptorSet* descriptorSet = nullptr;
54 BaseRenderer* renderer = nullptr;
55 glm::mat4 projection;
56 glm::mat4 view;
57 glm::vec3 position = glm::vec3();
58 glm::vec3 eulerAngles = glm::vec3();
59 glm::quat rotation = glm::quat();
60 uint32_t width = 800;
61 uint32_t height = 600;
62 float fieldOfView = glm::radians(80.0f);
63 float nearPlaneDistance = 0.1f;
64 float farPlaneDistance = 150.f;
65 };
66 }
67}
Definition BaseRenderer.hpp:17
Definition EditorCamera.hpp:25
Definition GizmoRenderer.hpp:20
Definition GridRenderer.hpp:17
Definition CommandBuffer.hpp:21
Definition DepthStencilTarget.hpp:15
Definition DescriptorSetLayout.hpp:11
Definition DescriptorSet.hpp:11
Definition Framebuffer.hpp:19
Definition RenderPass.hpp:27
Definition RenderTarget.hpp:12