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"
12
13#include <memory>
14
15namespace nc::ui::editor
16{
17// Flags to keep editor objects out of the way
18constexpr auto EditorObjectFlags = nc::Entity::Flags::Persistent |
21
22class 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
40auto BuildEditor(ecs::Ecs world,
41 ModuleProvider modules,
42 SystemEvents& events,
43 const EditorHotkeys& hotkeys = EditorHotkeys{}) -> std::unique_ptr<Editor>;
44} // namespace nc::ui::editor
Provides access to registered Modules.
Definition: ModuleProvider.h:15
Interface for higher-level entity and component operations with optional type access restriction.
Definition: Ecs.h:18
Definition: Editor.h:23
static constexpr Entity::flags_type Internal
Entity was created by the engine/editor.
Definition: Entity.h:36
static constexpr Entity::flags_type Persistent
Entity persists across scene load/unload.
Definition: Entity.h:33
static constexpr Entity::flags_type NoSerialize
Exclude the Entity and its children from scene serialization.
Definition: Entity.h:35
Signals for internal engine events.
Definition: Events.h:14
State for the editor.
Definition: EditorContext.h:39
Hotkeys for the editor.
Definition: EditorContext.h:20