From 115402780850d0e557d139d7531a9a97b8d205b7 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Mon, 1 Sep 2008 22:48:56 +0000 Subject: [PATCH] Replaced type "DWORD" by "u32", except where "DWORD" is used to access the Windows API. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@429 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/DolLoader.h | 2 +- Source/Core/Core/Src/Plugins/Plugin_Video.h | 2 +- Source/PluginSpecs/CommonTypes.h | 1 - Source/PluginSpecs/PluginSpecs.h | 2 -- Source/PluginSpecs/pluginspecs_video.h | 16 ++++++++-------- .../Plugins/Plugin_VideoDX9/Src/D3DTexture.cpp | 16 ++++++++-------- Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.cpp | 18 +++++++++--------- Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.h | 4 ++-- .../Plugin_VideoDX9/Src/OpcodeDecoding.cpp | 2 +- .../Plugin_VideoDX9/Src/TextureCache.cpp | 4 ++-- .../Plugins/Plugin_VideoDX9/Src/TextureCache.h | 6 +++--- Source/Plugins/Plugin_VideoDX9/Src/main.cpp | 2 +- .../Plugin_VideoOGL/Src/OpcodeDecoding.cpp | 4 ++-- Source/Plugins/Plugin_VideoOGL/Src/main.cpp | 2 +- 14 files changed, 39 insertions(+), 42 deletions(-) diff --git a/Source/Core/Core/Src/DolLoader.h b/Source/Core/Core/Src/DolLoader.h index 92390d2a08..a2ec525fc7 100644 --- a/Source/Core/Core/Src/DolLoader.h +++ b/Source/Core/Core/Src/DolLoader.h @@ -41,7 +41,7 @@ public: fread(&m_dolheader, 1, sizeof(SDolHeader), pStream); // swap memory - DWORD* p = (DWORD*)&m_dolheader; + u32* p = (u32*)&m_dolheader; for (int i=0; i<(sizeof(SDolHeader)>>2); i++) p[i] = Common::swap32(p[i]); diff --git a/Source/Core/Core/Src/Plugins/Plugin_Video.h b/Source/Core/Core/Src/Plugins/Plugin_Video.h index f1a7c45018..59067ecd1c 100644 --- a/Source/Core/Core/Src/Plugins/Plugin_Video.h +++ b/Source/Core/Core/Src/Plugins/Plugin_Video.h @@ -38,7 +38,7 @@ typedef void (__cdecl* TVideo_Initialize)(SVideoInitialize*); typedef void (__cdecl* TVideo_Prepare)(); typedef void (__cdecl* TVideo_Shutdown)(); typedef void (__cdecl* TVideo_SendFifoData)(u8*); -typedef void (__cdecl* TVideo_UpdateXFB)(u8*, DWORD, DWORD); +typedef void (__cdecl* TVideo_UpdateXFB)(u8*, u32, u32); typedef BOOL (__cdecl* TVideo_Screenshot)(TCHAR*); typedef void (__cdecl* TVideo_EnterLoop)(); typedef void (__cdecl* TVideo_AddMessage)(const char* pstr, unsigned int milliseconds); diff --git a/Source/PluginSpecs/CommonTypes.h b/Source/PluginSpecs/CommonTypes.h index c20ec05272..133968f359 100644 --- a/Source/PluginSpecs/CommonTypes.h +++ b/Source/PluginSpecs/CommonTypes.h @@ -44,7 +44,6 @@ typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; typedef unsigned int BOOL; -typedef unsigned int DWORD; typedef unsigned long long u64; typedef char s8; diff --git a/Source/PluginSpecs/PluginSpecs.h b/Source/PluginSpecs/PluginSpecs.h index 6d86b6ee50..7894792b01 100644 --- a/Source/PluginSpecs/PluginSpecs.h +++ b/Source/PluginSpecs/PluginSpecs.h @@ -38,12 +38,10 @@ #define BOOL unsigned int #define WORD unsigned short -#define DWORD unsigned int #define HWND void* #define HINSTANCE void* #define INT int #define CHAR char -#define TCHAR char #endif #if defined(__cplusplus) diff --git a/Source/PluginSpecs/pluginspecs_video.h b/Source/PluginSpecs/pluginspecs_video.h index cd1927f3e0..6a1822f66e 100644 --- a/Source/PluginSpecs/pluginspecs_video.h +++ b/Source/PluginSpecs/pluginspecs_video.h @@ -23,14 +23,14 @@ typedef void (*TKeyPressed)(int keycode, BOOL shift, BOOL control); // sets th typedef struct { // fifo registers - volatile DWORD CPBase; - volatile DWORD CPEnd; - DWORD CPHiWatermark; - DWORD CPLoWatermark; + volatile u32 CPBase; + volatile u32 CPEnd; + u32 CPHiWatermark; + u32 CPLoWatermark; volatile s32 CPReadWriteDistance; - volatile DWORD CPWritePointer; - volatile DWORD CPReadPointer; - volatile DWORD CPBreakpoint; + volatile u32 CPWritePointer; + volatile u32 CPReadPointer; + volatile u32 CPBreakpoint; volatile bool bFF_GPReadEnable; volatile bool bFF_BPEnable; @@ -142,7 +142,7 @@ EXPORT void CALL Video_SendFifoData(u8* _uData); // input: pointer to the XFB, width and height of the XFB // output: none // -EXPORT void CALL Video_UpdateXFB(u8* _pXFB, DWORD _dwWidth, DWORD _dwHeight); +EXPORT void CALL Video_UpdateXFB(u8* _pXFB, u32 _dwWidth, u32 _dwHeight); // __________________________________________________________________________________________________ // Function: Video_Screenshot diff --git a/Source/Plugins/Plugin_VideoDX9/Src/D3DTexture.cpp b/Source/Plugins/Plugin_VideoDX9/Src/D3DTexture.cpp index 546610bbc1..d560aba974 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/D3DTexture.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/D3DTexture.cpp @@ -5,7 +5,7 @@ namespace D3D { LPDIRECT3DTEXTURE9 CreateTexture2D(const u8* buffer, const int width, const int height,const int pitch, D3DFORMAT fmt) { - DWORD *pBuffer = (DWORD *)buffer; + u32* pBuffer = (u32*)buffer; LPDIRECT3DTEXTURE9 pTexture; // crazy bitmagic @@ -26,15 +26,15 @@ namespace D3D D3DLOCKED_RECT Lock; pTexture->LockRect(level, &Lock, NULL, 0 ); - DWORD* pIn = pBuffer; + u32* pIn = pBuffer; switch(fmt) { case D3DFMT_A8R8G8B8: { for (int y = 0; y < height; y++) { - DWORD* pBits = (DWORD*)((u8*)Lock.pBits + (y * Lock.Pitch)); - memcpy(pBits,pIn, width * 4); + u32* pBits = (u32*)((u8*)Lock.pBits + (y * Lock.Pitch)); + memcpy(pBits, pIn, width * 4); pIn += pitch; } } @@ -49,18 +49,18 @@ namespace D3D void ReplaceTexture2D(LPDIRECT3DTEXTURE9 pTexture, const u8* buffer, const int width, const int height,const int pitch, D3DFORMAT fmt) { - DWORD *pBuffer = (DWORD *)buffer; - int level=0; + u32* pBuffer = (u32*)buffer; + int level = 0; D3DLOCKED_RECT Lock; pTexture->LockRect(level, &Lock, NULL, 0 ); - DWORD* pIn = pBuffer; + u32* pIn = pBuffer; switch(fmt) { case D3DFMT_A8R8G8B8: { for (int y = 0; y < height; y++) { - DWORD* pBits = (DWORD*)((u8*)Lock.pBits + (y * Lock.Pitch)); + u32* pBits = (u32*)((u8*)Lock.pBits + (y * Lock.Pitch)); memcpy(pBits,pIn, width*4); pIn += pitch; } diff --git a/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.cpp b/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.cpp index b0820a1945..ea3f36afb1 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.cpp @@ -9,17 +9,17 @@ namespace D3D CD3DFont font; #define MAX_NUM_VERTICES 50*6 - struct FONT2DVERTEX { - float x,y,z; - float rhw; - int color; - float tu, tv; + struct FONT2DVERTEX { + float x,y,z; + float rhw; + u32 color; + float tu, tv; }; #define D3DFVF_FONT2DVERTEX (D3DFVF_XYZRHW|D3DFVF_DIFFUSE|D3DFVF_TEX1) #define D3DFVF_FONT3DVERTEX (D3DFVF_XYZ|D3DFVF_DIFFUSE|D3DFVF_NORMAL|D3DFVF_TEX1) - inline FONT2DVERTEX InitFont2DVertex( float x, float y, DWORD color, float tu, float tv ) + inline FONT2DVERTEX InitFont2DVertex( float x, float y, u32 color, float tu, float tv ) { FONT2DVERTEX v; v.x=x; v.y=y; v.z=0; v.rhw=1.0f; v.color = color; v.tu = tu; v.tv = tv; return v; @@ -236,7 +236,7 @@ namespace D3D } } - int CD3DFont::DrawTextScaled( float x, float y, float fXScale, float fYScale, float spacing, int dwColor, const char* strText, bool center ) + int CD3DFont::DrawTextScaled( float x, float y, float fXScale, float fYScale, float spacing, u32 dwColor, const char* strText, bool center ) { SaveRenderStates(); SetRenderStates(); @@ -356,10 +356,10 @@ namespace D3D return S_OK; } - void quad2d(float x1, float y1, float x2, float y2, DWORD color, float u1, float v1, float u2, float v2) + void quad2d(float x1, float y1, float x2, float y2, u32 color, float u1, float v1, float u2, float v2) { SaveRenderStates(); - struct Q2DVertex { float x,y,z,rhw; int color; float u, v; } coords[4] = { + struct Q2DVertex { float x,y,z,rhw; u32 color; float u, v; } coords[4] = { {x1-0.5f, y1-0.5f, 0, 1, color, u1, v1}, {x2-0.5f, y1-0.5f, 0, 1, color, u2, v1}, {x2-0.5f, y2-0.5f, 0, 1, color, u2, v2}, diff --git a/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.h b/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.h index 00ab47b64a..ae7de47d3b 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.h +++ b/Source/Plugins/Plugin_VideoDX9/Src/D3DUtil.h @@ -30,7 +30,7 @@ namespace D3D int Shutdown(); int DrawTextScaled( float x, float y, float fXScale, float fYScale, - float spacing, int dwColor, + float spacing, u32 dwColor, const char* strText, bool center=true ); @@ -40,5 +40,5 @@ namespace D3D extern CD3DFont font; - void quad2d(float x1, float y1, float x2, float y2, DWORD color, float u1=0, float v1=0, float u2=1, float v2=1); + void quad2d(float x1, float y1, float x2, float y2, u32 color, float u1=0, float v1=0, float u2=1, float v2=1); } diff --git a/Source/Plugins/Plugin_VideoDX9/Src/OpcodeDecoding.cpp b/Source/Plugins/Plugin_VideoDX9/Src/OpcodeDecoding.cpp index 3565f80ca2..d5674ff20b 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/OpcodeDecoding.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/OpcodeDecoding.cpp @@ -251,7 +251,7 @@ void Decode(void) u32 Cmd2 = g_pDataReader->Read32(); int dwTransferSize = ((Cmd2>>16)&15) + 1; - DWORD dwAddress = Cmd2 & 0xFFFF; + u32 dwAddress = Cmd2 & 0xFFFF; static u32 pData[16]; for (int i=0; iRead32(); diff --git a/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.cpp b/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.cpp index f2ba9d9fd5..5609a37435 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.cpp @@ -80,7 +80,7 @@ void TextureCache::Cleanup() } } -void TextureCache::Load(int stage, DWORD address, int width, int height, int format, int tlutaddr, int tlutfmt) +void TextureCache::Load(int stage, u32 address, int width, int height, int format, int tlutaddr, int tlutfmt) { if (address == 0) return; @@ -195,7 +195,7 @@ void TextureCache::Load(int stage, DWORD address, int width, int height, int for } -void TextureCache::CopyEFBToRenderTarget(DWORD address, RECT *source) +void TextureCache::CopyEFBToRenderTarget(u32 address, RECT *source) { TexCache::iterator iter; LPDIRECT3DTEXTURE9 tex; diff --git a/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.h b/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.h index 83b4bd17f2..c3370a8515 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.h +++ b/Source/Plugins/Plugin_VideoDX9/Src/TextureCache.h @@ -30,7 +30,7 @@ class TextureCache }; - typedef std::map TexCache; + typedef std::map TexCache; static u8 *temp; static TexCache textures; @@ -40,8 +40,8 @@ public: static void Cleanup(); static void Shutdown(); static void Invalidate(); - static void Load(int stage, DWORD address, int width, int height, int format, int tlutaddr, int tlutfmt); - static void CopyEFBToRenderTarget(DWORD address, RECT *source); + static void Load(int stage, u32 address, int width, int height, int format, int tlutaddr, int tlutfmt); + static void CopyEFBToRenderTarget(u32 address, RECT *source); }; #endif \ No newline at end of file diff --git a/Source/Plugins/Plugin_VideoDX9/Src/main.cpp b/Source/Plugins/Plugin_VideoDX9/Src/main.cpp index f082b65e11..1e3602d07c 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/main.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/main.cpp @@ -202,7 +202,7 @@ void Video_Shutdown(void) DeInit(); } -void Video_UpdateXFB(u8* /*_pXFB*/, DWORD /*_dwWidth*/, DWORD /*_dwHeight*/) +void Video_UpdateXFB(u8* /*_pXFB*/, u32 /*_dwWidth*/, u32 /*_dwHeight*/) { /* ConvertXFB(tempBuffer, _pXFB, _dwWidth, _dwHeight); diff --git a/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp b/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp index 5a9b60caed..59590109c3 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp @@ -218,9 +218,9 @@ void Decode(void) case GX_LOAD_XF_REG: { u32 Cmd2 = g_pDataReader->Read32(); - + int dwTransferSize = ((Cmd2>>16)&15) + 1; - DWORD dwAddress = Cmd2 & 0xFFFF; + u32 dwAddress = Cmd2 & 0xFFFF; static u32 pData[16]; for (int i=0; iRead32(); diff --git a/Source/Plugins/Plugin_VideoOGL/Src/main.cpp b/Source/Plugins/Plugin_VideoOGL/Src/main.cpp index 5b2ebd5b0f..2a20c21f3a 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/main.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/main.cpp @@ -274,7 +274,7 @@ BOOL Video_Screenshot(TCHAR* _szFilename) } -void Video_UpdateXFB(u8* _pXFB, DWORD _dwWidth, DWORD _dwHeight) +void Video_UpdateXFB(u8* _pXFB, u32 _dwWidth, u32 _dwHeight) { }