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

📄 dbes_db_comment.h

📁 MMORPG游戏服务器端架构及函数
💻 H
字号:
#ifndef _DBES_DB_COMMENT_
#define _DBES_DB_COMMENT_

/* must been first include begin */
#include "..\ProjectX_Common\ProjectX_Copyright.h"
#include "..\ProjectX_Common\ProjectX_Common.h"
/* must been first include end */

/************************************************************************
以下为说明在服务器端DB上采用的内部分局
由于为非正式版及时间+技术原因,DB操作没有过多考虑性能
或者提供FIXME!
以下为约定:
All content is case sensitive,all use ASCII code,UNICODE is tranvers to.
Rechange size of string got no support

DB Provider		: MSSQL or MySQL or other compatibility DBMS
DB Name			: ProjectX
DB UserID		: su_macrosu
DB UserPass		: ps_macrosu

ProjectX.Table format as follow:
	| first_line		+	second_line			+	N_line
	| type_or_size			type_or_size			type_or_size
	| comment:
			|
			|
			|
ProjectX.Table distribute map as follow:

[table].Version					服务器DB版本标志
	| Version	+	Name	+	Description		+	LastUpdateDate
	| MAX_DBVERSION_LEN	+ MAX_DBNAME_LEN + MAX_DBDESCRIPTION_LEN	+ sizeof(time)
	| comment:
			|Version		:服务器DB当前版本,如1.00.0142
			|Name			:服务器DB名称,如"ProjectX DBES Name"
			|Description	:服务器DB描述,如"欢迎使用此DB side版本,未经过工业强度测试"
			|LastUpdateData	:服务器DB最后一次版本更新时间,具体实现为"X年X月X日X时X分X秒"或者"sizeof(int)"参考具体实现
			|此表为说明当前服务器DB side采用的DB版本,对游戏不产生实质影响,对developer有效
[table].Admin_info					服务器Admin信息
[table].Admin_account				服务器Admin帐户
[table].RemoutAdmin_info			远程DBES登陆账号信息
[table].RemoutAdmin_account			远程DBES登陆账号
[table].Account_login				玩家账号登陆预览
[table].Account_info				玩家账号详细信息
[table].Charge_history				玩家缴费历史记录
[table].Charge						玩家当前缴费情况
[table].Account_charlist			玩家账号角色列表
[table].Char_info_original			角色原始情况
[table].Char_info_login				角色登陆预览
[table].Char_info_particular		角色详细信息
[table].Char_info_skill				角色技能信息
[table].Char_info_task				角色任务信息
[table].War_Guid					角色战盟信息
[table].War_Guid_log				角色创建战盟记录
[table].Battleguid					角色血盟
[table].Battleguid_log				角色创建血盟记录
[table].AreaServer_info				区级服务器信息
[table].AreaServer_state			区级服务器当前状态
[table].ServerLevel_info			服级服务器信息
[table].ServerLevel_state			服级服务器当前状态
[table].LineServer_info				线级服务器信息	
[table].LineServer_state			线级服务器当前状态
[table].Warehouse_home				存放在城镇内的仓库道具
[table].Warehouse_body				存放在角色身上的道具
[table].Warehouse_bank				存放在某一银行的道具
[table].Stat						DB服务器方统计数据,谨附,用于为developer提供性能数据,暂不提供此功能
	   ...to be continued!
************************************************************************/




























#endif	//_DBES_DB_COMMENT_

⌨️ 快捷键说明

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