From c45004b73bb045328a724d1d860df6d1515af6d4 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 23 May 2025 13:51:10 +0200 Subject: lib: split out header files --- lib/src/turnsmm/enum_helpers.hpp | 39 ------------- lib/src/turnsmm/init.hpp | 14 ----- lib/src/turnsmm/participant.hpp | 91 ------------------------------- lib/src/turnsmm/private/participant_p.hpp | 36 ------------ lib/src/turnsmm/private/turn-order_p.hpp | 36 ------------ lib/src/turnsmm/turn-order.hpp | 89 ------------------------------ 6 files changed, 305 deletions(-) delete mode 100644 lib/src/turnsmm/enum_helpers.hpp delete mode 100644 lib/src/turnsmm/init.hpp delete mode 100644 lib/src/turnsmm/participant.hpp delete mode 100644 lib/src/turnsmm/private/participant_p.hpp delete mode 100644 lib/src/turnsmm/private/turn-order_p.hpp delete mode 100644 lib/src/turnsmm/turn-order.hpp (limited to 'lib/src/turnsmm') diff --git a/lib/src/turnsmm/enum_helpers.hpp b/lib/src/turnsmm/enum_helpers.hpp deleted file mode 100644 index 60b8cd7..0000000 --- a/lib/src/turnsmm/enum_helpers.hpp +++ /dev/null @@ -1,39 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2025 Felix Morgner - * SPDX-License-Identifier: LGPL-2.1-only - */ - -#ifndef TURNSMM_ENUM_HELPERS_HPP -#define TURNSMM_ENUM_HELPERS_HPP - -#include - -#include -#include - -#include - -#define TURNS_DECLARE_ENUM_VALUE_SPECIALIZATION(Enum) \ - template<> \ - class Value<::Turns::Enum> : public Glib::Value_Enum<::Turns::Enum> \ - { \ - public: \ - auto static value_type() -> GType; \ - } - -#define TURNS_DEFINE_VALUE_SPECIALIZATION(Enum, TurnsEnumName) \ - auto Value<::Turns::Enum>::value_type() -> GType \ - { \ - return ::turns_##TurnsEnumName##_get_type(); \ - } - -namespace Turns -{ - - template - auto constexpr enum_matches = - static_cast>(Wrapped) == static_cast>(Unwrapped); - -} // namespace Turns - -#endif \ No newline at end of file diff --git a/lib/src/turnsmm/init.hpp b/lib/src/turnsmm/init.hpp deleted file mode 100644 index c22b4c9..0000000 --- a/lib/src/turnsmm/init.hpp +++ /dev/null @@ -1,14 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2025 Felix Morgner - * SPDX-License-Identifier: LGPL-2.1-only - */ - -#ifndef TURNSMM_INIT_HPP -#define TURNSMM_INIT_HPP - -namespace Turns -{ - void init(void); -} - -#endif diff --git a/lib/src/turnsmm/participant.hpp b/lib/src/turnsmm/participant.hpp deleted file mode 100644 index 6dece0e..0000000 --- a/lib/src/turnsmm/participant.hpp +++ /dev/null @@ -1,91 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2025 Felix Morgner - * SPDX-License-Identifier: LGPL-2.1-only - */ - -#ifndef TURNSMM_PARTICIPANT_HPP -#define TURNSMM_PARTICIPANT_HPP - -#include "turns-participant.h" -#include "turnsmm/enum_helpers.hpp" - -#include -#include -#include -#include - -#include -#include - -namespace Turns -{ - - class Participant final : public Glib::Object - { - public: - using BaseClassType = TurnsParticipantClass; - using BaseObjectType = TurnsParticipant; - using CppClassType = class Participant_Class; - using CppObjectType = Participant; - - enum struct Disposition : guint - { - Neutral, - Friendly, - Hostile, - Secret, - }; - - auto static get_base_type() -> GType; - auto static get_type() -> GType; - - auto static create() -> Glib::RefPtr; - auto static create(Glib::ustring const & name, float priority, Disposition disposition) -> Glib::RefPtr; - - Participant(); - Participant(Glib::ustring const & name, float priority, Disposition disposition); - - [[nodiscard]] auto gobj() noexcept -> BaseObjectType *; - [[nodiscard]] auto gobj() const -> BaseObjectType const *; - [[nodiscard]] auto gobj_copy() noexcept -> BaseObjectType *; - - [[nodiscard]] auto get_active() const noexcept -> bool; - [[nodiscard]] auto get_defeated() const noexcept -> bool; - [[nodiscard]] auto get_disposition() const noexcept -> Disposition; - [[nodiscard]] auto get_id() const noexcept -> Glib::ustring; - [[nodiscard]] auto get_name() const -> Glib::ustring; - [[nodiscard]] auto get_priority() const noexcept -> float; - - auto set_active(bool value) noexcept -> void; - auto set_defeated(bool value) noexcept -> void; - auto set_disposition(Disposition value) noexcept -> void; - auto set_name(Glib::ustring const & value) noexcept -> void; - auto set_priority(float value) noexcept -> void; - - [[nodiscard]] auto property_active() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_active() noexcept -> Glib::PropertyProxy; - [[nodiscard]] auto property_defeated() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_defeated() noexcept -> Glib::PropertyProxy; - [[nodiscard]] auto property_disposition() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_disposition() noexcept -> Glib::PropertyProxy; - [[nodiscard]] auto property_name() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_name() noexcept -> Glib::PropertyProxy; - [[nodiscard]] auto property_priority() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_priority() noexcept -> Glib::PropertyProxy; - - protected: - friend Participant_Class; - - explicit Participant(BaseObjectType * gobj); - }; - -} // namespace Turns - -namespace Glib -{ - TURNS_DECLARE_ENUM_VALUE_SPECIALIZATION(Participant::Disposition); - - auto wrap(TurnsParticipant * object, bool copy = false) -> Glib::RefPtr; -} // namespace Glib - -#endif \ No newline at end of file diff --git a/lib/src/turnsmm/private/participant_p.hpp b/lib/src/turnsmm/private/participant_p.hpp deleted file mode 100644 index d0f4f0d..0000000 --- a/lib/src/turnsmm/private/participant_p.hpp +++ /dev/null @@ -1,36 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2025 Felix Morgner - * SPDX-License-Identifier: LGPL-2.1-only - */ - -#ifndef TURNSMM_PARTICIPANT_P_HPP -#define TURNSMM_PARTICIPANT_P_HPP - -#include "turns-participant.h" - -#include -#include -#include - -#include - -namespace Turns -{ - - class Participant_Class : Glib::Class - { - public: - using BaseClassParent = GObjectClass; - using BaseClassType = TurnsParticipantClass; - using BaseObjectType = TurnsParticipant; - using CppClassParent = Glib::Object_Class; - using CppObjectType = class Participant; - - auto init() -> Glib::Class const &; - auto static class_init_function(void * gclass, void * data) -> void; - auto static wrap_new(GObject * object) -> Glib::ObjectBase *; - }; - -} // namespace Turns - -#endif \ No newline at end of file diff --git a/lib/src/turnsmm/private/turn-order_p.hpp b/lib/src/turnsmm/private/turn-order_p.hpp deleted file mode 100644 index d694b3e..0000000 --- a/lib/src/turnsmm/private/turn-order_p.hpp +++ /dev/null @@ -1,36 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2025 Felix Morgner - * SPDX-License-Identifier: LGPL-2.1-only - */ - -#ifndef TURNSMM_TURN_ORDER_P_HPP -#define TURNSMM_TURN_ORDER_P_HPP - -#include "turns-turn-order.h" - -#include -#include -#include - -#include - -namespace Turns -{ - - class TurnOrder_Class : Glib::Class - { - public: - using BaseClassParent = GObjectClass; - using BaseClassType = TurnsTurnOrderClass; - using BaseObjectType = TurnsTurnOrder; - using CppClassParent = Glib::Object_Class; - using CppObjectType = class TURN_ORDER; - - auto init() -> Glib::Class const &; - auto static class_init_function(void * gclass, void * data) -> void; - auto static wrap_new(GObject * object) -> Glib::ObjectBase *; - }; - -} // namespace Turns - -#endif \ No newline at end of file diff --git a/lib/src/turnsmm/turn-order.hpp b/lib/src/turnsmm/turn-order.hpp deleted file mode 100644 index 5b8deb9..0000000 --- a/lib/src/turnsmm/turn-order.hpp +++ /dev/null @@ -1,89 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2025 Felix Morgner - * SPDX-License-Identifier: LGPL-2.1-only - */ - -#ifndef TURNSMM_TURN_ORDER_HPP -#define TURNSMM_TURN_ORDER_HPP - -#include "turns-turn-order.h" -#include "turnsmm/participant.hpp" - -#include -#include -#include -#include -#include - -#include - -#include -#include - -#include - -namespace Turns -{ - - class TurnOrder final : public Glib::Object, - public Gio::ListModel - { - public: - using BaseClassType = TurnsTurnOrderClass; - using BaseObjectType = TurnsTurnOrder; - using CppClassType = class TurnOrder_Class; - using CppObjectType = TurnOrder; - - enum struct SortMode : guint - { - Descending, - Ascending, - }; - - auto static get_base_type() -> GType; - auto static get_type() -> GType; - - TurnOrder(); - - [[nodiscard]] auto gobj() noexcept -> BaseObjectType *; - [[nodiscard]] auto gobj() const -> BaseObjectType const *; - [[nodiscard]] auto gobj_copy() noexcept -> BaseObjectType *; - - auto add(Glib::RefPtr const & participant) noexcept -> void; - auto clear() noexcept -> void; - auto remove_at(guint position) noexcept -> void; - - [[nodiscard]] auto get_empty() const noexcept -> bool; - [[nodiscard]] auto get_participant_count() const noexcept -> std::size_t; - [[nodiscard]] auto get_running() const noexcept -> bool; - [[nodiscard]] auto get_sort_mode() const noexcept -> SortMode; - - auto set_sort_mode(SortMode value) noexcept -> void; - - [[nodiscard]] auto property_empty() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_participant_count() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_running() const noexcept -> Glib::PropertyProxy_ReadOnly; - [[nodiscard]] auto property_sort_mode() noexcept -> Glib::PropertyProxy; - [[nodiscard]] auto property_sort_mode() const noexcept -> Glib::PropertyProxy_ReadOnly; - - protected: - friend TurnOrder_Class; - - explicit TurnOrder(BaseObjectType * gobj); - }; - -} // namespace Turns - -namespace Glib -{ - template<> - class Value : public Glib ::Value_Enum - { - public: - auto static value_type() -> GType; - }; - - auto wrap(TurnsTurnOrder * object, bool copy = false) -> Glib::RefPtr; -} // namespace Glib - -#endif \ No newline at end of file -- cgit v1.2.3