aboutsummaryrefslogtreecommitdiffstats
path: root/dibcall.c
blob: 771e4054930978d66266f089812de427a2fbfc64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*****************************************************************************

Copyright (c) 2022  Michal Necasek

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

*****************************************************************************/

#include "winhack.h"
#include <gdidefs.h>
#include <dibeng.h>
#include <minivdd.h>

#include "minidrv.h"

#ifdef SVGA
# include "svga_all.h"
# include <string.h>
#endif

/*
 * What's this all about? Most of the required exported driver functions can
 * be passed straight to the DIB Engine. The DIB Engine in some cases requires
 * an additional parameter.
 *
 * See the dibthunk.asm module for functions that can be handled easily. Note
 * that although the logic could be implemented in C, it can be done more
 * efficiently in assembly. Forwarders turn into simple jumps, and functions
 * with an extra parameter can be implemented with very small overhead, saving
 * stack space and extra copying.
 *
 * This module deals with the very few functions that need additional logic but
 * are not hardware specific.
 */

/* from DDK98 */
typedef struct
{
   int     xHotSpot, yHotSpot;
   int     cx, cy;
   int     cbWidth;
   BYTE    Planes, BitsPixel;
} CURSORSHAPE;

#ifdef SVGA
BOOL cursorVisible = FALSE;
#endif

#pragma code_seg( _TEXT )

#ifdef SVGA
# ifndef HWCURSOR
static LONG cursorX = 0;
static LONG cursorY = 0;
static LONG cursorW = 0;
static LONG cursorH = 0;
static LONG cursorHX = 0;
static LONG cursorHY = 0;

void update_cursor()
{	
	if(wBpp == 32)
	{
		LONG x = cursorX - cursorHX;
		LONG y = cursorY - cursorHY;
		LONG w = cursorW;
		LONG h = cursorH;
		
		if(x < 0) x = 0;
		if(y < 0) y = 0;
		if(x+w > wScreenX) w = wScreenX - x;
		if(y+h > wScreenY) y = wScreenY - h;
		
		if(w > 0 && h > 0)
		{
			SVGA_Update(x, y, w, h);
		}
	}
}
# endif
#endif

void WINAPI __loadds MoveCursor(WORD absX, WORD absY)
{
	if(wEnabled)
	{
#ifdef SVGA
		if(wBpp == 32)
		{
# ifdef HWCURSOR
			SVGA_MoveCursor(cursorVisible, absX, absY, 0);
# else
	    DIB_MoveCursorExt(absX, absY, lpDriverPDevice);
	    update_cursor();
	    cursorX = absX;
	    cursorY = absY;
	    update_cursor();
# endif
			return;
		}
#endif
		DIB_MoveCursorExt(absX, absY, lpDriverPDevice);
	}
}

WORD WINAPI __loadds SetCursor_driver(CURSORSHAPE __far *lpCursor)
{
	if(wEnabled)
	{
#ifdef SVGA
		if(wBpp == 32)
		{
# ifdef HWCURSOR
			void __far* ANDMask = NULL;
			void __far* XORMask = NULL;
			SVGAFifoCmdDefineCursor cur;
			
			if(lpCursor != NULL)
			{
				cur.id = 0;
				cur.hotspotX = lpCursor->xHotSpot;
				cur.hotspotY = lpCursor->yHotSpot;
				cur.width    = lpCursor->cx;
				cur.height   = lpCursor->cy;
				cur.andMaskDepth = 1;
				cur.xorMaskDepth = 1;
				
				dbg_printf("cx: %d, cy: %d, cbWidth: %d, Planes: %d\n", lpCursor->cx, lpCursor->cy, lpCursor->cbWidth, lpCursor->Planes);
				
				SVGA_BeginDefineCursor(&cur, &ANDMask, &XORMask);
				
				if(ANDMask)
				{
					_fmemcpy(ANDMask, lpCursor+1, lpCursor->cbWidth*lpCursor->cy);
				}
				
				if(XORMask)
				{
					BYTE __far *ptr = (BYTE __far *)(lpCursor+1);
					ptr += lpCursor->cbWidth*lpCursor->cy;
					
					_fmemcpy(XORMask, ptr, lpCursor->cbWidth*lpCursor->cy);
				}
				
				SVGA_FIFOCommitAll();
				cursorVisible = TRUE;
				return 1;
			}
			else
			{
				/* virtual bug on SVGA_MoveCursor(FALSE, ...)
				 * so if is cursor NULL, create empty
				 */
				cur.id = 0;
				cur.hotspotX = 0;
				cur.hotspotY = 0;
				cur.width    = 32;
				cur.height   = 32;
				cur.andMaskDepth = 1;
				cur.xorMaskDepth = 1;
				
				SVGA_BeginDefineCursor(&cur, &ANDMask, &XORMask);
				
				if(ANDMask) _fmemset(ANDMask, 0xFF, 4*32);
				if(XORMask) _fmemset(XORMask, 0, 4*32);
				
				SVGA_FIFOCommitAll();
				
				SVGA_MoveCursor(FALSE, 0, 0, 0);
				cursorVisible = FALSE;
				return 1;
			}
# else
			if(lpCursor != NULL)
			{
				cursorW = lpCursor->cx;
				cursorH = lpCursor->cy;
				cursorHX = lpCursor->xHotSpot;
				cursorHY = lpCursor->yHotSpot;
			}
# endif
		} // 32bpp
#endif
		DIB_SetCursorExt(lpCursor, lpDriverPDevice);
		return 1;
	}
	return 0;
}

