msgnpc.h

来自「网络游戏魔域的服务端与客户端完整源代码 包括详细的说明文档与开发日志」· C头文件 代码 · 共 56 行

H
56
字号
// MsgNpc.h: interface for the CMsgNpc class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MSGNPC_H__B662BA21_4E11_41B2_B997_584B4833F266__INCLUDED_)
#define AFX_MSGNPC_H__B662BA21_4E11_41B2_B997_584B4833F266__INCLUDED_

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

#include "NetMsg.h"

//define constant ..
enum {
		EVENT_BEACTIVED = 0,				// to server		// 触发
		EVENT_ADDNPC,						// no use
		EVENT_LEAVEMAP,						// to client		// 删除
		EVENT_DELNPC,						// to server
		EVENT_CHANGEPOS,					// to client/server
		EVENT_LAYNPC,						// to client(id=region,data=lookface), answer MsgNpcInfo(CMsgPlayer for statuary)
};

class CMsgNpc   : public CNetMsg  
{
public:
	CMsgNpc();
	virtual ~CMsgNpc();
	BOOL	Create	(int nAction, OBJID id, int nType = 0, DWORD dwData = 0);

public:	
	BOOL			Create		(char* pMsgBuf, DWORD dwSize);
	void			Process		(CGameSocket* pSocket);

protected:
	typedef struct {
		MSGHEAD_DEFINE

		OBJID id;								// may be ID_NONE, EVENT_LAYNPC: region
		union{
			DWORD			dwData;
			struct{
				USHORT			usPosX;
				USHORT			usPosY;
			};
		};
		unsigned short usAction;
		unsigned short usType;
	}MSG_Info;

	MSG_Info*	m_pInfo;

};

#endif // !defined(AFX_MSGNPC_H__B662BA21_4E11_41B2_B997_584B4833F266__INCLUDED_)

⌨️ 快捷键说明

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