X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=draw.c;h=7307e6619586f9587e8bae8c2e9401e69e292fce;hb=fd96ae416d3a636f178a64f289c645942fa2d391;hp=7ec217a32b636fe39002440bd3b370b7538d6aa6;hpb=c92e2f2ffaa06d31679e82d82f86b8e07fc4b770;p=xboard.git diff --git a/draw.c b/draw.c index 7ec217a..7307e66 100644 --- a/draw.c +++ b/draw.c @@ -78,10 +78,6 @@ extern char *getenv(); // [HGM] bitmaps: put before incuding the bitmaps / pixmaps, to know how many piece types there are. #include "common.h" -#if HAVE_LIBXPM -#include "pixmaps/pixmaps.h" -#endif - #include "frontend.h" #include "backend.h" #include "xevalgraph.h" @@ -224,39 +220,6 @@ char *pngPieceNames[] = // must be in same order as internal piece encoding "GoldKnight", "GoldLance", "GoldPawn", "GoldSilver", NULL }; -cairo_surface_t * -ConvertPixmap (int color, int piece) -{ - int i, j, stride, f, colcode[10], w, b; - char ch[10]; - cairo_surface_t *res; - XpmPieces *p = builtInXpms + 10; - char **pixels = p->xpm[piece % BlackPawn][2*color]; - int *buf; - sscanf(pixels[0], "%*d %*d %d", &f); - sscanf(appData.whitePieceColor+1, "%x", &w); - sscanf(appData.blackPieceColor+1, "%x", &b); - res = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, p->size, p->size); - stride = cairo_image_surface_get_stride(res); - buf = (int *) cairo_image_surface_get_data(res); - for(i=0; isize; i++) { - for(j=0; jsize; j++) { - char c = pixels[i+f+1][j]; - int k; - for(k=0; ch[k] != c && k < f; k++); - buf[i*p->size + j] = colcode[k]; - } - } - cairo_surface_mark_dirty(res); - return res; -} - RsvgHandle * LoadSVG (char *dir, int color, int piece) { @@ -313,7 +276,7 @@ ScaleOnePiece (int color, int piece) } if(!pngPieceImages[color][piece]) { // we still did not manage to acquire a piece bitmap - if(!(svgPieces[color][piece] = LoadSVG(appData.svgDirectory, color, piece))) // try to fall back on installed svg + if(!(svgPieces[color][piece] = LoadSVG(SVGDIR, color, piece))) // try to fall back on installed svg DisplayError(_("No default pieces installed\nSelect your own -pieceImageDirectory"), 0); // give up } @@ -333,7 +296,7 @@ ScaleOnePiece (int color, int piece) cairo_paint (cr); cairo_destroy (cr); - if(!appData.trueColors || !*appData.pieceDirectory && !appData.svgDirectory) { // operate on bitmap to color it (king-size hack...) + if(!appData.trueColors || !*appData.pieceDirectory) { // operate on bitmap to color it (king-size hack...) int stride = cairo_image_surface_get_stride(cs)/4; int *buf = (int *) cairo_image_surface_get_data(cs); int i, j, p; @@ -348,6 +311,11 @@ ScaleOnePiece (int color, int piece) buf[i*stride + j] = c & 0xFF000000; // alpha channel is kept at same opacity buf[i*stride + j] += ((int)(f*(p&0xFF0000)) & 0xFF0000) + ((int)(f*(p&0xFF00)) & 0xFF00) + (int)(f*(p&0xFF)); // add desired fraction of new color if(color) buf[i*stride + j] += r | r << 8 | r << 16; // details on black pieces get their weight added in pure white + if(appData.monoMode) { + if(a < 64) buf[i*stride + j] = 0; // if not opaque enough, totally transparent + else if(2*r < a) buf[i*stride + j] = 0xFF000000; // if not light enough, totally black + else buf[i*stride + j] = 0xFFFFFFFF; // otherwise white + } } cairo_surface_mark_dirty(cs); }