#pragma once #include "src/object-type.hpp" #include "src/object-id.hpp" #include #include #include namespace Corrade::Containers { template class BasicStringView; using StringView = BasicStringView; } // namespace Corrade::Containers namespace floormat { struct world; struct global_coords; struct object; struct anim_atlas; struct vobj_info; struct app; #if defined __clang__ || defined __CLION_IDE__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wweak-vtables" #endif struct vobj_factory { vobj_factory(); virtual ~vobj_factory() noexcept; virtual const vobj_info& info() const = 0; virtual object_type type() const = 0; virtual std::shared_ptr make(world& w, object_id id, global_coords pos) const = 0; StringView name() const; StringView descr() const; std::shared_ptr atlas() const; }; #if defined __clang__ || defined __CLION_IDE__ #pragma clang diagnostic pop #endif struct vobj_editor final { struct vobj_ final { StringView name, descr; std::unique_ptr factory; }; vobj_editor(); void select_tile(const vobj_& type); void clear_selection(); const vobj_* get_selected() const; const vobj_* get_type(StringView name); bool is_item_selected(const vobj_& x) const; bool is_anything_selected() const; static void place_tile(world& w, global_coords pos, const vobj_* x, app& a); auto cbegin() const noexcept { return _types.cbegin(); } auto cend() const noexcept { return _types.cend(); } auto begin() const noexcept { return _types.cbegin(); } auto end() const noexcept { return _types.cend(); } private: static std::map make_vobj_type_map(); std::map _types = make_vobj_type_map(); const vobj_* _selected = nullptr; }; } // namespace floormat