天之炼狱1服务器端源文件游戏服务端不完整

源代码在线查看: script.cpp

软件大小: 10419 K
上传用户: a195767236
关键词: 服务器 服务端
下载地址: 免注册下载 普通下载 VIP

相关代码

				//////////////////////////////////////////////////////////////////////////////				// Filename    : Script.cpp				// Written By  : excel96				// Description : 				//////////////////////////////////////////////////////////////////////////////								#include "Script.h"				#include "StringStream.h"								//////////////////////////////////////////////////////////////////////////////				//////////////////////////////////////////////////////////////////////////////				Script::Script()					throw()				{					m_SubjectCount = 0;					m_ContentCount = 0;									for (uint i=0; i						m_SubjectCodes[i] = 0;									for (uint i=0; i						m_ContentCodes[i] = 0;				}								//////////////////////////////////////////////////////////////////////////////				// copy constructor				//////////////////////////////////////////////////////////////////////////////				Script::Script (const Script & script)					throw ()				{					uint i;									for (i=0; i					{						m_Subjects[i] = script.m_Subjects[i];						m_SubjectCodes[i] = script.m_SubjectCodes[i];					}									for (i=0; i					{						m_Contents[i] = script.m_Contents[i];						m_ContentCodes[i] = script.m_ContentCodes[i];					}									m_SubjectCount = script.m_SubjectCount;					m_ContentCount = script.m_ContentCount;				}												void Script::clearContents()				{					m_ContentCount = 0;									for (uint i=0; i					{						m_Contents[i].clear();						m_ContentCodes[i] = 0;					}								}								//////////////////////////////////////////////////////////////////////////////				// assignment operator				//////////////////////////////////////////////////////////////////////////////				const Script & Script::operator = (const Script & script)					throw ()				{					if (&script != this)					{						uint i=0;										for (i=0; i						{							m_Subjects[i] = script.m_Subjects[i];							m_Subjects[i] = script.m_SubjectCodes[i];						}										for (i=0; i						{							m_Contents[i] = script.m_Contents[i];							m_ContentCodes[i] = script.m_ContentCodes[i];						}										m_SubjectCount = script.m_SubjectCount;						m_ContentCount = script.m_ContentCount;					}									return *this;				}								//////////////////////////////////////////////////////////////////////////////				//////////////////////////////////////////////////////////////////////////////				string Script::getSubject(uint index) const 					throw()				{					if (index >= SCRIPT_MAX_SUBJECTS || index >= m_SubjectCount)					{						cerr 						throw ("Script::getSubject() : Out of bounds");					}									return m_Subjects[index];				}								//////////////////////////////////////////////////////////////////////////////				//////////////////////////////////////////////////////////////////////////////				void Script::addSubject(const string& content, DWORD code) 					throw()				{					if (m_SubjectCount >= SCRIPT_MAX_SUBJECTS)					{						cerr 						throw ("Script::addSubject() : Out of bounds");					}									m_Subjects[m_SubjectCount] = content;					m_SubjectCodes[m_SubjectCount] = code;					m_SubjectCount++;				}								//////////////////////////////////////////////////////////////////////////////				//////////////////////////////////////////////////////////////////////////////				string Script::getContent(uint index) const 					throw()				{					if (index >= SCRIPT_MAX_CONTENTS || index >= m_ContentCount)					{						cerr 						throw ("Script::getContent() : Out of bounds");					}									return m_Contents[index];				}								//////////////////////////////////////////////////////////////////////////////				//////////////////////////////////////////////////////////////////////////////				void Script::addContent(const string& content, DWORD code) 					throw()				{					if (m_ContentCount >= SCRIPT_MAX_CONTENTS)					{						cerr 						throw ("Script::addContent() : Out of bounds");					}									m_Contents[m_ContentCount] = content;					m_ContentCodes[m_ContentCount] = code;					m_ContentCount++;				}								//////////////////////////////////////////////////////////////////////////////				//////////////////////////////////////////////////////////////////////////////				string Script::getRandomSubject(void) const					throw()				{					int rvalue = rand()%m_SubjectCount;					return m_Subjects[rvalue];				}								//////////////////////////////////////////////////////////////////////////////				// get debug string				//////////////////////////////////////////////////////////////////////////////				string Script::toString () const					throw ()				{					StringStream msg;					uint         i = 0;									msg 									for (i=0; i						msg 									for (i=0; i						msg 									msg 									return msg.toString();				}											

相关资源