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 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
|
/*
"Disk-Video" (and RAM-Video and Expanded-Memory Video) routines
Reworked with fast caching July '90 by Pieter Branderhorst.
(I'm proud of this cache handler, had to get my name on it!)
Caution when modifying any code in here: bugs are possible which
slow the cache substantially but don't cause incorrect results.
Do timing tests for a variety of situations after any change.
*/
#include <string.h>
/* see Fractint.c for a description of the "include" hierarchy */
#include "port.h"
#include "prototyp.h"
#define BOXROW 6
#define BOXCOL 11
#define BOXWIDTH 57
#define BOXDEPTH 12
int disk16bit = 0; /* storing 16 bit values for continuous potential */
static int timetodisplay;
static FILE *fp = NULL;
static int disktarga;
#define BLOCKLEN 64 /* must be a power of 2, must match next */
#define BLOCKSHIFT 6 /* must match above */
#define CACHEMIN 4 /* minimum cache size in Kbytes */
#define CACHEMAX 64 /* maximum cache size in Kbytes */
#define FREEMEM 33 /* try to leave this much far memory unallocated */
#define HASHSIZE 1024 /* power of 2, near CACHEMAX/(BLOCKLEN+8) */
static struct cache { /* structure of each cache entry */
long offset; /* pixel offset in image */
BYTE pixel[BLOCKLEN]; /* one pixel per byte (this *is* faster) */
unsigned int hashlink; /* ptr to next cache entry with same hash */
unsigned int dirty : 1; /* changed since read? */
unsigned int lru : 1; /* recently used? */
} far *cache_end, far *cache_lru, far *cur_cache;
static struct cache far *cache_start = NULL;
static long high_offset; /* highwater mark of writes */
static long seek_offset; /* what we'll get next if we don't seek */
static long cur_offset; /* offset of last block referenced */
static int cur_row;
static long cur_row_base;
static unsigned int far *hash_ptr = NULL;
static int pixelshift;
static int headerlength;
static unsigned int rowsize = 0; /* doubles as a disk video not ok flag */
static unsigned int colsize; /* sydots, *2 when pot16bit */
static BYTE far *charbuf = NULL; /* currently used only with XMM */
/* For expanded memory: */
static BYTE far *expmemoryvideo;
static int oldexppage,expoffset;
static unsigned int emmhandle = 0;
/* For extended memory: */
static unsigned int xmmhandle = 0;
static long extoffset;
static BYTE far *extbufptr, far *endreadbuf, far *endwritebuf;
#define XMMREADLEN 64 /* amount transferred from extended mem at once */
#define XMMWRITELEN 256 /* max amount transferred to extended mem at once,
must be a factor of 1024 and >= XMMREADLEN */
static void _fastcall near findload_cache(long);
static struct cache far * _fastcall near find_cache(long);
static void near write_cache_lru(void);
static void (_fastcall near *put_char)(BYTE);
static void _fastcall near disk_putc(BYTE);
static void _fastcall near exp_putc(BYTE);
static void _fastcall near ext_putc(BYTE);
static BYTE (near *get_char)(void);
static BYTE near disk_getc(void);
static BYTE near exp_getc(void);
static BYTE near ext_getc(void);
static void (_fastcall near *doseek)(long);
static void _fastcall near disk_seek(long);
static void _fastcall near exp_seek(long);
static void _fastcall near ext_seek(long);
int made_dsktemp = 0;
char diskfilename[] = {"FRACTINT.$$$"};
int startdisk()
{
if (!diskisactive)
return(0);
headerlength = disktarga = 0;
return (common_startdisk(sxdots,sydots,colors));
}
int pot_startdisk()
{
int i;
if (dotmode == 11) /* ditch the original disk file */
enddisk();
else
{
static FCODE msg[] = {"clearing 16bit pot work area"};
showtempmsg(msg);
}
headerlength = disktarga = 0;
i = common_startdisk(sxdots,sydots<<1,colors);
cleartempmsg();
if (i == 0)
disk16bit = 1;
return (i);
}
int targa_startdisk(FILE *targafp,int overhead)
{
int i;
if (dotmode == 11) { /* ditch the original disk file, make just the targa */
enddisk(); /* close the 'screen' */
setnullvideo(); /* set readdot and writedot routines to do nothing */
}
headerlength = overhead;
fp = targafp;
disktarga = 1;
i = common_startdisk(sxdots*3,sydots,colors);
high_offset = 100000000L; /* targa not necessarily init'd to zeros */
return (i);
}
int _fastcall common_startdisk(long newrowsize, long newcolsize, int colors)
{
int i,success,freemem;
long memorysize;
unsigned int far *fwd_link = NULL;
struct cache far *ptr1 = NULL;
long longtmp;
unsigned int cache_size;
int exppages;
struct XMM_Move MoveStruct;
BYTE far *tempfar = NULL;
success = 0;
if (diskflag)
enddisk();
if (dotmode == 11) { /* otherwise, real screen also in use, don't hit it */
char buf[20];
helptitle();
setattr(1,0,C_DVID_BKGRD,24*80); /* init rest to background */
for (i = 0; i < BOXDEPTH; ++i)
setattr(BOXROW+i,BOXCOL,C_DVID_LO,BOXWIDTH); /* init box */
putstring(BOXROW+2,BOXCOL+4,C_DVID_HI,"'Disk-Video' mode");
putstring(BOXROW+4,BOXCOL+4,C_DVID_LO,"Screen resolution: ");
sprintf(buf,"%d x %d",sxdots,sydots);
putstring(-1,-1,C_DVID_LO,buf);
if (disktarga)
putstring(-1,-1,C_DVID_LO," 24 bit Targa");
else {
putstring(-1,-1,C_DVID_LO," Colors: ");
sprintf(buf,"%d",colors);
putstring(-1,-1,C_DVID_LO,buf);
}
putstring(BOXROW+8,BOXCOL+4,C_DVID_LO,"Status:");
{
static FCODE o_msg[] = {"clearing the 'screen'"};
char msg[sizeof(o_msg)];
far_strcpy(msg,o_msg);
dvid_status(0,msg);
}
}
cur_offset = seek_offset = high_offset = -1;
cur_row = -1;
if (disktarga)
pixelshift = 0;
else {
pixelshift = 3;
i = 2;
while (i < colors) {
i *= i;
--pixelshift;
}
}
timetodisplay = 1000; /* time-to-display-status counter */
/* allocate cache: try for the max; leave FREEMEMk free if we can get
that much or more; if we can't get that much leave 1/2 of whatever
there is free; demand a certain minimum or nogo at all */
/* allow for LogTable */
if((LogFlag || rangeslen) && !logtable_in_extra_ok() && !Log_Calc)
freemem = 33;
else
freemem = FREEMEM;
for (cache_size = CACHEMAX; cache_size >= CACHEMIN; --cache_size) {
longtmp = ((int)cache_size < freemem) ? (long)cache_size << 11
: (long)(cache_size+freemem) << 10;
if ((tempfar = farmemalloc(longtmp)) != NULL) {
farmemfree(tempfar);
break;
}
}
/* need memory left for LogTable */
if(debugflag==4200) cache_size = CACHEMIN;
longtmp = (long)cache_size << 10;
cache_start = (struct cache far *)farmemalloc(longtmp);
if (cache_size == 64)
--longtmp; /* safety for next line */
cache_end = (cache_lru = cache_start) + longtmp / sizeof(*cache_start);
hash_ptr = (unsigned int far *)farmemalloc((long)(HASHSIZE<<1));
if (cache_start == NULL || hash_ptr == NULL) {
static FCODE msg[]={"*** insufficient free memory for cache buffers ***"};
stopmsg(0,msg);
return(-1);
}
if (dotmode == 11) {
char buf[50];
sprintf(buf,"Cache size: %dK\n\n",cache_size);
putstring(BOXROW+6,BOXCOL+4,C_DVID_LO,buf);
}
/* preset cache to all invalid entries so we don't need free list logic */
for (i = 0; i < HASHSIZE; ++i)
hash_ptr[i] = 0xffff; /* 0xffff marks the end of a hash chain */
longtmp = 100000000L;
for (ptr1 = cache_start; ptr1 < cache_end; ++ptr1) {
ptr1->dirty = ptr1->lru = 0;
fwd_link = hash_ptr
+ (((unsigned short)(longtmp+=BLOCKLEN) >> BLOCKSHIFT) & (HASHSIZE-1));
ptr1->offset = longtmp;
ptr1->hashlink = *fwd_link;
*fwd_link = (char far *)ptr1 - (char far *)cache_start;
}
memorysize = (long)(newcolsize) * newrowsize;
if ((i = (short)memorysize & (BLOCKLEN-1)) != 0)
memorysize += BLOCKLEN - i;
memorysize >>= pixelshift;
diskflag = 1;
rowsize = (unsigned int) newrowsize;
colsize = (unsigned int) newcolsize;
if (debugflag != 420 && debugflag != 422 /* 422=xmm test, 420=disk test */
&& disktarga == 0) {
/* Try Expanded Memory */
exppages = (int)((memorysize + 16383) >> 14);
if ((expmemoryvideo = emmquery()) != NULL
&& (emmhandle = emmallocate(exppages)) != 0) {
if (dotmode == 11)
putstring(BOXROW+2,BOXCOL+23,C_DVID_LO,"Using your Expanded Memory");
for (oldexppage = 0; oldexppage < exppages; oldexppage++)
emmclearpage(oldexppage, emmhandle); /* clear the "video" */
put_char = exp_putc;
get_char = (BYTE (near *)(void))exp_getc;
doseek = exp_seek;
goto common_okend;
}
}
if (debugflag != 420 && disktarga == 0) {
/* Try Extended Memory */
if ((charbuf = farmemalloc((long)XMMWRITELEN)) != NULL
&& xmmquery() != 0
&& (xmmhandle = xmmallocate((unsigned int)(longtmp = (memorysize+1023) >> 10))) != 0) {
if (dotmode == 11)
putstring(BOXROW+2,BOXCOL+23,C_DVID_LO,"Using your Extended Memory");
for (i = 0; i < XMMWRITELEN; i++)
charbuf[i] = 0;
MoveStruct.SourceHandle = 0; /* Source is in conventional memory */
MoveStruct.SourceOffset = (unsigned long)charbuf;
MoveStruct.DestHandle = xmmhandle;
MoveStruct.Length = XMMWRITELEN;
MoveStruct.DestOffset = 0;
longtmp *= (1024/XMMWRITELEN);
while (--longtmp >= 0) {
if ((success = xmmmoveextended(&MoveStruct)) == 0) break;
MoveStruct.DestOffset += XMMWRITELEN;
}
if (success) {
put_char = ext_putc;
get_char = (BYTE (near *)(void))ext_getc;
doseek = ext_seek;
extbufptr = endreadbuf = charbuf;
endwritebuf = charbuf + XMMWRITELEN;
goto common_okend;
}
xmmdeallocate(xmmhandle); /* Clear the memory */
xmmhandle = 0; /* Signal same */
}
}
if (dotmode == 11)
putstring(BOXROW+2,BOXCOL+23,C_DVID_LO,"Using your Disk Drive");
if (disktarga == 0) {
if ((fp = dir_fopen(tempdir,diskfilename,"w+b")) != NULL) {
made_dsktemp = 1;
#if 1 /* added by Michael Snyder */
memset(boxy, 0, 1024);
while (memorysize > 0)
{
static FCODE cancel[] =
"Disk Video initialization interrupted:\n";
fwrite(boxy, (memorysize > 1024) ? 1024 : (int)memorysize, 1, fp);
memorysize -= 1024;
if (keypressed()) /* user interrupt */
if (stopmsg(2, cancel)) /* esc to cancel, else continue */
{
enddisk();
return -2; /* -1 == failed, -2 == cancel */
}
}
#else
while (--memorysize >= 0) /* "clear the screen" (write to the disk) */
putc(0,fp);
#endif
if (ferror(fp)) {
static FCODE msg[]={"*** insufficient free disk space ***"};
stopmsg(0,msg);
fclose(fp);
fp = NULL;
rowsize = 0;
return(-1);
}
fclose(fp); /* so clusters aren't lost if we crash while running */
fp = dir_fopen(tempdir,diskfilename,"r+b"); /* reopen */
}
if (fp == NULL) {
char msg[80];
static FCODE s1[]={"*** Couldn't create "};
sprintf(msg,"%Fs%s",(char far *)s1,diskfilename);
stopmsg(0,msg);
rowsize = 0;
return(-1);
}
}
put_char = disk_putc;
get_char = (BYTE (near *)(void))disk_getc;
doseek = disk_seek;
common_okend:
if (dotmode == 11)
dvid_status(0,"");
return(0);
}
void enddisk()
{
if (fp != NULL) {
if (disktarga) /* flush the cache */
for (cache_lru = cache_start; cache_lru < cache_end; ++cache_lru)
if (cache_lru->dirty)
write_cache_lru();
fclose(fp);
}
if (charbuf != NULL)
farmemfree((void far *)charbuf);
if (hash_ptr != NULL)
farmemfree((void far *)hash_ptr);
if (cache_start != NULL)
farmemfree((void far *)cache_start);
if (emmhandle != 0) /* Expanded memory video? */
emmdeallocate(emmhandle);
if (xmmhandle != 0) /* Extended memory video? */
xmmdeallocate(xmmhandle);
diskflag = rowsize = emmhandle = xmmhandle = disk16bit = 0;
hash_ptr = NULL;
cache_start = NULL;
charbuf = NULL;
fp = NULL;
}
int readdisk(unsigned int col, unsigned int row)
{
int col_subscr;
long offset;
char buf[41];
if (--timetodisplay < 0) { /* time to display status? */
if (dotmode == 11) {
sprintf(buf," reading line %4d",
(row >= (unsigned int)sydots) ? row-sydots : row); /* adjust when potfile */
dvid_status(0,buf);
}
timetodisplay = 1000;
}
if (row != (unsigned int)cur_row) { /* try to avoid ghastly code generated for multiply */
if (row >= colsize) /* while we're at it avoid this test if not needed */
return(0);
cur_row_base = (long)(cur_row = row) * rowsize;
}
if (col >= rowsize)
return(0);
offset = cur_row_base + col;
col_subscr = (short)offset & (BLOCKLEN-1); /* offset within cache entry */
if (cur_offset != (offset & (0L-BLOCKLEN))) /* same entry as last ref? */
findload_cache(offset & (0L-BLOCKLEN));
return (cur_cache->pixel[col_subscr]);
}
int FromMemDisk(long offset, int size, void far *dest)
{
int col_subscr = (int)(offset & (BLOCKLEN - 1));
if (col_subscr + size > BLOCKLEN) /* access violates a */
return 0; /* cache boundary */
if (cur_offset != (offset & (0L-BLOCKLEN))) /* same entry as last ref? */
findload_cache (offset & (0L-BLOCKLEN));
far_memcpy(dest, (void far *) &cur_cache->pixel[col_subscr], size);
cur_cache->dirty = 0;
return 1;
}
void targa_readdisk(unsigned int col, unsigned int row,
BYTE *red, BYTE *green, BYTE *blue)
{
col *= 3;
*blue = (BYTE)readdisk(col,row);
*green = (BYTE)readdisk(++col,row);
*red = (BYTE)readdisk(col+1,row);
}
void writedisk(unsigned int col, unsigned int row, unsigned int color)
{
int col_subscr;
long offset;
char buf[41];
if (--timetodisplay < 0) { /* time to display status? */
if (dotmode == 11) {
sprintf(buf," writing line %4d",
(row >= (unsigned int)sydots) ? row-sydots : row); /* adjust when potfile */
dvid_status(0,buf);
}
timetodisplay = 1000;
}
if (row != (unsigned int)cur_row) { /* try to avoid ghastly code generated for multiply */
if (row >= colsize) /* while we're at it avoid this test if not needed */
return;
cur_row_base = (long)(cur_row = row) * rowsize;
}
if (col >= rowsize)
return;
offset = cur_row_base + col;
col_subscr = (short)offset & (BLOCKLEN-1);
if (cur_offset != (offset & (0L-BLOCKLEN))) /* same entry as last ref? */
findload_cache(offset & (0L-BLOCKLEN));
if (cur_cache->pixel[col_subscr] != (color & 0xff)) {
cur_cache->pixel[col_subscr] = (BYTE)color;
cur_cache->dirty = 1;
}
}
int ToMemDisk(long offset, int size, void far *src)
{
int col_subscr = (int)(offset & (BLOCKLEN - 1));
if (col_subscr + size > BLOCKLEN) /* access violates a */
return 0; /* cache boundary */
if (cur_offset != (offset & (0L-BLOCKLEN))) /* same entry as last ref? */
findload_cache (offset & (0L-BLOCKLEN));
far_memcpy((void far *) &cur_cache->pixel[col_subscr], src, size);
cur_cache->dirty = 1;
return 1;
}
void targa_writedisk(unsigned int col, unsigned int row,
BYTE red, BYTE green, BYTE blue)
{
writedisk(col*=3,row,blue);
writedisk(++col, row,green);
writedisk(col+1, row,red);
}
static void _fastcall near findload_cache(long offset) /* used by read/write */
{
#ifndef XFRACT
unsigned int tbloffset;
int i,j;
unsigned int far *fwd_link;
BYTE far *pixelptr;
BYTE tmpchar;
cur_offset = offset; /* note this for next reference */
/* check if required entry is in cache - lookup by hash */
tbloffset = hash_ptr[ ((unsigned short)offset >> BLOCKSHIFT) & (HASHSIZE-1) ];
while (tbloffset != 0xffff) { /* follow the hash chain */
cur_cache = (struct cache far *)((char far *)cache_start + tbloffset);
if (cur_cache->offset == offset) { /* great, it is in the cache */
cur_cache->lru = 1;
return;
}
tbloffset = cur_cache->hashlink;
}
/* must load the cache entry from backing store */
for(;;) { /* look around for something not recently used */
if (++cache_lru >= cache_end)
cache_lru = cache_start;
if (cache_lru->lru == 0)
break;
cache_lru->lru = 0;
}
if (cache_lru->dirty) /* must write this block before reusing it */
write_cache_lru();
/* remove block at cache_lru from its hash chain */
fwd_link = hash_ptr
+ (((unsigned short)cache_lru->offset >> BLOCKSHIFT) & (HASHSIZE-1));
tbloffset = (char far *)cache_lru - (char far *)cache_start;
while (*fwd_link != tbloffset)
fwd_link = &((struct cache far *)((char far *)cache_start+*fwd_link))->hashlink;
*fwd_link = cache_lru->hashlink;
/* load block */
cache_lru->dirty = 0;
cache_lru->lru = 1;
cache_lru->offset = offset;
pixelptr = &cache_lru->pixel[0];
if (offset > high_offset) { /* never been this high before, just clear it */
high_offset = offset;
for (i = 0; i < BLOCKLEN; ++i)
*(pixelptr++) = 0;
}
else {
if (offset != seek_offset)
(*doseek)(offset >> pixelshift);
seek_offset = offset + BLOCKLEN;
switch (pixelshift) {
case 0:
for (i = 0; i < BLOCKLEN; ++i)
*(pixelptr++) = (*get_char)();
break;
case 1:
for (i = 0; i < BLOCKLEN/2; ++i) {
tmpchar = (*get_char)();
*(pixelptr++) = (BYTE)(tmpchar >> 4);
*(pixelptr++) = (BYTE)(tmpchar & 15);
}
break;
case 2:
for (i = 0; i < BLOCKLEN/4; ++i) {
tmpchar = (*get_char)();
for (j = 6; j >= 0; j -= 2)
*(pixelptr++) = (BYTE)((tmpchar >> j) & 3);
}
break;
case 3:
for (i = 0; i < BLOCKLEN/8; ++i) {
tmpchar = (*get_char)();
for (j = 7; j >= 0; --j)
*(pixelptr++) = (BYTE)((tmpchar >> j) & 1);
}
break;
}
}
/* add new block to its hash chain */
fwd_link = hash_ptr + (((unsigned short)offset >> BLOCKSHIFT) & (HASHSIZE-1));
cache_lru->hashlink = *fwd_link;
*fwd_link = (char far *)cache_lru - (char far *)cache_start;
cur_cache = cache_lru;
#endif
}
static struct cache far * _fastcall near find_cache(long offset)
/* lookup for write_cache_lru */
{
#ifndef XFRACT
unsigned int tbloffset;
struct cache far *ptr1;
tbloffset = hash_ptr[ ((unsigned short)offset >> BLOCKSHIFT) & (HASHSIZE-1) ];
while (tbloffset != 0xffff) {
ptr1 = (struct cache far *)((char far *)cache_start + tbloffset);
if (ptr1->offset == offset)
return (ptr1);
tbloffset = ptr1->hashlink;
}
return (NULL);
#endif
}
static void near write_cache_lru()
{
int i,j;
BYTE far *pixelptr;
long offset;
BYTE tmpchar = 0;
struct cache far *ptr1, far *ptr2;
#define WRITEGAP 4 /* 1 for no gaps */
/* scan back to also write any preceding dirty blocks, skipping small gaps */
ptr1 = cache_lru;
offset = ptr1->offset;
i = 0;
while (++i <= WRITEGAP) {
if ((ptr2 = find_cache(offset -= BLOCKLEN)) != NULL && ptr2->dirty) {
ptr1 = ptr2;
i = 0;
}
}
/* write all consecutive dirty blocks (often whole cache in 1pass modes) */
/* keep going past small gaps */
write_seek:
(*doseek)(ptr1->offset >> pixelshift);
write_stuff:
pixelptr = &ptr1->pixel[0];
switch (pixelshift) {
case 0:
for (i = 0; i < BLOCKLEN; ++i)
(*put_char)(*(pixelptr++));
break;
case 1:
for (i = 0; i < BLOCKLEN/2; ++i) {
tmpchar = (BYTE)(*(pixelptr++) << 4);
tmpchar = (BYTE)(tmpchar + *(pixelptr++));
(*put_char)(tmpchar);
}
break;
case 2:
for (i = 0; i < BLOCKLEN/4; ++i) {
for (j = 6; j >= 0; j -= 2)
tmpchar = (BYTE)((tmpchar << 2) + *(pixelptr++));
(*put_char)(tmpchar);
}
break;
case 3:
for (i = 0; i < BLOCKLEN/8; ++i) {
(*put_char)((BYTE)
((((((((((((((*pixelptr
<< 1)
| *(pixelptr+1) )
<< 1)
| *(pixelptr+2) )
<< 1)
| *(pixelptr+3) )
<< 1)
| *(pixelptr+4) )
<< 1)
| *(pixelptr+5) )
<< 1)
| *(pixelptr+6) )
<< 1)
| *(pixelptr+7)));
pixelptr += 8;
}
break;
}
ptr1->dirty = 0;
offset = ptr1->offset + BLOCKLEN;
if ((ptr1 = find_cache(offset)) != NULL && ptr1->dirty != 0)
goto write_stuff;
i = 1;
while (++i <= WRITEGAP) {
if ((ptr1 = find_cache(offset += BLOCKLEN)) != NULL && ptr1->dirty != 0)
goto write_seek;
}
seek_offset = -1; /* force a seek before next read */
}
/* Seek, get_char, put_char routines follow for expanded, extended, disk.
Note that the calling logic always separates get_char and put_char
sequences with a seek between them. A get_char is never followed by
a put_char nor v.v. without a seek between them.
*/
static void _fastcall near disk_seek(long offset) /* real disk seek */
{
fseek(fp,offset+headerlength,SEEK_SET);
}
static BYTE near disk_getc() /* real disk get_char */
{
return((BYTE)getc(fp));
}
static void _fastcall near disk_putc(BYTE c) /* real disk put_char */
{
putc(c,fp);
}
static void _fastcall near exp_seek(long offset) /* expanded mem seek */
{
int page;
expoffset = (short)offset & 0x3fff;
page = (int)(offset >> 14);
if (page != oldexppage) { /* time to get a new page? */
oldexppage = page;
emmgetpage(page,emmhandle);
}
}
static BYTE near exp_getc() /* expanded get_char */
{
if (expoffset > 0x3fff) /* wrapped into a new page? */
exp_seek((long)(oldexppage+1) << 14);
return(expmemoryvideo[expoffset++]);
}
static void _fastcall near exp_putc(BYTE c) /* expanded put_char */
{
if (expoffset > 0x3fff) /* wrapped into a new page? */
exp_seek((long)(oldexppage+1) << 14);
expmemoryvideo[expoffset++] = c;
}
static void near ext_writebuf(void) /* subrtn for extended mem seek/put_char */
{
#ifndef XFRACT
struct XMM_Move MoveStruct;
MoveStruct.Length = extbufptr - charbuf;
MoveStruct.SourceHandle = 0; /* Source is conventional memory */
MoveStruct.SourceOffset = (unsigned long)charbuf;
MoveStruct.DestHandle = xmmhandle;
MoveStruct.DestOffset = extoffset;
xmmmoveextended(&MoveStruct);
#endif
}
static void _fastcall near ext_seek(long offset) /* extended mem seek */
{
if (extbufptr > endreadbuf) /* only true if there was a put_char sequence */
ext_writebuf();
extoffset = offset;
extbufptr = endreadbuf = charbuf;
}
static BYTE near ext_getc() /* extended get_char */
{
#ifndef XFRACT
struct XMM_Move MoveStruct;
if (extbufptr >= endreadbuf) { /* drained the last read buffer we fetched? */
MoveStruct.Length = XMMREADLEN;
MoveStruct.SourceHandle = xmmhandle; /* Source is extended memory */
MoveStruct.SourceOffset = extoffset;
MoveStruct.DestHandle = 0;
MoveStruct.DestOffset = (unsigned long)charbuf;
xmmmoveextended(&MoveStruct);
extoffset += XMMREADLEN;
endreadbuf = XMMREADLEN + (extbufptr = charbuf);
}
return (*(extbufptr++));
#endif
}
static void _fastcall near ext_putc(BYTE c) /* extended get_char */
{
if (extbufptr >= endwritebuf) { /* filled the local write buffer? */
ext_writebuf();
extoffset += XMMWRITELEN;
extbufptr = charbuf;
}
*(extbufptr++) = c;
}
void dvid_status(int line,char far *msg)
{
char buf[41];
int attrib;
memset(buf,' ',40);
far_memcpy(buf,msg,far_strlen(msg));
buf[40] = 0;
attrib = C_DVID_HI;
if (line >= 100) {
line -= 100;
attrib = C_STOP_ERR;
}
putstring(BOXROW+8+line,BOXCOL+12,attrib,buf);
movecursor(25,80);
}
|