变更DirectX SDK版本-DirectX8升级DirectX9(一)

最近要做项工作,需要将游戏代码中原本的DirectX8.1SDK库升级到9.0。

    整理思路如下:

    一、命名统一问题

    D8和D9内部细节本来就有很多变化,但先从表面上来看,D8和D9的类型函数名字,都存在或多或少的

差异,为了整合以前的代码,如果将类型名字一一作改变,那代码变动量将十分的巨大。通过宏命名方式

将会节省很多时间,举例如下:

#ifdef D3DX9
#include <d3dx9.h>
typedef IDirect3DDevice9 Device;
typedef IDirect3D9 Direct3D;
typedef IDirect3DVertexBuffer9 VertexBuffer ;
typedef IDirect3DIndexBuffer9 IndexBuffer;
typedef IDirect3DTexture9 Texture ;
typedef D3DMATERIAL9 Material;
typedef IDirect3DSurface9 Surface;
typedef void YVOID;
#define Direct3DCreate Direct3DCreate9
#endif

#ifdef D3DX8
#include <d3dx8.h>
typedef BYTE YVOID;
typedef IDirect3DDevice8 Device;
typedef IDirect3D8 Direct3D;
typedef IDirect3DVertexBuffer8 VertexBuffer ;
typedef IDirect3DIndexBuffer8 IndexBuffer;
typedef IDirect3DTexture8 Texture ;
typedef D3DMATERIAL8 Material;
typedef IDirect3DSurface8 Surface;
#define Direct3DCreate Direct3DCreate8
#endif

     可以将其放入一个公用的文件中,如Common.h文件,然后需要用到的包含此文件。同理,D8和D9所需要的库也不通,可通过同样的方式,将其库导入。
ifdef D3DX9
#pragma comment(lib , "d3d9")
#pragma comment(lib , "d3dx9")
#endif
#ifdef D3DX8
#pragma comment(lib , "d3d8")
#pragma comment(lib , "d3dx8")
#endif

      原游戏代码虽然十分巨大,通过宏命名后,将会使代码结构变的简单,如果再想更改到别的版本将会省很多工作量。剩下的大部分工作,将是对各个函数,方法属性的细节作版本不同的细微调整。

你可能感兴趣的:(sdk)