#ifdef HAS_DOS_HGC /* Copyright (c) 1993 - 1994 Roland Emmerich & Heinz W. Werntges. All rights reserved. Distributed by Free Software Foundation, Inc. This file is part of HP2xx. HP2xx is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer to the GNU General Public License, Version 2 or later, for full details. Everyone is granted permission to copy, modify and redistribute HP2xx, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with HP2xx so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ /** to_hgc.c: HGC preview part of project "hp2xx" (PC only) ** ** 93/06/16 V 1.00 RE Originating ** 93/07/25 V 1.01 HWW Minor adaptations to hp2xx standard ** 94/02/14 V 1.10a HWW Adapted to changes in hp2xx.h **/ /** ** NOTE: ** For white lines on a black background, uncomment the next ** #define statement: **/ /* #define HGC_INVERSE */ #define HGC_XMAX 720 #define HGC_YMAX 348 #include #include #include #include #include #include #include #include "bresnham.h" #include "hp2xx.h" /** ** HGC registers **/ static unsigned int IndexReg = 0x03B4; static unsigned int DatenReg = 0x03B5; static unsigned int ModusReg = 0x03B8; static unsigned int KonfigReg = 0x03Bf; /** ** Pointer to HGC video buffer (4 memory banks) **/ static unsigned int HGCBank[] = { 0xB000, 0xB200, 0xB400, 0xB600 }; /** ** set_pixel_HGC(x, y) set point at x, y **/ static void set_pixel_HGC(int x, int y) { unsigned int bank; unsigned int pkt_addr; unsigned char far *screen; unsigned char pixel[] = { 128, 64, 32, 16, 8, 4, 2, 1 }; /** ** The pixels are put directly into the screen buffer of the HGC, ** therefore it is necessary to check the address range **/ if ((x >= 0) && (x < HGC_XMAX) && (y >= 0) && (y < HGC_YMAX)) { bank = y % 4; pkt_addr = x >> 3; pkt_addr += 90 * ((y - bank) >> 2); screen = MK_FP(HGCBank[bank], pkt_addr); #ifdef HGC_INVERSE screen[0] |= pixel[x % 8]; #else screen[0] &= ~pixel[x % 8]; #endif } } /** ** switch to HGC text mode **/ static void set_HGC_textmode(void) { unsigned char i; unsigned int j; unsigned int far *screen; unsigned char TextModus[] = { 0x61, 0x50, 0x52, 0x0f, 0x19, 0x06, 0x19, 0x19, 0x02, 0x0d, 0x0b, 0x0c, 0x00, 0x00, 0x00, 0x01 }; outportb(KonfigReg, 0x00); /** Partial access to HGC **/ outportb(ModusReg, 0x20); /** Set text mode and turn off **/ /** the display **/ for (i = 0; i < 16; i++) { outportb(IndexReg, i); /** set registers to textmode **/ outportb(DatenReg, TextModus[i]); } screen = MK_FP(HGCBank[0], 0); /** Erase text screen memory, **/ for (j = 0; j < 0x2000; j++) /** i.e. fill with spaces 0x20 **/ screen[j] = 0x0720; /** and attribut "white" 0x07. **/ outportb(ModusReg, 0x28); /** Turn on the display **/ } /** ** Switch to HGC graphic mode **/ static void set_HGC_graphmode(void) { unsigned char i; unsigned int j, k, bkgrnd; unsigned int far *screen; unsigned char GrafikModus[] = { 0x35, 0x2d, 0x2e, 0x07, 0x5b, 0x02, 0x57, 0x57, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }; outportb(KonfigReg, 0x03); /** Full access to HGC **/ outportb(ModusReg, 0x02); /** Switch to graphics mode **/ /** and turn off the display **/ for (i = 0; i < 16; i++) { outportb(IndexReg, i); outportb(DatenReg, GrafikModus[i]); } #ifdef HGC_INVERSE bkgrnd = 0x0000; #else bkgrnd = 0xFFFF; #endif for (k = 0; k < 4; k++) for (j = 0; j < 0x2000; j++) { screen = MK_FP(HGCBank[k], 0); /** Erase graphics memory **/ screen[j] = bkgrnd; } outportb(ModusReg, 0x0A); /** Turn on display **/ } /** ** Main entry point **/ int PicBuf_to_HGC(const GEN_PAR * pg, const OUT_PAR * po) { int row_c, x, y, xoff, yoff, color_index; const RowBuf *row; const PicBuf *pb; if (!pg->quiet) { Eprintf("\nHGCpreview follows.\n"); Eprintf("Press to start and end graphics mode\n"); SilentWait(); } pb = po->picbuf; xoff = po->xoff * po->dpi_x / 25.4; yoff = po->yoff * po->dpi_y / 25.4; if ((!pg->quiet) && (((pb->nb << 3) + xoff >= HGC_XMAX) || (pb->nr + yoff >= HGC_YMAX))) { Eprintf ("\n\007WARNING: Picture won't fit on a standard HGC!\n"); Eprintf("Current range: (%d..%d) x (%d..%d) pels\n", xoff, (pb->nb << 3) + xoff, yoff, pb->nr + yoff); Eprintf("Continue anyway (y/n)?: "); if (toupper(getchar()) == 'N') return 1; } set_HGC_graphmode(); for (row_c = 0, y = pb->nr + yoff - 1; row_c < pb->nr; row_c++, y--) { row = get_RowBuf(pb, row_c); if (row == NULL) continue; for (x = 0; x < pb->nc; x++) { color_index = index_from_RowBuf(row, x, pb); if (color_index != xxBackground) set_pixel_HGC(x + xoff, y); } } SilentWait(); set_HGC_textmode(); return 0; } #endif