/* Exported as DISPLAY.104 */
void WINAPI __loadds CheckCursor( void )
{
	if( wEnabled ) {
#ifdef SVGA
# ifndef HWCURSOR
		DIB_CheckCursorExt( lpDriverPDevice );
		if(wBpp == 32)
		{
			update_cursor();
		}
# else
	if(wBpp != 32) DIB_CheckCursorExt( lpDriverPDevice );
# endif
#else
		DIB_CheckCursorExt( lpDriverPDevice );
#endif
	}
}

/* If there is no hardware screen-to-screen BitBlt, there's no point in
 * this and we can just forward BitBlt to the DIB Engine.
 */
#ifdef HWBLT

extern BOOL WINAPI (* BitBltDevProc)( LPDIBENGINE, WORD, WORD, LPPDEVICE, WORD, WORD,
                                      WORD, WORD, DWORD, LPBRUSH, LPDRAWMODE );

/* See if a hardware BitBlt can be done. */
BOOL WINAPI __loadds BitBlt( LPDIBENGINE lpDestDev, WORD wDestX, WORD wDestY, LPPDEVICE lpSrcDev,
                    WORD wSrcX, WORD wSrcY, WORD wXext, WORD wYext, DWORD dwRop3,
                    LPBRUSH lpPBrush, LPDRAWMODE lpDrawMode )
{
    WORD    dstFlags = lpDestDev->deFlags;

    /* The destination must be video memory and not busy. */
    if( (dstFlags & VRAM) && !(dstFlags & BUSY) ) {
        /* If palette translation is needed, only proceed if source
         * and destination device are identical.
         */
        if( !(dstFlags & PALETTE_XLAT) || (lpDestDev == lpSrcDev) ) {
            /* If there is a hardware acceleration callback, use it. */
            if( BitBltDevProc ) {
                return( BitBltDevProc( lpDestDev, wDestX, wDestY, lpSrcDev, wSrcX, wSrcY, wXext, wYext, dwRop3, lpPBrush, lpDrawMode ) );
            }
        }
    }
    return( DIB_BitBlt( lpDestDev, wDestX, wDestY, lpSrcDev, wSrcX, wSrcY, wXext, wYext, dwRop3, lpPBrush, lpDrawMode ) );
}

#endif

#ifndef ETO_GLYPH_INDEX
#define ETO_GLYPH_INDEX 0x0010
#endif

DWORD WINAPI __loadds ExtTextOut( LPDIBENGINE lpDestDev, WORD wDestXOrg, WORD wDestYOrg, LPRECT lpClipRect,
                                        LPSTR lpString, int wCount, LPFONTINFO lpFontInfo, LPDRAWMODE lpDrawMode,
                                        LPTEXTXFORM lpTextXForm, LPSHORT lpCharWidths, LPRECT lpOpaqueRect, WORD wOptions )
{
/*	if(wOptions & ETO_GLYPH_INDEX)
	{
		return 0x80000000UL;
	}*/
	
	/*if(wCount > 0)
	{
		dbg_printf("ExtTextOut: ");
	 	for(i = 0; i < wCount; i++)
	 	{
	 		dbg_printf("%c", lpString[i]);
	 	}
 	  dbg_printf("(%X) %d\n", lpString[0], wCount);
  }*/
	
	return DIB_ExtTextOut(lpDestDev, wDestXOrg, wDestYOrg, lpClipRect, lpString, wCount, lpFontInfo, lpDrawMode, lpTextXForm, lpCharWidths, lpOpaqueRect, wOptions);
}