Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/main/java/featurecat/lizzie/gui/LizzieFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -1030,6 +1030,17 @@ private void drawMoveStatistics(Graphics2D g, int posX, int posY, int width, int
g.setColor(Color.BLACK);
g.fillRect(barPosxB, barPosY, barWidthB, barHeight);

// Draw change of winrate bars
if (validWinrate && validLastWinrate) {
double blackLastWR = Lizzie.board.getData().blackToPlay ? 100 - lastWR : lastWR;
int lastPosxW = barPosxB + (int) (blackLastWR * maxBarwidth / 100);
Stroke oldstroke = g.getStroke();
g.setStroke(new BasicStroke(strokeRadius));
g.setColor(Color.GRAY);
g.drawLine(lastPosxW, barPosY, lastPosxW, barPosY + barHeight);
g.setStroke(oldstroke);
}

// Show percentage above bars
g.setColor(Color.WHITE);
g.drawString(
Expand Down
11 changes: 11 additions & 0 deletions src/main/java/featurecat/lizzie/gui/WinratePane.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,17 @@ private void drawMoveStatistics(Graphics2D g, int posX, int posY, int width, int
g.setColor(Color.BLACK);
g.fillRect(barPosxB, barPosY, barWidthB, barHeight);

// Draw change of winrate bars
if (validWinrate && validLastWinrate) {
double blackLastWR = Lizzie.board.getData().blackToPlay ? 100 - lastWR : lastWR;
int lastPosxW = barPosxB + (int) (blackLastWR * maxBarwidth / 100);
Stroke oldstroke = g.getStroke();
g.setStroke(new BasicStroke(strokeRadius));
g.setColor(Color.GRAY);
g.drawLine(lastPosxW, barPosY, lastPosxW, barPosY + barHeight);
g.setStroke(oldstroke);
}

// Show percentage above bars
g.setColor(Color.WHITE);
g.drawString(
Expand Down