NcEngine
Editor.h
Go to the documentation of this file.
1
5
#pragma once
6
7
#include "
ncengine/ecs/Ecs.h
"
8
#include "ncengine/input/Input.h"
9
#include "
ncengine/module/ModuleProvider.h
"
10
#include "
ncengine/ui/ImGuiUtility.h
"
11
#include "
ncengine/ui/editor/EditorContext.h
"
12
13
#include <memory>
14
15
namespace
nc::ui::editor
16
{
17
// Flags to keep editor objects out of the way
18
constexpr
auto
EditorObjectFlags =
nc::Entity::Flags::Persistent
|
19
nc::Entity::Flags::Internal
|
20
nc::Entity::Flags::NoSerialize
;
21
22
class
Editor
23
{
24
public
:
25
explicit
Editor
(
const
EditorContext
& ctx) noexcept
26
: m_ctx{ctx} {}
27
28
virtual
~Editor
() =
default
;
29
virtual
void
Draw(
ecs::Ecs
world) = 0;
30
31
auto
GetContext()
const
noexcept
->
const
EditorContext
&
32
{
33
return
m_ctx;
34
}
35
36
protected
:
37
EditorContext
m_ctx;
38
};
39
40
auto
BuildEditor(
ecs::Ecs
world,
41
ModuleProvider
modules,
42
SystemEvents
& events,
43
const
EditorHotkeys
& hotkeys =
EditorHotkeys
{}) -> std::unique_ptr<Editor>;
44
}
// namespace nc::ui::editor
Ecs.h
EditorContext.h
ImGuiUtility.h
ModuleProvider.h
nc::ModuleProvider
Provides access to registered Modules.
Definition:
ModuleProvider.h:15
nc::ecs::EcsInterface
Interface for higher-level entity and component operations with optional type access restriction.
Definition:
Ecs.h:18
nc::ui::editor::Editor
Definition:
Editor.h:23
nc::Entity::Flags::Internal
static constexpr Entity::flags_type Internal
Entity was created by the engine/editor.
Definition:
Entity.h:36
nc::Entity::Flags::Persistent
static constexpr Entity::flags_type Persistent
Entity persists across scene load/unload.
Definition:
Entity.h:33
nc::Entity::Flags::NoSerialize
static constexpr Entity::flags_type NoSerialize
Exclude the Entity and its children from scene serialization.
Definition:
Entity.h:35
nc::SystemEvents
Signals for internal engine events.
Definition:
Events.h:14
nc::ui::editor::EditorContext
State for the editor.
Definition:
EditorContext.h:39
nc::ui::editor::EditorHotkeys
Hotkeys for the editor.
Definition:
EditorContext.h:20
include
ncengine
ui
editor
Editor.h
Generated by
1.9.4