cSurface.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // CMAIN LIB - APPLICATION AND DIRECT WRAPPER
  2. //
  3. // Written by Mauricio Teichmann Ritter
  4. //
  5. // Copyright (C) 2002, Brazil. All rights reserved.
  6. // 
  7. //
  8. // cSurface.h: interface for the cSurface class.
  9. //
  10. //////////////////////////////////////////////////////////////////////
  11. #if !defined(AFX_CSURFACE_H__0C439CBB_20C0_487F_84A6_31D8F436B74A__INCLUDED_)
  12. #define AFX_CSURFACE_H__0C439CBB_20C0_487F_84A6_31D8F436B74A__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. #include "cApplication.h"
  17. struct SURFACE_SOURCE_INFO
  18. {
  19. HINSTANCE m_hInstance;
  20. UINT m_nResource;
  21. int m_iX;
  22. int m_iY;
  23. int m_iWidth;
  24. int m_iHeight;
  25. };
  26. class cSurface  
  27. {
  28. public:
  29. SURFACE_SOURCE_INFO m_srcInfo;
  30. void Restore();
  31. LPDIRECTDRAWSURFACE7 GetSurface();
  32. UINT Width();
  33. UINT Height();
  34. void Destroy();
  35. COLORREF m_ColorKey;
  36. BOOL Draw(LPDIRECTDRAWSURFACE7 lpDest, int iDestX = 0, int iDestY = 0, int iSrcX = 0, int iSrcY = 0, int nWidth = 0, int nHeight = 0);
  37. BOOL Create(int nWidth, int nHeight, COLORREF dwColorKey = -1);
  38. BOOL LoadBitmap(HINSTANCE hInst, UINT nRes, int nX = 0, int nY = 0, int nWidth = 0, int nHeight = 0);
  39. cSurface(HINSTANCE hInst, UINT nResource, int nWidth, int nHeight, COLORREF dwColorKey = -1);
  40. cSurface();
  41. virtual ~cSurface();
  42. protected:
  43. UINT m_Height;
  44. UINT m_Width;
  45. LPDIRECTDRAWSURFACE7 m_pSurface;
  46. };
  47. #endif // !defined(AFX_CSURFACE_H__0C439CBB_20C0_487F_84A6_31D8F436B74A__INCLUDED_)