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

游戏引擎

开发平台:

Visual C++

  1. // Menu.h: interface for the CMenu class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MENU_H__6EA9431C_32DB_4F6A_BAD7_40217E191381__INCLUDED_)
  5. #define AFX_MENU_H__6EA9431C_32DB_4F6A_BAD7_40217E191381__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "audio.h"
  10. class CMenu  
  11. {
  12. public:
  13. CMenu(float FOVangle);
  14. virtual ~CMenu();
  15. int  DoMenu(HWND hWnd,HDC hDC,bool IsMainMenu);
  16. void DoMainMenu(HDC hDC);
  17. void DoSaveAndLoadMenu(HDC hDC);
  18. void DoSinglePlayerMenu(HDC hDC);
  19. void DoMultiPlayerMenu(HDC hDC);
  20. void DoOptionMenu(HDC hDC);
  21. void DoAboutMenu(HDC hDC,bool IsAboutEngine);
  22. void DoExitMenu();
  23. void DoNewGameMenu(HDC hDC);
  24. void DoLoadGameMenu(HDC hDC);
  25. void DoSaveGameMenu(HDC hDC);
  26. void DrawPicture(int xpos,int ypos,AUX_RGBImageRec *pData);
  27. bool LoadPicture(char* filename,AUX_RGBImageRec *pData);
  28. void DeletePicture(AUX_RGBImageRec *pData);
  29. protected:
  30. bool m_bExit,m_bLBtnDown,m_bLBtnUp;
  31. POINT m_mpos;
  32. int m_iCurMenu,m_iOldMenu;
  33. int GameReturn;
  34. CAudio  cSelect;
  35. CAudio  cBkg;
  36. };
  37. #endif // !defined(AFX_MENU_H__6EA9431C_32DB_4F6A_BAD7_40217E191381__INCLUDED_)