mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
Decouple editor event from the Draw class
This commit is contained in:
parent
3271972f9e
commit
31c332da9a
4 changed files with 15 additions and 19 deletions
|
@ -1,19 +1,21 @@
|
||||||
[](https://www.gnu.org/licenses/lgpl-3.0)
|
[](https://www.gnu.org/licenses/lgpl-3.0)
|
||||||
|
|
||||||
# cgeditor: Chess Game Editor
|
# cgeditor: Chess Game Editor
|
||||||
cgeditor is a dependency-free chess game editor library written in C++. It can be used with any library that provides 2D canvas drawing and mouse inputs features.
|
cgeditor is a dependency-free chess game editor library written in C++. It can be used with any library that provides 2D canvas drawing and mouse/keyboard events.
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
- Show move, move number, variations, NAGs, comments etc.
|
- Show move, move number, variations, NAGs, comments etc.
|
||||||
- *Delete*, *Promote* and *Set as main line* features
|
- *Delete*, *Promote* and *Set as main line* menu entries
|
||||||
- Handle pieces icons
|
- Handle pieces icons
|
||||||
- Its graphical appareance is entirely customizable
|
- Its graphical appareance is entirely customizable
|
||||||
|
|
||||||
# Architecture
|
# Architecture
|
||||||
To run cgeditor you need to extend 2 classes:
|
To run cgeditor 2 classes need to be extended:
|
||||||
- CGEditor (To draw and handle events)
|
- CGEditor (To draw and handle events)
|
||||||
- CGEHalfMove (The data structure displayed by the editor)
|
- CGEHalfMove (The data structure displayed by the editor)
|
||||||
|
|
||||||
|
See example for more informations.
|
||||||
|
|
||||||
# Example
|
# Example
|
||||||
An example based on *wxWidgets* is available in the `examples/` folder:
|
An example based on *wxWidgets* is available in the `examples/` folder:
|
||||||

|

|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
*/
|
*/
|
||||||
class MyFrame : public wxFrame, public cgeditor::CGEditor {
|
class MyFrame : public wxFrame, public cgeditor::CGEditor {
|
||||||
wxPaintDC *dc;
|
wxPaintDC *dc;
|
||||||
bool NeedRedraw = false;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MyFrame()
|
MyFrame()
|
||||||
|
@ -72,10 +71,16 @@ private:
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Should another draw of CGEditor be made?
|
// Now handle event
|
||||||
if (NeedRedraw) {
|
bool redraw=false;
|
||||||
|
Update();
|
||||||
|
for(const cgeditor::Event &e: status.Events){
|
||||||
|
HandleEvent(e);
|
||||||
|
redraw=true;
|
||||||
|
}
|
||||||
|
status.Events.clear();
|
||||||
|
if(redraw){
|
||||||
Refresh();
|
Refresh();
|
||||||
NeedRedraw = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -163,7 +168,6 @@ private:
|
||||||
else if (e.type == cgeditor::Event::Type::Promote) {
|
else if (e.type == cgeditor::Event::Type::Promote) {
|
||||||
str = "Promote";
|
str = "Promote";
|
||||||
static_cast<MyHalfMove *>(e.move)->MyHalfMove::Promote();
|
static_cast<MyHalfMove *>(e.move)->MyHalfMove::Promote();
|
||||||
NeedRedraw = true;
|
|
||||||
} else if (e.type == cgeditor::Event::Type::Delete) {
|
} else if (e.type == cgeditor::Event::Type::Delete) {
|
||||||
str = "Delete";
|
str = "Delete";
|
||||||
if (e.move->Parent != NULL) {
|
if (e.move->Parent != NULL) {
|
||||||
|
@ -172,11 +176,9 @@ private:
|
||||||
} else {
|
} else {
|
||||||
CGEditor::status.Moves = NULL;
|
CGEditor::status.Moves = NULL;
|
||||||
}
|
}
|
||||||
NeedRedraw = true;
|
|
||||||
} else if (e.type == cgeditor::Event::Type::SetAsMainline) {
|
} else if (e.type == cgeditor::Event::Type::SetAsMainline) {
|
||||||
str = "Set as main line";
|
str = "Set as main line";
|
||||||
static_cast<MyHalfMove *>(e.move)->MyHalfMove::SetAsMainline();
|
static_cast<MyHalfMove *>(e.move)->MyHalfMove::SetAsMainline();
|
||||||
NeedRedraw = true;
|
|
||||||
} else if (e.type == cgeditor::Event::Type::Goto) {
|
} else if (e.type == cgeditor::Event::Type::Goto) {
|
||||||
str = "Goto move";
|
str = "Goto move";
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,12 +40,6 @@ void CGEditor::Draw() {
|
||||||
DrawComponent(SBH);
|
DrawComponent(SBH);
|
||||||
DrawComponent(ME);
|
DrawComponent(ME);
|
||||||
|
|
||||||
// Handle events
|
|
||||||
for (Event &e : status.Events) {
|
|
||||||
HandleEvent(e);
|
|
||||||
}
|
|
||||||
status.Events.clear();
|
|
||||||
|
|
||||||
// Update mouse events
|
// Update mouse events
|
||||||
status.LeftClick = false;
|
status.LeftClick = false;
|
||||||
status.RightClick = false;
|
status.RightClick = false;
|
||||||
|
|
|
@ -27,8 +27,6 @@ protected:
|
||||||
void Draw();
|
void Draw();
|
||||||
/// @brief Draw an element on the canvas
|
/// @brief Draw an element on the canvas
|
||||||
virtual void DrawElement(const Element &) = 0;
|
virtual void DrawElement(const Element &) = 0;
|
||||||
/// @brief Handle event that occured during editor drawing
|
|
||||||
virtual void HandleEvent(const Event &) = 0;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CGEditor();
|
CGEditor();
|
||||||
|
|
Loading…
Add table
Reference in a new issue