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
5
namespace
Grindstone {
6
namespace
GraphicsAPI {
7
class
Core;
8
class
CommandBuffer;
9
}
10
11
namespace
Editor {
12
class
EditorCamera;
13
14
namespace
ImguiEditor {
15
class
ViewportPanel
{
16
public
:
17
ViewportPanel
();
18
~ViewportPanel
();
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
}
Grindstone::Editor::EditorCamera
Definition
EditorCamera.hpp:25
Grindstone::Editor::ImguiEditor::ViewportPanel
Definition
ViewportPanel.hpp:15
Grindstone::GraphicsAPI::CommandBuffer
Definition
CommandBuffer.hpp:21
Grindstone::Events::BaseEvent
Definition
BaseEvent.hpp:7
sources
code
Editor
ImguiEditor
ViewportPanel.hpp
Generated by
1.12.0