120 lines
3.8 KiB
C
120 lines
3.8 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file wdxGraphicsPipe9.h
|
||
|
* @author drose
|
||
|
* @date 2002-12-20
|
||
|
*/
|
||
|
|
||
|
#ifndef WDXGRAPHICSPIPE9_H
|
||
|
#define WDXGRAPHICSPIPE9_H
|
||
|
|
||
|
#include "pandabase.h"
|
||
|
#include "winGraphicsPipe.h"
|
||
|
#include "pvector.h"
|
||
|
#include "dxgsg9base.h"
|
||
|
#include <ddraw.h>
|
||
|
|
||
|
/**
|
||
|
* This graphics pipe represents the interface for creating DirectX9 graphics
|
||
|
* windows.
|
||
|
*/
|
||
|
class EXPCL_PANDADX wdxGraphicsPipe9 : public WinGraphicsPipe {
|
||
|
public:
|
||
|
wdxGraphicsPipe9();
|
||
|
virtual ~wdxGraphicsPipe9();
|
||
|
|
||
|
virtual std::string get_interface_name() const;
|
||
|
static PT(GraphicsPipe) pipe_constructor();
|
||
|
|
||
|
virtual PT(GraphicsDevice) make_device(void *scrn);
|
||
|
|
||
|
bool find_best_depth_format(DXScreenData &Display, D3DDISPLAYMODE &Test_display_mode,
|
||
|
D3DFORMAT *pBestFmt, bool bWantStencil,
|
||
|
bool bForce16bpp, bool bVerboseMode = false) const;
|
||
|
|
||
|
void search_for_valid_displaymode(DXScreenData &scrn,
|
||
|
UINT RequestedX_Size, UINT RequestedY_Size,
|
||
|
bool bWantZBuffer, bool bWantStencil,
|
||
|
UINT *p_supported_screen_depths_mask,
|
||
|
bool *pCouldntFindAnyValidZBuf,
|
||
|
D3DFORMAT *pSuggestedPixFmt,
|
||
|
bool bForce16bppZBuffer,
|
||
|
bool bVerboseMode = false);
|
||
|
|
||
|
bool special_check_fullscreen_resolution(DXScreenData &scrn, UINT x_size,UINT y_size);
|
||
|
|
||
|
protected:
|
||
|
virtual PT(GraphicsOutput) make_output(const std::string &name,
|
||
|
const FrameBufferProperties &fb_prop,
|
||
|
const WindowProperties &win_prop,
|
||
|
int flags,
|
||
|
GraphicsEngine *engine,
|
||
|
GraphicsStateGuardian *gsg,
|
||
|
GraphicsOutput *host,
|
||
|
int retry,
|
||
|
bool &precertify);
|
||
|
|
||
|
private:
|
||
|
bool init();
|
||
|
bool find_all_card_memavails();
|
||
|
|
||
|
static BOOL WINAPI
|
||
|
dx7_driver_enum_callback(GUID *pGUID, TCHAR *strDesc, TCHAR *strName,
|
||
|
VOID *argptr, HMONITOR hm);
|
||
|
|
||
|
private:
|
||
|
HINSTANCE _hDDrawDLL;
|
||
|
HINSTANCE _hD3D9_DLL;
|
||
|
LPDIRECT3D9 __d3d9;
|
||
|
|
||
|
|
||
|
typedef LPDIRECT3D9 (WINAPI *Direct3DCreate9_ProcPtr)(UINT SDKVersion);
|
||
|
typedef HRESULT (WINAPI * LPDIRECTDRAWCREATEEX)(GUID FAR * lpGuid, LPVOID *lplpDD, REFIID iid, IUnknown FAR *pUnkOuter);
|
||
|
|
||
|
LPDIRECTDRAWCREATEEX _DirectDrawCreateEx;
|
||
|
LPDIRECTDRAWENUMERATEEX _DirectDrawEnumerateExA;
|
||
|
Direct3DCreate9_ProcPtr _Direct3DCreate9;
|
||
|
|
||
|
// CardID is used in DX7 lowmem card-classification pass so DX8 can
|
||
|
// establish correspondence bw DX7 mem info & DX8 device
|
||
|
struct CardID {
|
||
|
HMONITOR _monitor;
|
||
|
DWORD _max_available_video_memory;
|
||
|
bool _is_low_memory_card;
|
||
|
GUID DX7_DeviceGUID;
|
||
|
DWORD VendorID, DeviceID;
|
||
|
};
|
||
|
|
||
|
typedef pvector<CardID> CardIDs;
|
||
|
CardIDs _card_ids;
|
||
|
|
||
|
public:
|
||
|
static TypeHandle get_class_type() {
|
||
|
return _type_handle;
|
||
|
}
|
||
|
static void init_type() {
|
||
|
WinGraphicsPipe::init_type();
|
||
|
register_type(_type_handle, "wdxGraphicsPipe9",
|
||
|
WinGraphicsPipe::get_class_type());
|
||
|
}
|
||
|
virtual TypeHandle get_type() const {
|
||
|
return get_class_type();
|
||
|
}
|
||
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
||
|
|
||
|
private:
|
||
|
static TypeHandle _type_handle;
|
||
|
|
||
|
friend class wdxGraphicsWindow9;
|
||
|
};
|
||
|
|
||
|
#include "wdxGraphicsPipe9.I"
|
||
|
|
||
|
#endif
|