MakeSkinView.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:2k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // MakeSkinView.h : interface of the CMakeSkinView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAKESKINVIEW_H__AF260AAD_45A3_11D6_812C_5254AB37CDC9__INCLUDED_)
  5. #define AFX_MAKESKINVIEW_H__AF260AAD_45A3_11D6_812C_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMakeSkinView : public CView
  10. {
  11. protected: // create from serialization only
  12. CMakeSkinView();
  13. DECLARE_DYNCREATE(CMakeSkinView)
  14. // Attributes
  15. public:
  16. CMakeSkinDoc* GetDocument();
  17. // Operations
  18. public:
  19. char id[10],version;
  20. int width,height;
  21.     
  22. unsigned char  baseA[256][256][3];
  23. unsigned char  baseB[256][256][3];
  24. unsigned char  mask1[256][256];
  25. unsigned char  mask2[256][256];
  26. unsigned char  mask3[256][256];
  27. bool ReadPicture();
  28. bool MakeTerSkin();
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CMakeSkinView)
  32. public:
  33. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  34. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  35. protected:
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CMakeSkinView();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CMakeSkinView)
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. #ifndef _DEBUG  // debug version in MakeSkinView.cpp
  53. inline CMakeSkinDoc* CMakeSkinView::GetDocument()
  54.    { return (CMakeSkinDoc*)m_pDocument; }
  55. #endif
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_MAKESKINVIEW_H__AF260AAD_45A3_11D6_812C_5254AB37CDC9__INCLUDED_)