Add highlight types

This commit is contained in:
Loic Guegan 2023-01-06 16:20:06 +01:00
parent 8703e306f7
commit a9eb4e0569

View file

@ -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));
}
}