⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hanoiview.h

📁 一个经典的智力游戏
💻 H
字号:
// HanoiView.h : interface of the CHanoiView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_HANOIVIEW_H__AF9F7B90_CE0C_45C6_82F7_509226E63A16__INCLUDED_)
#define AFX_HANOIVIEW_H__AF9F7B90_CE0C_45C6_82F7_509226E63A16__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CHanoiView : public CView
{
protected: // create from serialization only
	CHanoiView();
	DECLARE_DYNCREATE(CHanoiView)

// Attributes
public:
	CHanoiDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CHanoiView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	//}}AFX_VIRTUAL

// Implementation
public:
	CTime startTime;
	void move(int a,int b);
	void hanoi(int n,int Column1,int Column2,int Column3);
	void NewGame();
	void DELAY(int mSeconds);
	int steps;
	bool playSnd(CString Filename);
	int NUM;
	int Dest;
	int Source;
	int* DrawType;
	int* state;
	void SetBG(CDC* dc);
	void DrawColumn( int *state, int * DrawType,CDC * dc);
 
	virtual ~CHanoiView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CHanoiView)
	afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	afx_msg void OnEditCut();
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnEditCopy();
	afx_msg void OnHelp();
	afx_msg void OnOptionSet();
	afx_msg void OnEditPaste();
	afx_msg void OnOptionRestart();
	afx_msg void OnDemo();
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnDestroy();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in HanoiView.cpp
inline CHanoiDoc* CHanoiView::GetDocument()
   { return (CHanoiDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_HANOIVIEW_H__AF9F7B90_CE0C_45C6_82F7_509226E63A16__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -