Files
harbour-core/harbour/contrib/hbct/video.c
Viktor Szakats 1a7fd213ce 2010-12-21 16:11 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbct/video.c
    ! Silenced msvc warning.
2010-12-21 15:12:19 +00:00

222 lines
5.6 KiB
C

/*
* $Id$
*/
/*
* xHarbour Project source code:
*
* CT3 video functions
*
* CHARPIX, VGAPALETTE, VIDEOTYPE, SETFONT
* Copyright 2004 Phil Krylov <phil@newstar.rinet.ru>
*
* www - http://www.xharbour.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*
* See COPYING for licensing terms.
*
*/
#include "hbapi.h"
#include "hbapigt.h"
#if defined( HB_OS_DOS )
# if defined( __DJGPP__ )
# include <dpmi.h>
# include <go32.h>
# include <pc.h>
# include <sys/farptr.h>
# endif
#endif /* HB_OS_DOS */
# include "ctvideo.ch"
HB_FUNC( CHARPIX )
{
#if defined( __DJGPP__ )
hb_retni( _farpeekw( _dos_ds, 0x485 ) );
#else
hb_retni( 0 );
#endif
}
HB_FUNC( VGAPALETTE )
{
const char * color_string;
char red, green, blue;
int attr;
if( hb_pcount() < 4 )
{
/* Resetting palette registers to default values is not supported yet */
hb_retl( HB_FALSE );
return;
}
color_string = hb_parc( 1 );
if( color_string )
attr = hb_gtColorToN( color_string );
else if( HB_ISNUM( 1 ) )
attr = hb_parni( 1 );
else
attr = -1;
if( attr < 0 || attr >= 16 )
{
/* An invalid argument */
hb_retl( HB_FALSE );
return;
}
red = ( char ) hb_parni( 2 );
green = ( char ) hb_parni( 3 );
blue = ( char ) hb_parni( 4 );
#if defined( __DJGPP__ )
{
__dpmi_regs r;
int iflag;
/* Get palette register for this attribute to BH using BIOS -
* I couldn't manage to get it through ports */
r.x.ax = 0x1007;
r.h.bl = attr;
__dpmi_int( 0x10, &r );
iflag = __dpmi_get_and_disable_virtual_interrupt_state();
/* Wait for vertical retrace (for old VGA cards) */
while( inportb( 0x3DA ) & 8 ) ;
while( !( inportb( 0x3DA ) & 8 ) ) ;
outportb( 0x3C8, r.h.bh );
outportb( 0x3C9, red );
outportb( 0x3C9, green );
outportb( 0x3C9, blue );
if( iflag )
__dpmi_get_and_enable_virtual_interrupt_state();
}
hb_retl( HB_TRUE );
#else
{
HB_SYMBOL_UNUSED( blue );
HB_SYMBOL_UNUSED( green );
HB_SYMBOL_UNUSED( red );
hb_retl( HB_FALSE );
}
#endif
}
HB_FUNC( VIDEOTYPE )
{
#if defined( __DJGPP__ )
__dpmi_regs r;
r.h.ah = 0x12; /* Alternate Select */
r.h.bl = 0x10; /* Get EGA info */
__dpmi_int( 0x10, &r );
if( r.h.bl == 0x10 )
{
/* CGA/HGC/MDA */
hb_retni( VCARD_MONOCHROME );
}
else
{
/* EGA/VGA */
r.x.ax = 0x1A00;
__dpmi_int( 0x10, &r );
if( r.h.al == 0x1A )
hb_retni( VCARD_VGA );
else
hb_retni( VCARD_EGA );
}
#endif
}
HB_FUNC( SETFONT )
{
const char * font = hb_parcx( 1 );
unsigned len = ( unsigned ) hb_parclen( 1 );
int area = hb_parni( 2 );
int offset = 0;
int count = 256;
int height = 16;
if( !area )
area = 1;
if( HB_ISNUM( 3 ) )
offset = hb_parni( 3 );
if( HB_ISNUM( 4 ) )
count = hb_parni( 4 );
if( HB_ISLOG( 3 ) && hb_parl( 3 ) && count != 0 )
height = len / count;
#if defined( __DJGPP__ )
# ifndef __tb_size
# define __tb_size _go32_info_block.size_of_transfer_buffer
# endif
{
__dpmi_regs r;
r.x.ax = 0x1110; /* Load user-defined text-mode display font */
r.h.bl = area - 1;
r.h.bh = height;
r.x.cx = count;
r.x.dx = offset;
r.x.es = __tb >> 4;
r.x.bp = __tb & 0xF;
dosmemput( font, HB_MIN( len, __tb_size ), __tb );
__dpmi_int( 0x10, &r );
hb_retni( 0 );
}
#else
{
HB_SYMBOL_UNUSED( font );
HB_SYMBOL_UNUSED( height );
HB_SYMBOL_UNUSED( offset );
HB_SYMBOL_UNUSED( area );
hb_retni( -2 );
}
#endif
}