X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=evalgraph.c;h=c18d3d291186e8a4412278b8b4c8871a0a719e61;hb=67b3a0d7c465522feb67841c7374bf863df19357;hp=7a181517ab3ca21ea9f4c2ca877f12d7c2ada996;hpb=4e062d14429ed3a3a251c971690bade4c8cba946;p=xboard.git diff --git a/evalgraph.c b/evalgraph.c index 7a18151..c18d3d2 100644 --- a/evalgraph.c +++ b/evalgraph.c @@ -63,7 +63,7 @@ int MarginH = 4; // back-end static void -DrawLine (int x1, int y1, int x2, int y2, int penType) +DrawLine (int x1, int y1, int x2, int y2, enum PEN penType) { DrawSegment( x1, y1, NULL, NULL, PEN_NONE ); DrawSegment( x2, y2, NULL, NULL, penType ); @@ -71,7 +71,7 @@ DrawLine (int x1, int y1, int x2, int y2, int penType) // back-end static void -DrawLineEx (int x1, int y1, int x2, int y2, int penType) +DrawLineEx (int x1, int y1, int x2, int y2, enum PEN penType) { int savX, savY; DrawSegment( x1, y1, &savX, &savY, PEN_NONE ); @@ -102,7 +102,8 @@ MakeEvalTitle (char *title) if( depth <=0 ) return title; if( currCurrent & 1 ) score = -score; /* Flip score for black */ - snprintf(buf, MSG_SIZ, "%s {%s%.2f/%-2d %d}", title, score>0 ? "+" : " ", score/100., depth, (currPvInfo[currCurrent].time+50)/100); + snprintf(buf, MSG_SIZ, "%s {%d: %s%.2f/%-2d %d}", title, currCurrent/2+1, + score>0 ? "+" : " ", score/100., depth, (currPvInfo[currCurrent].time+50)/100); return buf; } @@ -119,8 +120,8 @@ GetValueY (int value) { if( value < -range*700 ) value = -range*700; if( value > +range*700 ) value = +range*700; - if(value > 100*range) value += appData.zoom * 100 - 100*range; else - if(value < -100*range) value -= appData.zoom * 100 - 100*range; else + if(value > 100*range) value += (appData.zoom - 1)*100*range; else + if(value < -100*range) value -= (appData.zoom - 1)*100*range; else value *= appData.zoom; return (nHeightPB / 2) - (int)(value * (nHeightPB - 2*MarginH) / ((1200. + 200.*appData.zoom)*range)); } @@ -244,7 +245,7 @@ DrawHistogramAsDiagram (int cy, int paint_width, int hist_count) /* Extend line up to current point */ if( currPvInfo[index].depth > 0 ) { - DrawSegment((int) x, GetValueY( GetPvScore(index) ), NULL, NULL, PEN_BOLD + side ); + DrawSegment((int) x, GetValueY( GetPvScore(index) ), NULL, NULL, (side==0 ? PEN_BOLDWHITE: PEN_BOLDBLACK) ); } index += 2;