1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
This file is part of Advanced Strategic Command; http://www.asc-hq.de
Copyright (C) 1994-1999 Martin Bickel and Marc Schellenberger
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
*/
#include <malloc.h>
#include <stdio.h>
#include <conio.h>
#include "tpascal.inc"
#include "typen.h"
#include "vesa.h"
#include "loadpcx.h"
#include "krkr.h"
#include "sgstream.h"
#include "newfont.h"
#include "mousehnd.h"
#include "misc.h"
#define maxint 1147483648
int* buf;
int* bufptr;
dacpalette256 pal;
main(int argc, char *argv[], char *envp[])
{
if ( argc <= 1) {
printf( " Syntax: MAKEBKGR <filename> \n" );
return 1;
}
initsvga ( 0x101 );
initmousehandler ();
buf = (int*) malloc ( 1000000 );
bufptr = buf;
loadpcxxy ( argv[1], 1, 0, 0 );
mousevisible ( true );
do {
} while ( mouseparams.taste == 0 ); /* enddo */
mousevisible ( false );
int col = getpixel ( mouseparams.x, mouseparams.y );
int abspos = 0;
int dist = 0;
int mode = 0;
int delta = 0;
buf++;
for (int y = 0; y < 480; y++) {
for (int x = 0; x < 640; x++) {
int c = getpixel ( x, y );
if ( c == col )
abspos++;
if ( mode ) { // letztes Pixel war col
if (c == col)
dist++;
else {
putpixel ( x, y, white );
*buf = delta + dist ;
delta = 0;
buf++;
dist = 1;
mode = 0;
abspos++;
}
} else {
if (c != col)
dist++;
else {
putpixel ( x, y, white );
*buf = delta + dist ;
delta = 0;
buf++;
dist = 1;
mode = 1;
abspos++;
}
} /* endif */
} /* endfor */
if ( abspos==0 )
dist = 0;
else
if ( buf > bufptr ) {
delta = -hgmp->bytesperscanline;
putpixel ( x, y, blue );
}
} /* endfor */
*bufptr = (buf - bufptr - 1) / 2;
char s[100];
strcpy ( s, argv[1] );
int i=0;
while ( s[i] != '.' )
i++;
s[++i] = 's';
s[++i] = 'c';
s[++i] = 'r';
s[++i] = 0;
bufptr[1] = 0;
mainstream.init();
mainstream.openstream ( s, 2 );
mainstream.writedata ( (char*) bufptr, 4 * ( buf - bufptr ));
mainstream.closestream();
mainstream.done();
removemousehandler();
getch();
settextmode ( 3 );
return 0;
}
|