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

📄 msgsynattrinfo.cpp

📁 网络游戏魔域的服务端与客户端完整源代码 包括详细的说明文档与开发日志
💻 CPP
字号:
// MsgSynAttrInfo.cpp: interface for the CMsgSynAttrInfo class.
//
//////////////////////////////////////////////////////////////////////

#include "AllMsg.h"
#include "SynAttr.h"
#include "MapGroup.h"
#pragma	warning(disable:4786)

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMsgSynAttrInfo::CMsgSynAttrInfo()
{
	Init();
	m_pInfo	=(MSG_Info *)m_bufMsg;
}

CMsgSynAttrInfo::~CMsgSynAttrInfo()
{

}

//////////////////////////////////////////////////////////////////////
BOOL CMsgSynAttrInfo::Create(char* pbufMsg, DWORD dwMsgSize)
{
	if (!CNetMsg::Create(pbufMsg, dwMsgSize))
		return false;

	if(_MSG_SYNATTRINFO != this->GetType())
		return false;

	return true;
}

//////////////////////////////////////////////////////////////////////
BOOL CMsgSynAttrInfo::Create(SynAttrInfoStruct* pInfo, CSyndicate* pSyn)		// pSyn may be null
{
	// init
	this->Init();

	// fill info now
	m_pInfo->idSyn			= pInfo->idSyn;
	m_pInfo->ucRankShow		= pInfo->ucRankShow;
	m_pInfo->nProffer		= pInfo->nProffer;
	m_pInfo->usMantle		= pInfo->usMantle;
	m_pInfo->ucLevel		= pInfo->ucLevel;

	if(pSyn)
	{
		m_pInfo->dwSyndicateFund	= pSyn->GetInt(SYNDATA_MONEY);
		m_pInfo->dwSyndicatePopulation	= pSyn->GetSynAmount();
		m_pInfo->dwSyndicateRepute	 = pSyn->GetInt(SYNDATA_REPUTE);
		m_pInfo->ucSynRank = pSyn->GetInt(SYNDATA_RANK);
		SafeCopy(m_pInfo->szLeader, pSyn->GetStr(SYNDATA_LEADERNAME), _MAX_NAMESIZE);
	}
	else
	{
		m_pInfo->dwSyndicateFund		= 0;
		m_pInfo->dwSyndicatePopulation	= 0;
		m_pInfo->szLeader[0]			= 0;
		m_pInfo->dwSyndicateRepute = 0;
		m_pInfo->ucSynRank = 0;
	}

	m_unMsgType	=_MSG_SYNATTRINFO;
	m_unMsgSize	=sizeof(MSG_Info);

	return true;
}

//////////////////////////////////////////////////////////////////////
void CMsgSynAttrInfo::Process(void *pInfo)
{
	ASSERT(!"CMsgSynAttrInfo::Process()");
	return;

#ifdef _MSGDEBUG
	::LogMsg("Process CMsgSynAttrInfo, id:%u", m_info.id);
#endif
}

⌨️ 快捷键说明

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