加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MapView.h 940 Bytes
一键复制 编辑 原始数据 按行查看 历史
Shaker 提交于 2014-08-12 21:17 . *提交到Git@OSC
#pragma once
#include "GameMir.h"
// CMapView
class CMapView : public CWnd
{
DECLARE_DYNAMIC(CMapView)
public:
CMapView(CGameMir& game);
virtual ~CMapView();
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnPaint();
CDC m_DC;
private:
bool m_DrawOk;
static UINT DrawMapThread( LPVOID pParam );
CGameMir& m_Game;
DWORD m_W,m_H;
std::string m_LastMap;
std::vector<POINT> m_Path;
public:
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
private:
void ResetScroll(void);
public:
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
void SetPath(std::vector<POINT> path);
public:
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化