Update of /cvsroot/netrek/client/netrekxp/include In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25375/include Modified Files: bitmaps.h data.h Log Message: Adds support for paradise wormholes. Fixes bug with local star draw clearzone. Index: bitmaps.h =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/include/bitmaps.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- bitmaps.h 25 May 2007 03:36:44 -0000 1.21 +++ bitmaps.h 7 Jun 2007 06:29:04 -0000 1.22 @@ -209,6 +209,8 @@ #define BMP_STAR 12 #define BMP_MSTAR 13 #define BMP_GEARBMP 14 +#define BMP_WORMHOLE 15 +#define BMP_MWORMHOLE 16 #define BMP_GEAR_WIDTH 10 #define BMP_GEAR_HEIGHT 10 #define BMP_STAR_WIDTH 30 @@ -216,4 +218,9 @@ #define BMP_MSTAR_WIDTH 16 #define BMP_MSTAR_HEIGHT 16 #define STAR_VIEWS 5 +#define BMP_WORMHOLE_WIDTH 80 +#define BMP_WORMHOLE_HEIGHT 80 +#define BMP_MWORMHOLE_WIDTH 16 +#define BMP_MWORMHOLE_HEIGHT 16 +#define WORMHOLE_VIEWS 8 #endif Index: data.h =================================================================== RCS file: /cvsroot/netrek/client/netrekxp/include/data.h,v retrieving revision 1.89 retrieving revision 1.90 diff -u -d -r1.89 -r1.90 --- data.h 7 Jun 2007 04:43:36 -0000 1.89 +++ data.h 7 Jun 2007 06:29:04 -0000 1.90 @@ -360,6 +360,9 @@ extern W_Icon base_star_bitmap; extern W_Icon star_bitmap[STAR_VIEWS]; extern W_Icon star_mbitmap; +extern W_Icon base_wormhole_bitmap; +extern W_Icon wormhole_bitmap[WORMHOLE_VIEWS]; +extern W_Icon wormhole_mbitmap; extern W_Icon paradise_ship_bitmaps; extern W_Icon paradise_ships[NUM_PSHIP_TYPES][NUMTEAMS]; extern W_Icon paradise_cship_self_bitmaps;