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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
/*
** THIS SOFTWARE IS SUBJECT TO COPYRIGHT PROTECTION AND IS OFFERED ONLY
** PURSUANT TO THE 3DFX GLIDE GENERAL PUBLIC LICENSE. THERE IS NO RIGHT
** TO USE THE GLIDE TRADEMARK WITHOUT PRIOR WRITTEN PERMISSION OF 3DFX
** INTERACTIVE, INC. A COPY OF THIS LICENSE MAY BE OBTAINED FROM THE
** DISTRIBUTOR OR BY CONTACTING 3DFX INTERACTIVE INC([email protected]).
** THIS PROGRAM IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
** EXPRESSED OR IMPLIED. SEE THE 3DFX GLIDE GENERAL PUBLIC LICENSE FOR A
** FULL TEXT OF THE NON-WARRANTY PROVISIONS.
**
** USE, DUPLICATION OR DISCLOSURE BY THE GOVERNMENT IS SUBJECT TO
** RESTRICTIONS AS SET FORTH IN SUBDIVISION (C)(1)(II) OF THE RIGHTS IN
** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 252.227-7013,
** AND/OR IN SIMILAR OR SUCCESSOR CLAUSES IN THE FAR, DOD OR NASA FAR
** SUPPLEMENT. UNPUBLISHED RIGHTS RESERVED UNDER THE COPYRIGHT LAWS OF
** THE UNITED STATES.
**
** COPYRIGHT 3DFX INTERACTIVE, INC. 1999, ALL RIGHTS RESERVED
**
*/
#include <stdlib.h>
#include <stdio.h>
#ifndef __linux__
#include <conio.h>
#endif
#include <assert.h>
#include <string.h>
#include <glide.h>
#include "tlib.h"
typedef struct {
FxU32 signature;
FxU16 width;
FxU16 height;
FxU8 depth;
FxU8 type;
void *data;
} LFB_Img;
GrHwConfiguration hwconfig;
static char version[80];
static const char name[] = "display";
static const char purpose[] = "display a 16 bit frame buffer (565 format) dump out";
static const char usage[] = "-n <frames> -r <res> -s srcimage -t testimage";
static const char *sourceFormatString[] = {
"GR_LFB_SRC_FMT_565 ",
"GR_LFB_SRC_FMT_555 ",
"GR_LFB_SRC_FMT_1555 ",
"INVALID FORMAT ",
"GR_LFB_SRC_FMT_888 ",
"GR_LFB_SRC_FMT_8888 ",
"INVALID FORMAT ",
"INVALID FORMAT ",
"INVALID FORMAT ",
"INVALID FORMAT ",
"INVALID FORMAT ",
"INVALID FORMAT ",
"GR_LFB_SRC_FMT_565_DEPTH ",
"GR_LFB_SRC_FMT_555_DEPTH ",
"GR_LFB_SRC_FMT_1555_DEPTH",
"GR_LFB_SRC_FMT_ZA16 "
};
static void imageConvert( void *dst,
void *src,
GrLfbSrcFmt_t format,
FxU32 *bpp );
int main( int argc, char **argv)
{
char match;
char **remArgs;
int rv;
GrScreenResolution_t resolution = GR_RESOLUTION_640x480;
float scrWidth = 640.0f;
float scrHeight = 480.0f;
int frames = -1;
char srcfname[80], dstfname[80];
FILE *fp;
void *mem;
FxU32 filesize;
LFB_Img src, dst, diff;
FxBool txtdisplay = FXTRUE;
void *image = NULL;
FxU32 bpp;
GrLfbSrcFmt_t sourceFormat;
static FxU32 imageWidth;
static FxU32 imageHeight;
srcfname[0] = 0;
dstfname[0] = 0;
/* Process Command Line Arguments */
while( (rv = tlGetOpt( argc, argv, "nrst", &match, &remArgs )) ) {
if ( rv == -1 ) {
printf( "Unrecognized command line argument\n" );
printf( "%s %s\n", name, usage );
printf( "Available resolutions:\n%s\n",
tlGetResolutionList() );
exit(1);
}
switch( match ) {
case 'n':
frames = atoi( remArgs[0] );
break;
case 'r':
resolution = tlGetResolutionConstant( remArgs[0],
&scrWidth,
&scrHeight );
break;
case 's':
strcpy(srcfname, remArgs[0]);
break;
case 't':
strcpy(dstfname, remArgs[0]);
break;
}
}
tlSetScreen( scrWidth, scrHeight );
grGlideGetVersion( version );
printf( "%s:\n%s\n", name, purpose );
printf( "%s\n", version );
printf( "Resolution: %s\n", tlGetResolutionString( resolution ) );
if ( frames == -1 ) {
printf( "Press A Key To Begin Test.\n" );
tlGetCH();
}
/* Initialize Glide */
grGlideInit();
assert( grSstQueryHardware( &hwconfig ) );
grSstSelect( 0 );
assert( grSstWinOpen( 0,
resolution,
GR_REFRESH_60Hz,
GR_COLORFORMAT_ABGR,
GR_ORIGIN_UPPER_LEFT,
2, 1 ) );
tlConSet( 0.0f, 0.0f, 1.0f, 1.0f,
60, 30, 0xffffff );
/* Set up Render State - disable dithering */
grDitherMode( GR_DITHER_DISABLE );
/* Load src image from disk */
if (srcfname[0]) {
fp = fopen(srcfname, "rb");
if (fp == NULL)
srcfname[0] = 0;
else {
fseek(fp, 0, SEEK_END);
filesize = ftell(fp);
rewind(fp);
/* readng the LFB file header */
fread(&src.signature, 4, 1, fp);
if (src.signature != IMAGE_SRLE) {
printf("%s file type incorrect\n", srcfname);
exit(1);
}
fread(&src.width, 2, 1, fp);
fread(&src.height, 2, 1, fp);
fread(&src.depth, 1, 1, fp);
fread(&src.type, 1, 1, fp);
mem = malloc(filesize-6);
src.data = malloc(src.width*src.height*(src.depth/8));
/* reading the LFB data */
fread(mem, filesize-6, 1, fp);
/* Simple16BitDecode(src.width,src.height,mem,src.data); */
SimpleRleDecode(src.width,src.height,2,mem,src.data);
free(mem);
fclose(fp);
}
}
/* Load dst image from disk */
if (dstfname[0]) {
fp = fopen(dstfname, "rb");
if (fp == NULL)
dstfname[0] = 0;
else {
fseek(fp, 0, SEEK_END);
filesize = ftell(fp);
rewind(fp);
/* readng the LFB file header */
fread(&dst.signature, 4, 1, fp);
if (dst.signature != IMAGE_SRLE) {
printf("%s file type incorrect\n", dstfname);
exit(1);
}
fread(&dst.width, 2, 1, fp);
fread(&dst.height, 2, 1, fp);
fread(&dst.depth, 1, 1, fp);
fread(&dst.type, 1, 1, fp);
mem = malloc(filesize-6);
dst.data = malloc(dst.width*dst.height*(dst.depth/8));
/* reading the LFB data */
fread(mem, filesize-6, 1, fp);
SimpleRleDecode(dst.width,dst.height,2,mem,dst.data);
free(mem);
fclose(fp);
}
}
diff.width = 0;
diff.height = 0;
if (srcfname[0] && dstfname[0]) {
FxU32 count;
FxU16 *srcptr, *dstptr, *difptr;
if ((src.width == dst.width) && (src.height == dst.height)) {
diff.width = src.width;
diff.height = src.height;
diff.depth = src.depth;
diff.data = malloc(diff.width*diff.height*(diff.depth/8));
count = diff.width * diff.height;
srcptr = src.data;
dstptr = dst.data;
difptr = diff.data;
while (count) {
if (*srcptr == *dstptr)
*difptr = 0;
else
*difptr = *srcptr ^ *dstptr;
srcptr ; dstptr ; difptr ;
count--;
}
}
}
sourceFormat = GR_LFB_SRC_FMT_565;
if (srcfname[0]) {
imageWidth = src.width;
imageHeight = src.height;
image = calloc( imageWidth * imageHeight, sizeof( FxU32 ) );
imageConvert( image, src.data, sourceFormat, &bpp );
}
else if (dstfname[0]) {
imageWidth = dst.width;
imageHeight = dst.height;
image = calloc( imageWidth * imageHeight, sizeof( FxU32 ) );
imageConvert( image, dst.data, sourceFormat, &bpp );
}
if ( ( imageWidth > (FxU32)scrWidth ) ||
( imageHeight > (FxU32)scrHeight ) )
exit(1);
while( frames-- ) {
grBufferClear( 0x00303030, 0, 0 );
grLfbWriteRegion( GR_BUFFER_BACKBUFFER,
0, 0, sourceFormat,
imageWidth, imageHeight, imageWidth*bpp, image );
tlConClear();
if (txtdisplay) {
tlConOutput("1 - lfb source format (%s)\n",
sourceFormatString[sourceFormat] );
if (srcfname[0])
tlConOutput("s - display source image\n");
else
tlConOutput("no source image\n");
if (dstfname[0])
tlConOutput("t - display test image\n");
else
tlConOutput("no test image\n");
if (srcfname[0] && dstfname[0]) {
if (diff.width > 0)
tlConOutput("d - display differences\n");
else
tlConOutput("source and test image size are not the same\n");
}
tlConOutput("space - turn on/off text display\n");
tlConOutput("any other key to quit\n\n");
}
/*
tlConOutput( "1 - lfb source format (%s)\n"
" /- - change width of source image copied\n"
"s - display source image\n"
"t - display test image\n"
"d - display differences\n"
"any other key to quit\n\n",
sourceFormatString[sourceFormat] );
*/
tlConRender();
grBufferSwap( 1 );
while( tlKbHit() ) {
switch( tlGetCH() ) {
case '1':
break;
case ' ':
break;
case '-':
break;
case 's':
if (srcfname[0]) {
imageWidth = src.width;
imageHeight = src.height;
imageConvert( image, src.data, sourceFormat, &bpp );
}
break;
case 't':
if (dstfname[0]) {
imageWidth = dst.width;
imageHeight = dst.height;
imageConvert( image, dst.data, sourceFormat, &bpp );
}
break;
case 'd':
if (diff.width > 0)
imageConvert( image, diff.data, sourceFormat, &bpp );
break;
case ' ':
txtdisplay = !txtdisplay;
break;
default:
frames = 0;
break;
}
}
}
grGlideShutdown();
if (srcfname[0])
free(src.data);
if (dstfname[0])
free(dst.data);
if (srcfname[0] && dstfname[0])
free(diff.data);
free(image);
exit(0);
}
static void imageConvert( void *dst, void *src,
GrLfbSrcFmt_t format, FxU32 *bpp ) {
FxU32 x, y;
FxU32 *longData = dst;
FxU16 *shortData = dst;
FxU16 *srcData = src;
FxU32 longStride = 640;
FxU32 shortStride = 640;
FxU32 longColor;
FxU16 shortColor;
switch( format ) {
case GR_LFB_SRC_FMT_565:
case GR_LFB_SRC_FMT_555:
case GR_LFB_SRC_FMT_1555:
*bpp = 2;
break;
case GR_LFB_SRC_FMT_888:
case GR_LFB_SRC_FMT_8888:
case GR_LFB_SRC_FMT_565_DEPTH:
case GR_LFB_SRC_FMT_1555_DEPTH:
case GR_LFB_SRC_FMT_555_DEPTH:
*bpp = 4;
break;
}
for( y = 0; y < 480; y ) {
for( x = 0; x < 640; x ) {
switch( format ) {
case GR_LFB_SRC_FMT_565:
shortData[y*shortStride x] =
srcData[y*640 x];
break;
case GR_LFB_SRC_FMT_555:
case GR_LFB_SRC_FMT_1555:
shortColor = srcData[y*640 x];
shortColor =
(0x8000) | // Alpha == 1
((shortColor >> 1) & 0x7C00) |
((shortColor >> 1) & 0x03E0) |
((shortColor) & 0x1f);
shortData[y*shortStride x] =
shortColor;
break;
case GR_LFB_SRC_FMT_888:
case GR_LFB_SRC_FMT_8888:
longColor = srcData[y*640 x];
longColor =
(0xFF000000) |
((longColor<<8)&0x00F80000) |
((longColor<<5)&0x0000FC00) |
((longColor<<3)&0x000000F8);
longData[y*longStride x] = longColor;
break;
case GR_LFB_SRC_FMT_565_DEPTH:
longColor = srcData[y*640 x];
longData[y*longStride x] = longColor;
break;
case GR_LFB_SRC_FMT_1555_DEPTH:
case GR_LFB_SRC_FMT_555_DEPTH:
longColor = srcData[y*640 x];
longColor =
(0x00008000) |
((longColor>>1) & 0x00007C00) |
((longColor>>1) & 0x000003E0) |
((longColor ) & 0x0000001f);
longData[y*longStride x] = longColor;
default:
break;
}
}
}
return;
}
|