From 40f0d247905003af19933dc48738657cbc2c0c72 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 4 Jun 2023 11:51:31 +0200 Subject: [PATCH] Improve documentation --- src/binres/binres.hpp | 3 +- src/game_tab/HalfMove.hpp | 21 +- src/game_tab/right_panel/LiveEngineDialog.hpp | 24 +- tools/doxygen/Doxyfile | 4 +- tools/doxygen/Groups.md | 5 + tools/doxygen/layout.xml | 240 ++++++++++++++++++ 6 files changed, 288 insertions(+), 9 deletions(-) create mode 100644 tools/doxygen/Groups.md create mode 100644 tools/doxygen/layout.xml diff --git a/src/binres/binres.hpp b/src/binres/binres.hpp index cf48c14..2fd00e8 100644 --- a/src/binres/binres.hpp +++ b/src/binres/binres.hpp @@ -6,7 +6,6 @@ * @date 2023-05-12 * * @copyright Copyright (c) 2023 - * */ #pragma once @@ -19,6 +18,7 @@ * @param icon The icon name * @param size Scale the icon to the specified size * @return wxBitmap + * @ingroup binres */ wxBitmap LoadPNG(std::string icon, wxSize size); @@ -27,6 +27,7 @@ wxBitmap LoadPNG(std::string icon, wxSize size); * * @param icon * @return wxBitmap the image or wxNullBitmap if not found + * @ingroup binres */ wxBitmap LoadPNG(std::string icon); diff --git a/src/game_tab/HalfMove.hpp b/src/game_tab/HalfMove.hpp index eefee21..36b9888 100644 --- a/src/game_tab/HalfMove.hpp +++ b/src/game_tab/HalfMove.hpp @@ -27,11 +27,30 @@ public: HalfMove(std::string move_absolute,std::string move_san, std::string fen); HalfMove(CMI::HalfMove *m); + /** + * @brief Add mainline to the current move. + * If a mainline already exists, add to its variations + * + * @param m the move to add + */ void AddMove(HalfMove *m); /// @brief Check if current half move is within a variation bool IsVariation(); - /// @brief Get the root of a variation + /** + * @brief Check if pointer @a m to a HalfMove is a parent of the current one + * + * @param m + * @return true + * @return false + */ bool HasParent(HalfMove*m); + /** + * @brief Check if a given pointer @a m to a HalfMove is in mainline or variations of the current move. + * + * @param m + * @return true + * @return false + */ bool HasChild(HalfMove*m); /// @brief Retrieve the list of moves from the current one to the first one std::vector GetLine(); diff --git a/src/game_tab/right_panel/LiveEngineDialog.hpp b/src/game_tab/right_panel/LiveEngineDialog.hpp index 8975ed2..d0c6c51 100644 --- a/src/game_tab/right_panel/LiveEngineDialog.hpp +++ b/src/game_tab/right_panel/LiveEngineDialog.hpp @@ -26,15 +26,29 @@ class LiveEngineDialog : public DialogLiveEngine { wxTimer timer; /// @brief The following time interval definitely need to be configure in the user settings (set to 1s for now) std::uint32_t interval; - + /** + * @brief Called to fetch last evaluation from the engine subprocess (stockfish, fritz etc.) + * + * @param event + */ + void OnTimerTick(wxTimerEvent &event); + void OnClose(wxCloseEvent &e); + /** + * @brief Create the engine sub process using the uciadapter library + * + */ + void InitEngine(); + /// @brief Pause/Resume evaluation + void TogglePauseEngine(wxCommandEvent &event); public: LiveEngineDialog(wxWindow *parent, std::uint32_t engine_id); ~LiveEngineDialog(); - void InitEngine(); - void TogglePauseEngine(wxCommandEvent &event); - void OnTimerTick(wxTimerEvent &event); + /** + * @brief Used setup a new position to evaluate + * + * @param fen position to evaluate + */ void SetFEN(std::string fen); void StopEngine(); void StartEngine(); - void OnClose(wxCloseEvent &e); }; \ No newline at end of file diff --git a/tools/doxygen/Doxyfile b/tools/doxygen/Doxyfile index ba19246..6ceef09 100644 --- a/tools/doxygen/Doxyfile +++ b/tools/doxygen/Doxyfile @@ -796,7 +796,7 @@ FILE_VERSION_FILTER = # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. -LAYOUT_FILE = +LAYOUT_FILE = layout.xml # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib @@ -917,7 +917,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = ../../src MainPage.md Opening.md BoardTheming.md Libraries.md +INPUT = ../../src MainPage.md Opening.md BoardTheming.md Libraries.md Groups.md # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/tools/doxygen/Groups.md b/tools/doxygen/Groups.md new file mode 100644 index 0000000..aa5bd64 --- /dev/null +++ b/tools/doxygen/Groups.md @@ -0,0 +1,5 @@ +@defgroup binres Embbeded binary resources utilities +@brief How to access to the embbeded binary data +@details Binary resources are generated into the binary_data.hpp file using +the `tools/embbeded.sh` script. Here are the various functions used +to access to them. \ No newline at end of file diff --git a/tools/doxygen/layout.xml b/tools/doxygen/layout.xml new file mode 100644 index 0000000..0b25223 --- /dev/null +++ b/tools/doxygen/layout.xml @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +