1998-11-01 13:51:47 +01:00
|
|
|
/*
|
|
|
|
* VGA emulation
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2008-10-18 19:21:31 +02:00
|
|
|
* Copyright 1998 Ove Kåven
|
1998-11-01 13:51:47 +01:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1998-11-01 13:51:47 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_VGA_H
|
|
|
|
#define __WINE_VGA_H
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
2000-02-03 01:46:29 +01:00
|
|
|
#include "winbase.h"
|
1999-02-09 16:46:25 +01:00
|
|
|
#include "wingdi.h"
|
1998-11-01 13:51:47 +01:00
|
|
|
|
2009-02-03 06:24:03 +01:00
|
|
|
/*
|
|
|
|
* VGA VESA definitions
|
|
|
|
*/
|
|
|
|
/* mode descriptor */
|
|
|
|
enum modetype {TEXT=0, GRAPHIC=1};
|
|
|
|
/* Wine internal information about video modes */
|
|
|
|
typedef struct {
|
|
|
|
WORD Mode;
|
|
|
|
BOOL ModeType;
|
|
|
|
WORD TextCols; /* columns of text in display */
|
|
|
|
WORD TextRows; /* rows of text in display */
|
|
|
|
WORD CharWidth;
|
|
|
|
WORD CharHeight;
|
|
|
|
WORD Width; /* width of display in pixels */
|
|
|
|
WORD Height; /* height of display in pixels */
|
|
|
|
WORD Depth; /* bits per pixel */
|
|
|
|
WORD Colors; /* total available colors */
|
|
|
|
WORD ScreenPages;
|
|
|
|
BOOL Supported;
|
|
|
|
} VGA_MODE;
|
|
|
|
|
|
|
|
extern const VGA_MODE VGA_modelist[];
|
|
|
|
|
|
|
|
/* all vga modes */
|
|
|
|
const VGA_MODE *VGA_GetModeInfo(WORD mode);
|
|
|
|
int VGA_SetMode(WORD mode);
|
|
|
|
|
2000-02-03 01:46:29 +01:00
|
|
|
/* graphics mode */
|
1998-11-01 13:51:47 +01:00
|
|
|
int VGA_GetMode(unsigned*Height,unsigned*Width,unsigned*Depth);
|
|
|
|
void VGA_SetPalette(PALETTEENTRY*pal,int start,int len);
|
2002-03-20 01:55:05 +01:00
|
|
|
void VGA_SetColor16(int reg,int color);
|
2002-05-14 05:57:26 +02:00
|
|
|
char VGA_GetColor16(int reg);
|
|
|
|
void VGA_Set16Palette(char *Table);
|
|
|
|
void VGA_Get16Palette(char *Table);
|
2002-08-13 05:17:42 +02:00
|
|
|
void VGA_SetWindowStart(int start);
|
2004-12-13 22:19:01 +01:00
|
|
|
int VGA_GetWindowStart(void);
|
2004-09-20 21:11:30 +02:00
|
|
|
void VGA_ShowMouse(BOOL show);
|
2008-11-10 01:55:59 +01:00
|
|
|
void VGA_UpdatePalette(void);
|
|
|
|
void VGA_SetPaletteIndex(unsigned index);
|
|
|
|
void VGA_SetBright(BOOL bright);
|
2008-11-10 03:17:50 +01:00
|
|
|
void VGA_WritePixel(unsigned color, unsigned page, unsigned col, unsigned row);
|
2000-02-03 01:46:29 +01:00
|
|
|
|
|
|
|
/* text mode */
|
2002-11-24 23:15:56 +01:00
|
|
|
void VGA_InitAlphaMode(unsigned*Xres,unsigned*Yres);
|
|
|
|
void VGA_SetAlphaMode(unsigned Xres,unsigned Yres);
|
2002-07-30 01:51:57 +02:00
|
|
|
BOOL VGA_GetAlphaMode(unsigned*Xres,unsigned*Yres);
|
2002-07-01 20:13:52 +02:00
|
|
|
void VGA_SetCursorShape(unsigned char start_options,unsigned char end);
|
2000-02-03 01:46:29 +01:00
|
|
|
void VGA_SetCursorPos(unsigned X,unsigned Y);
|
2002-11-24 23:15:56 +01:00
|
|
|
void VGA_GetCursorPos(unsigned*X,unsigned*Y);
|
2000-05-23 23:14:11 +02:00
|
|
|
void VGA_WriteChars(unsigned X,unsigned Y,unsigned ch,int attr,int count);
|
2002-04-08 22:11:28 +02:00
|
|
|
void VGA_PutChar(BYTE ascii);
|
2002-11-24 23:15:56 +01:00
|
|
|
void VGA_ClearText(unsigned row1, unsigned col1,
|
2002-04-11 19:33:15 +02:00
|
|
|
unsigned row2, unsigned col2,
|
|
|
|
BYTE attr);
|
2002-06-01 01:06:46 +02:00
|
|
|
void VGA_ScrollUpText(unsigned row1, unsigned col1,
|
2002-04-11 19:33:15 +02:00
|
|
|
unsigned row2, unsigned col2,
|
|
|
|
unsigned lines, BYTE attr);
|
2002-06-01 01:06:46 +02:00
|
|
|
void VGA_ScrollDownText(unsigned row1, unsigned col1,
|
2002-04-11 19:33:15 +02:00
|
|
|
unsigned row2, unsigned col2,
|
|
|
|
unsigned lines, BYTE attr);
|
2002-11-24 23:15:56 +01:00
|
|
|
void VGA_GetCharacterAtCursor(BYTE *ascii, BYTE *attr);
|
2000-02-03 01:46:29 +01:00
|
|
|
|
|
|
|
/* control */
|
1998-11-01 13:51:47 +01:00
|
|
|
void VGA_ioport_out(WORD port, BYTE val);
|
1998-11-08 16:06:31 +01:00
|
|
|
BYTE VGA_ioport_in(WORD port);
|
2000-02-03 01:46:29 +01:00
|
|
|
void VGA_Clean(void);
|
1998-11-01 13:51:47 +01:00
|
|
|
|
|
|
|
#endif /* __WINE_VGA_H */
|