Window activation cleanups.
[wine] / graphics / dispdib.c
1 /*
2  * DISPDIB.dll
3  * 
4  * Copyright 1998 Ove Kåven (with some help from Marcus Meissner)
5  *
6  */
7
8 #include <string.h>
9 #include "windef.h"
10 #include "wingdi.h"
11 #include "wine/wingdi16.h"
12 #include "miscemu.h"
13 #include "dispdib.h"
14 #include "vga.h"
15 #include "debugtools.h"
16
17 DEFAULT_DEBUG_CHANNEL(ddraw);
18
19 static int dispdib_multi = 0;
20
21 static WORD DISPDIB_Begin(WORD wFlags)
22 {
23     unsigned Xres,Yres,Depth;
24
25     switch(wFlags&DISPLAYDIB_MODE) {
26         case DISPLAYDIB_MODE_DEFAULT:
27             /* FIXME: is this supposed to autodetect? */
28         case DISPLAYDIB_MODE_320x200x8:
29             Xres=320; Yres=200; Depth=8; break;
30         case DISPLAYDIB_MODE_320x240x8:
31             Xres=320; Yres=240; Depth=8; break;
32         default:
33             return DISPLAYDIB_NOTSUPPORTED;
34     }
35     /* more or less dummy calls to Death/Resurrection, for completeness */
36     /* FIXME: what arguments should they get? */
37     Death16(0);
38     if (VGA_SetMode(Xres,Yres,Depth)) {
39          Resurrection16(0,0,0,0,0,0,0);
40          return DISPLAYDIB_NOTSUPPORTED;
41     }
42     return DISPLAYDIB_NOERROR;
43 }
44
45 static void DISPDIB_End(void)
46 {
47     Resurrection16(0,0,0,0,0,0,0); /* FIXME: arguments */
48     VGA_Exit();
49 }
50
51 static void DISPDIB_Palette(LPBITMAPINFO lpbi)
52 {
53     VGA_SetQuadPalette(lpbi->bmiColors,0,256);
54 }
55
56 static void DISPDIB_Show(LPBITMAPINFOHEADER lpbi,LPSTR lpBits,WORD uFlags)
57 {
58     int Xofs,Yofs,Width=lpbi->biWidth,Height=lpbi->biHeight,Delta;
59     int Pitch = (Width + 3) & ~3;
60     unsigned int sPitch,sWidth,sHeight;
61     LPSTR surf = DOSMEM_MapDosToLinear(0xa0000);
62
63     if (VGA_GetMode(&sHeight,&sWidth,NULL)) return;
64     sPitch=320;
65
66     Delta=(Height<0)*2-1;
67     Height*=-Delta; Pitch*=Delta;
68
69     if (uFlags&DISPLAYDIB_NOCENTER) {
70         Xofs=0; Yofs=0;
71     } else {
72         Xofs=(sWidth-Width)/2;
73         Yofs=(sHeight-Height)/2;
74     }
75     surf += (Yofs*sPitch)+Xofs;
76     if (Pitch<0) lpBits-=Pitch*(Height-1);
77     for (; Height; Height--,lpBits+=Pitch,surf+=sPitch) {
78         memcpy(surf,lpBits,Width);
79     }
80
81     VGA_Poll(0);
82 }
83
84 /*********************************************************************
85  *      DisplayDib      (DISPDIB.1)
86  *
87  *  Disables GDI and takes over the VGA screen to show DIBs in full screen.
88  *
89  * FLAGS
90  *
91  *  DISPLAYDIB_NOPALETTE: don't change palette
92  *  DISPLAYDIB_NOCENTER: don't center bitmap
93  *  DISPLAYDIB_NOWAIT: don't wait (for keypress) before returning
94  *  DISPLAYDIB_BEGIN: start of multiple calls (does not restore the screen)
95  *  DISPLAYDIB_END: end of multiple calls (restores the screen)
96  *  DISPLAYDIB_MODE_DEFAULT: default display mode
97  *  DISPLAYDIB_MODE_320x200x8: Standard VGA 320x200 256 colors
98  *  DISPLAYDIB_MODE_320x240x8: Tweaked VGA 320x240 256 colors
99  *
100  * RETURNS
101  *
102  *  DISPLAYDIB_NOERROR: success
103  *  DISPLAYDIB_NOTSUPPORTED: function not supported
104  *  DISPLAYDIB_INVALIDDIB: null or invalid DIB header
105  *  DISPLAYDIB_INVALIDFORMAT: invalid DIB format
106  *  DISPLAYDIB_INVALIDTASK: not called from current task
107  *
108  * BUGS
109  *
110  *  Waiting for keypresses is not implemented.
111  */
112 WORD WINAPI DisplayDib(
113                 LPBITMAPINFO lpbi, /* [in] DIB header with resolution and palette */
114                 LPSTR lpBits,      /* [in] Bitmap bits to show */
115                 WORD wFlags        /* [in] */
116         )
117 {
118     WORD ret;
119
120     if (wFlags&DISPLAYDIB_END) {
121         if (dispdib_multi) DISPDIB_End();
122         dispdib_multi = 0;
123         return DISPLAYDIB_NOERROR;
124     }
125     if (!dispdib_multi) {
126         ret=DISPDIB_Begin(wFlags);
127         if (ret) return ret;
128     }
129     if (wFlags&DISPLAYDIB_BEGIN) dispdib_multi = 1;
130     if (!(wFlags&DISPLAYDIB_NOPALETTE)) {
131         DISPDIB_Palette(lpbi);
132     }
133     /* FIXME: not sure if it's valid to draw images in DISPLAYDIB_BEGIN, so... */
134     if (lpBits) {
135         DISPDIB_Show(&(lpbi->bmiHeader),lpBits,wFlags);
136     }
137     if (!(wFlags&DISPLAYDIB_NOWAIT)) {
138         FIXME("wait not implemented\n");
139     }
140     if (!dispdib_multi) DISPDIB_End();
141     return DISPLAYDIB_NOERROR;
142 }