Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ViewportPanel.hpp
1#pragma once
2
3#include <Common/Event/MouseEvent.hpp>
4
5namespace Grindstone {
6 namespace GraphicsAPI {
7 class Core;
8 class CommandBuffer;
9 }
10
11 namespace Editor {
12 class EditorCamera;
13
14 namespace ImguiEditor {
16 public:
19 void Render();
20 void RenderCamera(GraphicsAPI::CommandBuffer* commandBuffer);
21 EditorCamera* GetCamera() const;
22 private:
23 bool OnMouseButtonEvent(Grindstone::Events::BaseEvent* ev);
24 bool OnMouseMovedEvent(Grindstone::Events::BaseEvent* ev);
25 void DisplayCameraToPanel();
26 void HandleInput();
27 void DisplayOptions();
28 void HandleSelection();
29 bool isShowingPanel = true;
30 bool isMovingCamera = false;
31 EditorCamera* camera = nullptr;
32 uint32_t width = 1;
33 uint32_t height = 1;
34 uint16_t renderMode = 0;
35
36 int startDragX = 0;
37 int startDragY = 0;
38 };
39 }
40 }
41}
Definition EditorCamera.hpp:25
Definition ViewportPanel.hpp:15
Definition CommandBuffer.hpp:21
Definition BaseEvent.hpp:7