2006-02-24 04:48:15 +00:00
|
|
|
/*
|
|
|
|
** win32iface.h
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
2006-06-11 01:37:00 +00:00
|
|
|
** Copyright 1998-2006 Randy Heit
|
2006-02-24 04:48:15 +00:00
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
2006-11-19 02:10:25 +00:00
|
|
|
#ifndef DIRECTDRAW_VERSION
|
|
|
|
#define DIRECTDRAW_VERSION 0x0300
|
|
|
|
#endif
|
|
|
|
#ifndef DIRECT3D_VERSION
|
|
|
|
#define DIRECT3D_VERSION 0x0900
|
|
|
|
#endif
|
|
|
|
|
2006-06-11 01:37:00 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#include <ddraw.h>
|
2006-11-19 02:10:25 +00:00
|
|
|
#include <d3d9.h>
|
2006-06-11 01:37:00 +00:00
|
|
|
|
|
|
|
#include "hardware.h"
|
|
|
|
#include "v_video.h"
|
|
|
|
|
2006-11-19 02:10:25 +00:00
|
|
|
EXTERN_CVAR (Bool, vid_vsync)
|
|
|
|
|
2006-06-11 01:37:00 +00:00
|
|
|
class Win32Video : public IVideo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Win32Video (int parm);
|
|
|
|
~Win32Video ();
|
|
|
|
|
2006-11-19 02:10:25 +00:00
|
|
|
bool InitD3D9();
|
|
|
|
void InitDDraw();
|
|
|
|
|
2006-06-11 01:37:00 +00:00
|
|
|
EDisplayType GetDisplayType () { return DISPLAY_Both; }
|
|
|
|
bool FullscreenChanged (bool fs);
|
|
|
|
void SetWindowedScale (float scale);
|
|
|
|
|
|
|
|
DFrameBuffer *CreateFrameBuffer (int width, int height, bool fs, DFrameBuffer *old);
|
|
|
|
|
|
|
|
void StartModeIterator (int bits);
|
|
|
|
bool NextMode (int *width, int *height, bool *letterbox);
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
bool GoFullscreen (bool yes);
|
2006-06-11 01:37:00 +00:00
|
|
|
void BlankForGDI ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct ModeInfo
|
|
|
|
{
|
|
|
|
ModeInfo (int inX, int inY, int inBits, int inRealY)
|
|
|
|
: next (NULL),
|
|
|
|
width (inX),
|
|
|
|
height (inY),
|
|
|
|
bits (inBits),
|
|
|
|
realheight (inRealY)
|
|
|
|
{}
|
|
|
|
|
|
|
|
ModeInfo *next;
|
|
|
|
int width, height, bits;
|
|
|
|
int realheight;
|
|
|
|
} *m_Modes;
|
|
|
|
|
|
|
|
ModeInfo *m_IteratorMode;
|
|
|
|
int m_IteratorBits;
|
|
|
|
bool m_IteratorFS;
|
|
|
|
bool m_IsFullscreen;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
bool m_CalledCoInitialize;
|
|
|
|
|
2006-06-11 01:37:00 +00:00
|
|
|
void AddMode (int x, int y, int bits, int baseHeight);
|
|
|
|
void FreeModes ();
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
static HRESULT WINAPI EnumDDModesCB (LPDDSURFACEDESC desc, void *modes);
|
2006-11-19 02:10:25 +00:00
|
|
|
void AddD3DModes (D3DFORMAT format);
|
|
|
|
void AddLetterboxModes ();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
friend class DDrawFB;
|
2006-11-19 02:10:25 +00:00
|
|
|
friend class D3DFB;
|
2006-06-11 01:37:00 +00:00
|
|
|
};
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
class BaseWinFB : public DFrameBuffer
|
|
|
|
{
|
2006-11-19 02:10:25 +00:00
|
|
|
DECLARE_ABSTRACT_CLASS(BaseWinFB, DFrameBuffer)
|
2006-02-24 04:48:15 +00:00
|
|
|
public:
|
|
|
|
BaseWinFB (int width, int height) : DFrameBuffer (width, height), Windowed (true) {}
|
|
|
|
|
|
|
|
bool IsFullscreen () { return !Windowed; }
|
|
|
|
virtual void Blank () = 0;
|
|
|
|
virtual bool PaintToWindow () = 0;
|
2006-11-19 02:10:25 +00:00
|
|
|
virtual HRESULT GetHR () = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool CreateResources () = 0;
|
|
|
|
virtual void ReleaseResources () = 0;
|
|
|
|
|
|
|
|
bool Windowed;
|
|
|
|
|
|
|
|
friend int I_PlayMovie (const char *name);
|
|
|
|
friend class Win32Video;
|
2006-11-19 02:10:25 +00:00
|
|
|
|
|
|
|
BaseWinFB() {}
|
2006-02-24 04:48:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DDrawFB : public BaseWinFB
|
|
|
|
{
|
2006-11-19 02:10:25 +00:00
|
|
|
DECLARE_CLASS(DDrawFB, BaseWinFB)
|
2006-02-24 04:48:15 +00:00
|
|
|
public:
|
|
|
|
DDrawFB (int width, int height, bool fullscreen);
|
|
|
|
~DDrawFB ();
|
|
|
|
|
|
|
|
bool IsValid ();
|
|
|
|
bool Lock ();
|
|
|
|
bool Lock (bool buffer);
|
|
|
|
void Unlock ();
|
|
|
|
void ForceBuffering (bool force);
|
|
|
|
void Update ();
|
|
|
|
PalEntry *GetPalette ();
|
|
|
|
void GetFlashedPalette (PalEntry pal[256]);
|
|
|
|
void UpdatePalette ();
|
|
|
|
bool SetGamma (float gamma);
|
|
|
|
bool SetFlash (PalEntry rgb, int amount);
|
|
|
|
void GetFlash (PalEntry &rgb, int &amount);
|
|
|
|
int GetPageCount ();
|
|
|
|
int QueryNewPalette ();
|
|
|
|
void PaletteChanged ();
|
2006-11-19 02:10:25 +00:00
|
|
|
void SetVSync (bool vsync);
|
|
|
|
HRESULT GetHR ();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void Blank ();
|
|
|
|
bool PaintToWindow ();
|
|
|
|
|
2006-06-11 01:37:00 +00:00
|
|
|
private:
|
|
|
|
enum LockSurfRes { NoGood, Good, GoodWasLost };
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
bool CreateResources ();
|
|
|
|
void ReleaseResources ();
|
|
|
|
bool CreateSurfacesAttached ();
|
|
|
|
bool CreateSurfacesComplex ();
|
|
|
|
bool CreateBlitterSource ();
|
|
|
|
LockSurfRes LockSurf (LPRECT lockrect, LPDIRECTDRAWSURFACE surf);
|
|
|
|
void RebuildColorTable ();
|
|
|
|
void MaybeCreatePalette ();
|
|
|
|
bool AddBackBuf (LPDIRECTDRAWSURFACE *surface, int num);
|
|
|
|
HRESULT AttemptRestore ();
|
|
|
|
|
|
|
|
HRESULT LastHR;
|
|
|
|
BYTE GammaTable[3][256];
|
|
|
|
PalEntry SourcePalette[256];
|
|
|
|
PALETTEENTRY PalEntries[256];
|
2006-11-19 02:10:25 +00:00
|
|
|
DWORD FlipFlags;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
LPDIRECTDRAWPALETTE Palette;
|
|
|
|
LPDIRECTDRAWSURFACE PrimarySurf;
|
|
|
|
LPDIRECTDRAWSURFACE BackSurf;
|
|
|
|
LPDIRECTDRAWSURFACE BackSurf2;
|
|
|
|
LPDIRECTDRAWSURFACE BlitSurf;
|
|
|
|
LPDIRECTDRAWSURFACE LockingSurf;
|
|
|
|
LPDIRECTDRAWCLIPPER Clipper;
|
|
|
|
HPALETTE GDIPalette;
|
|
|
|
BYTE *ClipRegion;
|
|
|
|
DWORD ClipSize;
|
|
|
|
PalEntry Flash;
|
|
|
|
int FlashAmount;
|
|
|
|
int BufferCount;
|
|
|
|
int BufferPitch;
|
|
|
|
int TrueHeight;
|
|
|
|
float Gamma;
|
|
|
|
|
|
|
|
bool NeedGammaUpdate;
|
|
|
|
bool NeedPalUpdate;
|
|
|
|
bool NeedResRecreate;
|
|
|
|
bool MustBuffer; // The screen is not 8-bit, or there is no backbuffer
|
|
|
|
bool BufferingNow; // Most recent Lock was buffered
|
|
|
|
bool WasBuffering; // Second most recent Lock was buffered
|
|
|
|
bool Write8bit;
|
|
|
|
bool UpdatePending; // On final unlock, call Update()
|
|
|
|
bool UseBlitter; // Use blitter to copy from sys mem to video mem
|
|
|
|
bool UsePfx;
|
2006-11-19 02:10:25 +00:00
|
|
|
|
|
|
|
DDrawFB() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class D3DFB : public BaseWinFB
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(D3DFB, BaseWinFB)
|
|
|
|
public:
|
|
|
|
D3DFB (int width, int height, bool fullscreen);
|
|
|
|
~D3DFB ();
|
|
|
|
|
|
|
|
bool IsValid ();
|
|
|
|
bool Lock ();
|
|
|
|
bool Lock (bool buffered);
|
|
|
|
void Unlock ();
|
|
|
|
void Update ();
|
|
|
|
PalEntry *GetPalette ();
|
|
|
|
void GetFlashedPalette (PalEntry palette[256]);
|
|
|
|
void UpdatePalette ();
|
|
|
|
bool SetGamma (float gamma);
|
|
|
|
bool SetFlash (PalEntry rgb, int amount);
|
|
|
|
void GetFlash (PalEntry &rgb, int &amount);
|
|
|
|
int GetPageCount ();
|
|
|
|
bool IsFullscreen ();
|
|
|
|
void PaletteChanged ();
|
|
|
|
int QueryNewPalette ();
|
|
|
|
void Blank ();
|
|
|
|
bool PaintToWindow ();
|
|
|
|
void SetVSync (bool vsync);
|
|
|
|
HRESULT GetHR ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool CreateResources();
|
|
|
|
void ReleaseResources();
|
|
|
|
bool CreateFBTexture();
|
|
|
|
bool CreatePaletteTexture();
|
|
|
|
bool CreateVertexes();
|
2006-12-01 01:17:45 +00:00
|
|
|
void DoOffByOneCheck();
|
2006-11-19 02:10:25 +00:00
|
|
|
void UploadPalette();
|
|
|
|
void FillPresentParameters (D3DPRESENT_PARAMETERS *pp, bool fullscreen, bool vsync);
|
|
|
|
bool Reset();
|
|
|
|
|
|
|
|
BYTE GammaTable[256];
|
|
|
|
PalEntry SourcePalette[256];
|
|
|
|
float FlashConstants[2][4];
|
|
|
|
PalEntry FlashColor;
|
|
|
|
int FlashAmount;
|
|
|
|
int TrueHeight;
|
|
|
|
float Gamma;
|
|
|
|
bool UpdatePending;
|
|
|
|
bool NeedPalUpdate;
|
|
|
|
bool NeedGammaUpdate;
|
|
|
|
D3DFORMAT FBFormat;
|
|
|
|
D3DFORMAT PalFormat;
|
|
|
|
int FBWidth, FBHeight;
|
2006-12-01 01:17:45 +00:00
|
|
|
int OffByOneAt;
|
2006-11-19 02:10:25 +00:00
|
|
|
bool VSync;
|
|
|
|
|
|
|
|
IDirect3DDevice9 *D3DDevice;
|
|
|
|
IDirect3DVertexBuffer9 *VertexBuffer;
|
|
|
|
IDirect3DTexture9 *FBTexture;
|
|
|
|
IDirect3DTexture9 *PaletteTexture;
|
|
|
|
IDirect3DPixelShader9 *PalTexShader;
|
|
|
|
|
|
|
|
D3DFB() {}
|
2006-02-24 04:48:15 +00:00
|
|
|
};
|
2006-11-19 02:10:25 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define STARTLOG do { if (!dbg) dbg = fopen ("k:/vid.log", "w"); } while(0)
|
|
|
|
#define STOPLOG do { if (dbg) { fclose (dbg); dbg=NULL; } } while(0)
|
|
|
|
#define LOG(x) do { if (dbg) { fprintf (dbg, x); fflush (dbg); } } while(0)
|
|
|
|
#define LOG1(x,y) do { if (dbg) { fprintf (dbg, x, y); fflush (dbg); } } while(0)
|
|
|
|
#define LOG2(x,y,z) do { if (dbg) { fprintf (dbg, x, y, z); fflush (dbg); } } while(0)
|
|
|
|
#define LOG3(x,y,z,zz) do { if (dbg) { fprintf (dbg, x, y, z, zz); fflush (dbg); } } while(0)
|
|
|
|
#define LOG4(x,y,z,a,b) do { if (dbg) { fprintf (dbg, x, y, z, a, b); fflush (dbg); } } while(0)
|
|
|
|
#define LOG5(x,y,z,a,b,c) do { if (dbg) { fprintf (dbg, x, y, z, a, b, c); fflush (dbg); } } while(0)
|
|
|
|
FILE *dbg;
|
|
|
|
#else
|
|
|
|
#define STARTLOG
|
|
|
|
#define STOPLOG
|
|
|
|
#define LOG(x)
|
|
|
|
#define LOG1(x,y)
|
|
|
|
#define LOG2(x,y,z)
|
|
|
|
#define LOG3(x,y,z,zz)
|
|
|
|
#define LOG4(x,y,z,a,b)
|
|
|
|
#define LOG5(x,y,z,a,b,c)
|
|
|
|
#endif
|