uibios.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 134 行
C
134 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include <stdlib.h>
#include <dos.h>
#include <conio.h>
#include "uidos.h"
#include "biosui.h"
#include "uidef.h"
static MONITOR ui_data = {
25,
80,
M_VGA,
NULL,
NULL,
NULL,
NULL,
4,
1
};
extern char _B000h[],_B800h[];
extern unsigned int VIDPort;
#define VIDMONOINDXREG 0X03B4
#define VIDCOLRINDXREG 0X03D4
void global win_uisetmono( void )
{
ui_data.colour = M_MONO;
ui_data.screen.origin = MK_FP( _B000h, 0 );
VIDPort = VIDMONOINDXREG;
}
void global win_uisetcolor( int clr )
{
ui_data.colour = clr;
ui_data.screen.origin = MK_FP( _B800h, 0 );
VIDPort = VIDCOLRINDXREG;
}
bool intern initmonitor( void )
/*****************************/
{
if( UIData == NULL ) {
UIData = &ui_data;
}
// UIData->height = 25;
return( TRUE );
}
//static void (far __pascal *HookFunc)(void far *) = NULL;
extern void far HookRtn( unsigned , unsigned );
int intern initbios( void )
/*************************/
{
int initialized;
initialized = FALSE;
if( initmonitor() ) {
UIData->desqview = 0;
UIData->f10menus = TRUE;
if( UIData->colour == M_MONO ) {
UIData->screen.origin = MK_FP( _B000h, 0 );
} else {
UIData->screen.origin = MK_FP( _B800h, 0 );
}
UIData->screen.increment = UIData->width;
uiinitcursor();
initkeyboard();
UIData->mouse_acc_delay = 5; /* ticks */
UIData->mouse_rpt_delay = 1; /* ticks */
UIData->mouse_clk_delay = 5; /* ticks */
UIData->tick_delay = 9; /* ticks */
initialized = TRUE;
}
return( initialized );
}
unsigned global uiclockdelay( unsigned milli )
{
/* this routine converts milli-seconds into platform */
/* dependant units - used to set mouse & timer delays */
return( milli * 18 / 1000 );
}
void intern finibios( void )
/**************************/
{
finikeyboard();
uifinicursor();
}
void intern physupdate( SAREA *area )
{
area = area;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?