Added alphanumeric mode to the VGA emulation.
Use service thread for the periodic refresh.
This commit is contained in:
parent
9b89998113
commit
c9307edf0c
153
graphics/vga.c
153
graphics/vga.c
|
@ -7,11 +7,11 @@
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
#include "winuser.h"
|
#include "wincon.h"
|
||||||
#include "wine/winuser16.h"
|
|
||||||
#include "miscemu.h"
|
#include "miscemu.h"
|
||||||
#include "vga.h"
|
#include "vga.h"
|
||||||
#include "ddraw.h"
|
#include "ddraw.h"
|
||||||
|
#include "services.h"
|
||||||
#include "debugtools.h"
|
#include "debugtools.h"
|
||||||
|
|
||||||
DEFAULT_DEBUG_CHANNEL(ddraw)
|
DEFAULT_DEBUG_CHANNEL(ddraw)
|
||||||
|
@ -20,9 +20,32 @@ static IDirectDraw *lpddraw = NULL;
|
||||||
static IDirectDrawSurface *lpddsurf;
|
static IDirectDrawSurface *lpddsurf;
|
||||||
static IDirectDrawPalette *lpddpal;
|
static IDirectDrawPalette *lpddpal;
|
||||||
static DDSURFACEDESC sdesc;
|
static DDSURFACEDESC sdesc;
|
||||||
static WORD poll_timer;
|
static LONG vga_polling,vga_refresh;
|
||||||
static CRITICAL_SECTION vga_crit;
|
static HANDLE poll_timer;
|
||||||
static int vga_polling,vga_refresh;
|
|
||||||
|
static void VGA_DeinstallTimer(void)
|
||||||
|
{
|
||||||
|
if (poll_timer) {
|
||||||
|
SERVICE_Delete( poll_timer );
|
||||||
|
poll_timer = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void VGA_InstallTimer(unsigned Rate)
|
||||||
|
{
|
||||||
|
VGA_DeinstallTimer();
|
||||||
|
if (!poll_timer)
|
||||||
|
poll_timer = SERVICE_AddTimer( Rate, VGA_Poll, 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
HANDLE VGA_AlphaConsole(void)
|
||||||
|
{
|
||||||
|
/* this assumes that no Win32 redirection has taken place, but then again,
|
||||||
|
* only 16-bit apps are likely to use this part of Wine... */
|
||||||
|
return GetStdHandle(STD_OUTPUT_HANDLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*** GRAPHICS MODE ***/
|
||||||
|
|
||||||
int VGA_SetMode(unsigned Xres,unsigned Yres,unsigned Depth)
|
int VGA_SetMode(unsigned Xres,unsigned Yres,unsigned Depth)
|
||||||
{
|
{
|
||||||
|
@ -51,10 +74,8 @@ int VGA_SetMode(unsigned Xres,unsigned Yres,unsigned Depth)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
vga_refresh=0;
|
vga_refresh=0;
|
||||||
InitializeCriticalSection(&vga_crit);
|
|
||||||
MakeCriticalSectionGlobal(&vga_crit);
|
|
||||||
/* poll every 20ms (50fps should provide adequate responsiveness) */
|
/* poll every 20ms (50fps should provide adequate responsiveness) */
|
||||||
poll_timer = CreateSystemTimer( 20, VGA_Poll );
|
VGA_InstallTimer(20000);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -72,8 +93,7 @@ int VGA_GetMode(unsigned*Height,unsigned*Width,unsigned*Depth)
|
||||||
void VGA_Exit(void)
|
void VGA_Exit(void)
|
||||||
{
|
{
|
||||||
if (lpddraw) {
|
if (lpddraw) {
|
||||||
SYSTEM_KillSystemTimer(poll_timer);
|
VGA_DeinstallTimer();
|
||||||
DeleteCriticalSection(&vga_crit);
|
|
||||||
IDirectDrawSurface_Release(lpddsurf);
|
IDirectDrawSurface_Release(lpddsurf);
|
||||||
lpddsurf=NULL;
|
lpddsurf=NULL;
|
||||||
IDirectDraw_Release(lpddraw);
|
IDirectDraw_Release(lpddraw);
|
||||||
|
@ -124,37 +144,96 @@ void VGA_Unlock(void)
|
||||||
IDirectDrawSurface_Unlock(lpddsurf,sdesc.u1.lpSurface);
|
IDirectDrawSurface_Unlock(lpddsurf,sdesc.u1.lpSurface);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We are called from SIGALRM, aren't we? We should _NOT_ do synchronization
|
/*** TEXT MODE ***/
|
||||||
* stuff!
|
|
||||||
*/
|
int VGA_SetAlphaMode(unsigned Xres,unsigned Yres)
|
||||||
void VGA_Poll( WORD timer )
|
{
|
||||||
|
COORD siz;
|
||||||
|
|
||||||
|
if (lpddraw) VGA_Exit();
|
||||||
|
|
||||||
|
/* the xterm is slow, so refresh only every 200ms (5fps) */
|
||||||
|
VGA_InstallTimer(200000);
|
||||||
|
|
||||||
|
siz.x = Xres;
|
||||||
|
siz.y = Yres;
|
||||||
|
SetConsoleScreenBufferSize(VGA_AlphaConsole(),siz);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void VGA_GetAlphaMode(unsigned*Xres,unsigned*Yres)
|
||||||
|
{
|
||||||
|
CONSOLE_SCREEN_BUFFER_INFO info;
|
||||||
|
GetConsoleScreenBufferInfo(VGA_AlphaConsole(),&info);
|
||||||
|
if (Xres) *Xres=info.dwSize.x;
|
||||||
|
if (Yres) *Yres=info.dwSize.y;
|
||||||
|
}
|
||||||
|
|
||||||
|
void VGA_SetCursorPos(unsigned X,unsigned Y)
|
||||||
|
{
|
||||||
|
COORD pos;
|
||||||
|
|
||||||
|
pos.x = X;
|
||||||
|
pos.y = Y;
|
||||||
|
SetConsoleCursorPosition(VGA_AlphaConsole(),pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
void VGA_GetCursorPos(unsigned*X,unsigned*Y)
|
||||||
|
{
|
||||||
|
CONSOLE_SCREEN_BUFFER_INFO info;
|
||||||
|
GetConsoleScreenBufferInfo(VGA_AlphaConsole(),&info);
|
||||||
|
if (X) *X=info.dwCursorPosition.x;
|
||||||
|
if (Y) *Y=info.dwCursorPosition.y;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*** CONTROL ***/
|
||||||
|
|
||||||
|
void CALLBACK VGA_Poll( ULONG_PTR arg )
|
||||||
{
|
{
|
||||||
char *dat;
|
char *dat;
|
||||||
unsigned Pitch,Height,Width;
|
unsigned Pitch,Height,Width;
|
||||||
char *surf;
|
char *surf;
|
||||||
int Y;
|
int Y,X;
|
||||||
/* int X; */
|
|
||||||
|
|
||||||
EnterCriticalSection(&vga_crit);
|
if (!InterlockedExchangeAdd(&vga_polling, 1)) {
|
||||||
if (!vga_polling) {
|
|
||||||
vga_polling++;
|
|
||||||
LeaveCriticalSection(&vga_crit);
|
|
||||||
/* FIXME: optimize by doing this only if the data has actually changed
|
/* FIXME: optimize by doing this only if the data has actually changed
|
||||||
* (in a way similar to DIBSection, perhaps) */
|
* (in a way similar to DIBSection, perhaps) */
|
||||||
surf = VGA_Lock(&Pitch,&Height,&Width,NULL);
|
if (lpddraw) {
|
||||||
if (!surf) return;
|
/* graphics mode */
|
||||||
dat = DOSMEM_MapDosToLinear(0xa0000);
|
surf = VGA_Lock(&Pitch,&Height,&Width,NULL);
|
||||||
/* copy from virtual VGA frame buffer to DirectDraw surface */
|
if (!surf) return;
|
||||||
for (Y=0; Y<Height; Y++,surf+=Pitch,dat+=Width) {
|
dat = DOSMEM_MapDosToLinear(0xa0000);
|
||||||
memcpy(surf,dat,Width);
|
/* copy from virtual VGA frame buffer to DirectDraw surface */
|
||||||
/*for (X=0; X<Width; X++) if (dat[X]) TRACE(ddraw,"data(%d) at (%d,%d)\n",dat[X],X,Y);*/
|
for (Y=0; Y<Height; Y++,surf+=Pitch,dat+=Width) {
|
||||||
|
memcpy(surf,dat,Width);
|
||||||
|
/*for (X=0; X<Width; X++) if (dat[X]) TRACE(ddraw,"data(%d) at (%d,%d)\n",dat[X],X,Y);*/
|
||||||
|
}
|
||||||
|
VGA_Unlock();
|
||||||
|
} else {
|
||||||
|
/* text mode */
|
||||||
|
CHAR_INFO ch[80];
|
||||||
|
COORD siz, off;
|
||||||
|
SMALL_RECT dest;
|
||||||
|
HANDLE con = VGA_AlphaConsole();
|
||||||
|
|
||||||
|
VGA_GetAlphaMode(&Width,&Height);
|
||||||
|
dat = DOSMEM_MapDosToLinear(0xb8000);
|
||||||
|
siz.x = 80; siz.y = 1;
|
||||||
|
off.x = 0; off.y = 0;
|
||||||
|
/* copy from virtual VGA frame buffer to console */
|
||||||
|
for (Y=0; Y<Height; Y++) {
|
||||||
|
dest.Top=Y; dest.Bottom=Y;
|
||||||
|
for (X=0; X<Width; X++) {
|
||||||
|
ch[X].Char.AsciiChar = *dat++;
|
||||||
|
ch[X].Attributes = *dat++;
|
||||||
|
}
|
||||||
|
dest.Left=0; dest.Right=Width+1;
|
||||||
|
WriteConsoleOutputA(con, ch, siz, off, &dest);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
VGA_Unlock();
|
|
||||||
vga_refresh=1;
|
vga_refresh=1;
|
||||||
EnterCriticalSection(&vga_crit);
|
|
||||||
vga_polling--;
|
|
||||||
}
|
}
|
||||||
LeaveCriticalSection(&vga_crit);
|
InterlockedDecrement(&vga_polling);
|
||||||
}
|
}
|
||||||
|
|
||||||
static BYTE palreg,palcnt;
|
static BYTE palreg,palcnt;
|
||||||
|
@ -183,13 +262,17 @@ BYTE VGA_ioport_in( WORD port )
|
||||||
case 0x3da:
|
case 0x3da:
|
||||||
/* since we don't (yet?) serve DOS VM requests while VGA_Poll is running,
|
/* since we don't (yet?) serve DOS VM requests while VGA_Poll is running,
|
||||||
we need to fake the occurrence of the vertical refresh */
|
we need to fake the occurrence of the vertical refresh */
|
||||||
if (lpddraw) {
|
ret=vga_refresh?0x00:0x08;
|
||||||
ret=vga_refresh?0x00:0x08;
|
vga_refresh=0;
|
||||||
vga_refresh=0;
|
|
||||||
} else ret=0x08;
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ret=0xff;
|
ret=0xff;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VGA_Clean(void)
|
||||||
|
{
|
||||||
|
VGA_Exit();
|
||||||
|
VGA_DeinstallTimer();
|
||||||
|
}
|
||||||
|
|
|
@ -8,8 +8,10 @@
|
||||||
#ifndef __WINE_VGA_H
|
#ifndef __WINE_VGA_H
|
||||||
#define __WINE_VGA_H
|
#define __WINE_VGA_H
|
||||||
|
|
||||||
|
#include "winbase.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
|
|
||||||
|
/* graphics mode */
|
||||||
int VGA_SetMode(unsigned Xres,unsigned Yres,unsigned Depth);
|
int VGA_SetMode(unsigned Xres,unsigned Yres,unsigned Depth);
|
||||||
int VGA_GetMode(unsigned*Height,unsigned*Width,unsigned*Depth);
|
int VGA_GetMode(unsigned*Height,unsigned*Width,unsigned*Depth);
|
||||||
void VGA_Exit(void);
|
void VGA_Exit(void);
|
||||||
|
@ -17,8 +19,17 @@ void VGA_SetPalette(PALETTEENTRY*pal,int start,int len);
|
||||||
void VGA_SetQuadPalette(RGBQUAD*color,int start,int len);
|
void VGA_SetQuadPalette(RGBQUAD*color,int start,int len);
|
||||||
LPSTR VGA_Lock(unsigned*Pitch,unsigned*Height,unsigned*Width,unsigned*Depth);
|
LPSTR VGA_Lock(unsigned*Pitch,unsigned*Height,unsigned*Width,unsigned*Depth);
|
||||||
void VGA_Unlock(void);
|
void VGA_Unlock(void);
|
||||||
void VGA_Poll(WORD timer);
|
|
||||||
|
/* text mode */
|
||||||
|
int VGA_SetAlphaMode(unsigned Xres,unsigned Yres);
|
||||||
|
void VGA_GetAlphaMode(unsigned*Xres,unsigned*Yres);
|
||||||
|
void VGA_SetCursorPos(unsigned X,unsigned Y);
|
||||||
|
void VGA_GetCursorPos(unsigned*X,unsigned*Y);
|
||||||
|
|
||||||
|
/* control */
|
||||||
|
void CALLBACK VGA_Poll(ULONG_PTR arg);
|
||||||
void VGA_ioport_out(WORD port, BYTE val);
|
void VGA_ioport_out(WORD port, BYTE val);
|
||||||
BYTE VGA_ioport_in(WORD port);
|
BYTE VGA_ioport_in(WORD port);
|
||||||
|
void VGA_Clean(void);
|
||||||
|
|
||||||
#endif /* __WINE_VGA_H */
|
#endif /* __WINE_VGA_H */
|
||||||
|
|
Loading…
Reference in New Issue