mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
Now showing move NAGs is possible
This commit is contained in:
parent
a90469e71a
commit
f1f638100f
5 changed files with 24 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
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 inputs features.
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
- Show move,move number, variations, 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* features
|
||||||
- Handle pieces icons
|
- Handle pieces icons
|
||||||
- Its graphical appareance is entirely customizable
|
- Its graphical appareance is entirely customizable
|
||||||
|
|
|
@ -144,7 +144,7 @@ MyHalfMove *BuildExampleGame() {
|
||||||
m->SetMainline(m2);
|
m->SetMainline(m2);
|
||||||
m = m2;
|
m = m2;
|
||||||
|
|
||||||
m2 = new MyHalfMove("o-o");
|
m2 = new MyHalfMove("O-O");
|
||||||
m->SetMainline(m2);
|
m->SetMainline(m2);
|
||||||
m = m2;
|
m = m2;
|
||||||
|
|
||||||
|
@ -196,10 +196,11 @@ MyHalfMove *BuildExampleGame() {
|
||||||
m = m2;
|
m = m2;
|
||||||
|
|
||||||
m2 = new MyHalfMove("Re1");
|
m2 = new MyHalfMove("Re1");
|
||||||
|
m2->nag="!!";
|
||||||
m->SetMainline(m2);
|
m->SetMainline(m2);
|
||||||
m = m2;
|
m = m2;
|
||||||
|
|
||||||
m2 = new MyHalfMove("o-o");
|
m2 = new MyHalfMove("O-O");
|
||||||
m->SetMainline(m2);
|
m->SetMainline(m2);
|
||||||
m = m2;
|
m = m2;
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@ public:
|
||||||
std::uint16_t Number;
|
std::uint16_t Number;
|
||||||
/// @brief Current move value
|
/// @brief Current move value
|
||||||
std::string move;
|
std::string move;
|
||||||
|
/// @brief Current NAG
|
||||||
|
std::string nag;
|
||||||
|
|
||||||
CGEHalfMove *MainLine;
|
CGEHalfMove *MainLine;
|
||||||
CGEHalfMove *Parent;
|
CGEHalfMove *Parent;
|
||||||
|
|
|
@ -29,7 +29,8 @@ enum class Property : std::uint32_t {
|
||||||
Bishop = 1 << 19,
|
Bishop = 1 << 19,
|
||||||
Rook = 1 << 20,
|
Rook = 1 << 20,
|
||||||
Queen = 1 << 21,
|
Queen = 1 << 21,
|
||||||
King = 1 << 22
|
King = 1 << 22,
|
||||||
|
Nag = 1 << 23
|
||||||
};
|
};
|
||||||
Property operator|(Property lhs, Property rhs);
|
Property operator|(Property lhs, Property rhs);
|
||||||
Property &operator|=(Property &lhs, Property rhs);
|
Property &operator|=(Property &lhs, Property rhs);
|
||||||
|
@ -68,6 +69,8 @@ typedef struct Status {
|
||||||
double CanvasWidth, CanvasHeight;
|
double CanvasWidth, CanvasHeight;
|
||||||
double MenuItemWidth = 150, MenuItemHeight = 50;
|
double MenuItemWidth = 150, MenuItemHeight = 50;
|
||||||
double MoveWidth = 100, MoveHeight = 50;
|
double MoveWidth = 100, MoveHeight = 50;
|
||||||
|
double NagWidth = 25, NagHeight = MoveHeight;
|
||||||
|
double NagRightMargin = 0;
|
||||||
double MarginBarWidth = 50;
|
double MarginBarWidth = 50;
|
||||||
double ScrollbarWidth = 30;
|
double ScrollbarWidth = 30;
|
||||||
double MoveIconWidth = 25;
|
double MoveIconWidth = 25;
|
||||||
|
|
|
@ -127,6 +127,7 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
|
||||||
e.width = status->MoveWidth - status->MoveIconWidth;
|
e.width = status->MoveWidth - status->MoveIconWidth;
|
||||||
e.height = status->MoveHeight;
|
e.height = status->MoveHeight;
|
||||||
e.ShouldApplyScroll = true;
|
e.ShouldApplyScroll = true;
|
||||||
|
// Add elements:
|
||||||
elements.push_back(img);
|
elements.push_back(img);
|
||||||
elements.push_back(e);
|
elements.push_back(e);
|
||||||
} else {
|
} else {
|
||||||
|
@ -134,6 +135,19 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
|
||||||
elements.push_back(move_bound);
|
elements.push_back(move_bound);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------- NAG ----------
|
||||||
|
if(m->nag.size()>0){
|
||||||
|
Element nag;
|
||||||
|
nag.text = m->nag;
|
||||||
|
nag.x = move_bound.x + status->MoveWidth - status->NagWidth - status->NagRightMargin;
|
||||||
|
nag.y = status->MoveHeight * line;
|
||||||
|
nag.width = status->NagWidth;
|
||||||
|
nag.height = status->NagHeight;
|
||||||
|
nag.prop = move_bound.prop | Property::Text | Property::Nag;
|
||||||
|
nag.ShouldApplyScroll = true;
|
||||||
|
elements.push_back(nag);
|
||||||
|
}
|
||||||
|
|
||||||
//---------- Move number in marge or for variation ----------
|
//---------- Move number in marge or for variation ----------
|
||||||
if (indent == 0 && (!m->IsBlack || only_black)) {
|
if (indent == 0 && (!m->IsBlack || only_black)) {
|
||||||
DRAW_NB(0, status->MoveHeight * line, m->Number);
|
DRAW_NB(0, status->MoveHeight * line, m->Number);
|
||||||
|
|
Loading…
Add table
Reference in a new issue