mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Add highlight types
This commit is contained in:
parent
8703e306f7
commit
a9eb4e0569
1 changed files with 15 additions and 1 deletions
|
@ -230,8 +230,22 @@ void BoardCanvas::DrawBoard(wxDC &dc) {
|
|||
sfile = 7 - sfile;
|
||||
}
|
||||
if(srank == rank && sfile==file){
|
||||
char type='a';
|
||||
if(s.size()>2)
|
||||
type=s[2];
|
||||
// Default highlight (type='a' or something else not supported)
|
||||
dc.SetPen(wxPen(*wxWHITE, 1));
|
||||
dc.SetBrush(wxColour(255,0,0,100));
|
||||
dc.SetBrush(wxColour(255,0,0,110));
|
||||
if(type=='b')
|
||||
dc.SetBrush(wxColour(0,255,0,110));
|
||||
else if(type=='c')
|
||||
dc.SetBrush(wxColour(0,0,255,110));
|
||||
else if(type=='d')
|
||||
dc.SetBrush(wxColour(255,0,0,50));
|
||||
else if(type=='e')
|
||||
dc.SetBrush(wxColour(0,255,0,50));
|
||||
else if(type=='f')
|
||||
dc.SetBrush(wxColour(0,0,255,50));
|
||||
dc.DrawRectangle(wxRect(x,y,square_width,square_width));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue