12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148 |
- <?php
- namespace loyalsoft;
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2019-12-05 19:36:42
- ////////////////////
- /**
- * 常量配置数据
- */
- class GameConfig {
- // <editor-fold defaultstate="collapsed" desc=" 基础代码 ">
- /**
- * 是否启用codegen
- */
- private static function isCG() {
- return defined('CodeGen_Enabled') && CodeGen_Enabled;
- }
- /**
- * @var bool 分区是否使用独立的常量配置数据
- */
- private static $useZoneId = false;
- /**
- * 追加分区列表字符串
- * @return string
- */
- private static function zoneid() {
- global $zoneid;
- return self::$useZoneId ? "-zone$zoneid" : "";
- }
- /**
- * 初始化指定变量, 非null的情况下直接跳出
- * 可能从文件中或者redis中获取原始数据对变量进行初始化
- * @param mixed $a 变量
- * @param string $modelName 用来初始化变量的资源名称
- * @param bool $isHash 数据是否采用hash结构(否:普通字符串)
- */
- static private function initValue(&$a, $modelName, $isHash = true) {
- $key = 'gamecfg-' . $modelName . self::zoneid();
- if (is_null($a)) {
- if (self::isCG()) {
- $a = include $key . '.php';
- } else {
- $a = $isHash ? gMem()->hgetall($key) : gMem()->get($key);
- }
- }
- return $a;
- }
- /**
- * 获取hash结构的一个item
- * @param string $modelName 模块名称
- * @param mixed/string/int $itemId 索引
- * @return mixed
- */
- private static function get_hash_item($modelName, $itemId) {
- if (self::isCG()) {
- $data = self::$modelName();
- if (property_exists($data, $itemId)) {
- return $data->$itemId;
- }
- } else {
- $key = 'gamecfg-' . $modelName . self::zoneid();
- return gMem()->hget($key, $itemId);
- }
- return null;
- }
- // </editor-fold>
- /**
- * 全局参数
- * @return \globalsettings
- */
- public static function globalsettings() {
- static $a = null;
- return self::initValue($a, 'globalsettings');
- }
- /**
- * 英雄模块
- * @return \hero
- */
- public static function hero() {
- static $a = null;
- return self::initValue($a, 'hero');
- }
- /**
- * @return \sm_hero hero item数据
- */
- public static function hero_getItem($itemid) {
- return self::get_hash_item('hero', $itemid);
- }
- /**
- * 英雄的升级(属性加成)
- * @return \heroextra_level
- */
- public static function heroextra_level() {
- static $a = null;
- return self::initValue($a, 'heroextra_level');
- }
- /**
- * @return \sm_heroextra_level heroextra_level item数据
- */
- public static function heroextra_level_getItem($heroId, $quality) {
- return self::get_hash_item('heroextra_level', $heroId)->$quality;
- }
- /**
- * 开服七天活动
- * @return \day7
- */
- public static function day7() {
- static $a = null;
- return self::initValue($a, 'day7');
- }
- /**
- * @return \sm_day7 day7 item数据
- */
- public static function day7_getItem($itemid) {
- return self::get_hash_item('day7', $itemid);
- }
- /**
- *
- * @return \item
- */
- public static function item() {
- static $a = null;
- return self::initValue($a, 'item');
- }
- /**
- * @return \sm_item item item数据
- */
- public static function item_getItem($itemid) {
- return self::get_hash_item('item', $itemid);
- }
- /**
- *
- * @return \itemlevel
- */
- public static function itemlevel() {
- static $a = null;
- return self::initValue($a, 'itemlevel');
- }
- /**
- * @return \sm_itemlevel itemlevel item数据
- */
- public static function itemlevel_getItem($itemid) {
- return self::get_hash_item('itemlevel', $itemid);
- }
- /**
- * 英雄的好感度提升(消耗金币)
- * @return \heroextra_favor
- */
- public static function heroextra_favor() {
- static $a = null;
- return self::initValue($a, 'heroextra_favor');
- }
- /**
- * @return \sm_heroextra_favor heroextra_favor item数据
- */
- public static function heroextra_favor_getItem($itemid) {
- return self::get_hash_item('heroextra_favor', $itemid);
- }
- /**
- * 英雄的升级——每级成长消耗经验需求表
- * @return \hero_levelexp
- */
- public static function hero_levelexp() {
- static $a = null;
- return self::initValue($a, 'hero_levelexp');
- }
- /**
- * @return \sm_hero_levelexp hero_levelexp item数据
- */
- public static function hero_levelexp_getItem($itemid) {
- return self::get_hash_item('hero_levelexp', $itemid);
- }
- /**
- * 英雄的升星(消耗金币+ 属性加成)
- * @return \heroextra_star
- */
- public static function heroextra_star() {
- static $a = null;
- return self::initValue($a, 'heroextra_star');
- }
- /**
- * @return \sm_heroextra_star heroextra_star item数据
- */
- public static function heroextra_star_getItem($itemid) {
- return self::get_hash_item('heroextra_star', $itemid);
- }
- /**
- * 英雄的升阶(消耗金币+ 属性加成)
- * @return \heroextra_dengjie
- */
- public static function heroextra_dengjie() {
- static $a = null;
- return self::initValue($a, 'heroextra_dengjie');
- }
- /**
- * @return \sm_heroextra_dengjie heroextra_dengjie item数据
- */
- public static function heroextra_dengjie_getItem($itemid) {
- return self::get_hash_item('heroextra_dengjie', $itemid);
- }
- /**
- * 关卡
- * @return \gate
- */
- public static function gate() {
- static $a = null;
- return self::initValue($a, 'gate');
- }
- /**
- * @return \sm_gate gate item数据
- */
- public static function gate_getItem($itemid) {
- return self::get_hash_item('gate', $itemid);
- }
- /**
- * 关卡波茨数据
- * @return \gatelevel
- */
- public static function gatelevel() {
- static $a = null;
- return self::initValue($a, 'gatelevel');
- }
- /**
- * @return \sm_gatelevel gatelevel item数据
- */
- public static function gatelevel_getItem($itemid) {
- return self::get_hash_item('gatelevel', $itemid);
- }
- /**
- * 关卡—— 星级奖励
- * @return \gate_starreward
- */
- public static function gate_starreward() {
- static $a = null;
- return self::initValue($a, 'gate_starreward');
- }
- /**
- * @return \sm_gate_starreward gate_starreward item数据
- */
- public static function gate_starreward_getItem($itemid) {
- return self::get_hash_item('gate_starreward', $itemid);
- }
- /**
- * 任务
- * @return \task
- */
- public static function task() {
- static $a = null;
- return self::initValue($a, 'task');
- }
- /**
- * @return \sm_task task item数据
- */
- public static function task_getItem($itemid) {
- return self::get_hash_item('task', $itemid);
- }
- /**
- *
- * @return \playerlevel
- */
- public static function playerlevel() {
- static $a = null;
- return self::initValue($a, 'playerlevel');
- }
- /**
- * @return \sm_playerlevel playerlevel item数据
- */
- public static function playerlevel_getItem($itemid) {
- return self::get_hash_item('playerlevel', $itemid);
- }
- /**
- * 技能升级消耗金币
- * @return \skill_upgrade_cost
- */
- public static function skill_upgrade_cost() {
- static $a = null;
- return self::initValue($a, 'skill_upgrade_cost');
- }
- /**
- * @return \sm_skill_upgrade_cost skill_upgrade_cost item数据
- */
- public static function skill_upgrade_cost_getItem($itemid) {
- return self::get_hash_item('skill_upgrade_cost', $itemid);
- }
- /**
- * 商城
- * @return \shop
- */
- public static function shop() {
- static $a = null;
- return self::initValue($a, 'shop');
- }
- /**
- * @return \sm_shop shop item数据
- */
- public static function shop_getItem($itemid) {
- return self::get_hash_item('shop', $itemid);
- }
- /**
- * 停服计划
- * @return \service_schedule
- */
- public static function service_schedule() {
- static $a = null;
- return self::initValue($a, 'service_schedule');
- }
- /**
- * @return \sm_service_schedule service_schedule item数据
- */
- public static function service_schedule_getItem($itemid) {
- return self::get_hash_item('service_schedule', $itemid);
- }
- /**
- * 抽奖数据
- * @return \choujiang
- */
- public static function choujiang() {
- static $a = null;
- return self::initValue($a, 'choujiang');
- }
- /**
- * @return \sm_choujiang choujiang item数据
- */
- public static function choujiang_getItem($itemid) {
- return self::get_hash_item('choujiang', $itemid);
- }
- /**
- * 无穷无尽关卡模式
- * @return \gate_forever
- */
- public static function gate_forever() {
- static $a = null;
- return self::initValue($a, 'gate_forever');
- }
- /**
- * @return \sm_gate_forever gate_forever item数据
- */
- public static function gate_forever_getItem($itemid) {
- return self::get_hash_item('gate_forever', $itemid);
- }
- /**
- * 系统邮件
- * @return \sysmail
- */
- public static function sysmail() {
- static $a = null;
- return self::initValue($a, 'sysmail');
- }
- /**
- * @return \sm_sysmail sysmail item数据
- */
- public static function sysmail_getItem($itemid) {
- return self::get_hash_item('sysmail', $itemid);
- }
- /**
- * 关卡【副本】
- * @return \gate_carbon
- */
- public static function gate_carbon() {
- static $a = null;
- return self::initValue($a, 'gate_carbon');
- }
- /**
- * @return \sm_gate_carbon gate_carbon item数据
- */
- public static function gate_carbon_getItem($itemid) {
- return self::get_hash_item('gate_carbon', $itemid);
- }
- /**
- * pvp分段奖励
- * @return \pvp_leaguereward
- */
- public static function pvp_leaguereward() {
- static $a = null;
- return self::initValue($a, 'pvp_leaguereward');
- }
- /**
- * @return \sm_pvp_leaguereward pvp_leaguereward item数据
- */
- public static function pvp_leaguereward_getItem($itemid) {
- return self::get_hash_item('pvp_leaguereward', $itemid);
- }
- /**
- * pvp 百名榜单奖励
- * @return \pvp_rankreward
- */
- public static function pvp_rankreward() {
- static $a = null;
- return self::initValue($a, 'pvp_rankreward');
- }
- /**
- * @return \sm_pvp_rankreward pvp_rankreward item数据
- */
- public static function pvp_rankreward_getItem($itemid) {
- return self::get_hash_item('pvp_rankreward', $itemid);
- }
- /**
- * pvp_ 分数段
- * @return \pvp_leaguescore
- */
- public static function pvp_leaguescore() {
- static $a = null;
- return self::initValue($a, 'pvp_leaguescore');
- }
- /**
- * @return \sm_pvp_leaguescore pvp_leaguescore item数据
- */
- public static function pvp_leaguescore_getItem($itemid) {
- return self::get_hash_item('pvp_leaguescore', $itemid);
- }
- /**
- * 熔炼实验室
- * @return \smelting
- */
- public static function smelting() {
- static $a = null;
- return self::initValue($a, 'smelting');
- }
- /**
- * @return \sm_smelting smelting item数据
- */
- public static function smelting_getItem($itemid) {
- return self::get_hash_item('smelting', $itemid);
- }
- /**
- * 配置的关卡相关的战斗数据
- * @return \gate_combat
- */
- public static function gate_combat() {
- static $a = null;
- return self::initValue($a, 'gate_combat');
- }
- /**
- * @return \sm_gate_combat gate_combat item数据
- */
- public static function gate_combat_getItem($itemid) {
- return self::get_hash_item('gate_combat', $itemid);
- }
- /**
- *
- * @return \gate_carbon_content
- */
- public static function gate_carbon_content() {
- static $a = null;
- return self::initValue($a, 'gate_carbon_content');
- }
- /**
- * @return \sm_gate_carbon_content gate_carbon_content item数据
- */
- public static function gate_carbon_content_getItem($itemid) {
- return self::get_hash_item('gate_carbon_content', $itemid);
- }
- /**
- * pvp活跃奖励数据
- * @return \pvp_activityreward
- */
- public static function pvp_activityreward() {
- static $a = null;
- return self::initValue($a, 'pvp_activityreward');
- }
- /**
- * @return \sm_pvp_activityreward pvp_activityreward item数据
- */
- public static function pvp_activityreward_getItem($itemid) {
- return self::get_hash_item('pvp_activityreward', $itemid);
- }
- /**
- * 抽奖保底数据
- * @return \choujiang_baodi
- */
- public static function choujiang_baodi() {
- static $a = null;
- return self::initValue($a, 'choujiang_baodi');
- }
- /**
- * @return \sm_choujiang_baodi choujiang_baodi item数据
- */
- public static function choujiang_baodi_getItem($typeId, $cishu) {
- return self::get_hash_item('choujiang_baodi', "$typeId-$cishu");
- }
- /**
- * 英雄的升级——成长可消耗的道具表
- * @return \hero_levelexp_costitem
- */
- public static function hero_levelexp_costitem() {
- static $a = null;
- return self::initValue($a, 'hero_levelexp_costitem');
- }
- /**
- * @return \sm_hero_levelexp_costitem hero_levelexp_costitem item数据
- */
- public static function hero_levelexp_costitem_getItem($itemid) {
- return self::get_hash_item('hero_levelexp_costitem', $itemid);
- }
- /**
- * 抽奖设置数据
- * @return \choujiang_settings
- */
- public static function choujiang_settings() {
- static $a = null;
- return self::initValue($a, 'choujiang_settings');
- }
- /**
- * @return \sm_choujiang_settings choujiang_settings item数据
- */
- public static function choujiang_settings_getItem($itemid) {
- return self::get_hash_item('choujiang_settings', $itemid);
- }
- /**
- * 引导步骤
- * @return \guide_step
- */
- public static function guide_step() {
- static $a = null;
- return self::initValue($a, 'guide_step');
- }
- /**
- * @return \sm_guide_step guide_step item数据
- */
- public static function guide_step_getItem($itemid) {
- return self::get_hash_item('guide_step', $itemid);
- }
- /**
- * 引导触发
- * @return \guide_trigger
- */
- public static function guide_trigger() {
- static $a = null;
- return self::initValue($a, 'guide_trigger');
- }
- /**
- * @return \sm_guide_trigger guide_trigger item数据
- */
- public static function guide_trigger_getItem($itemid) {
- return self::get_hash_item('guide_trigger', $itemid);
- }
- /**
- * 成就任务
- * @return \task_achi
- */
- public static function task_achi() {
- static $a = null;
- return self::initValue($a, 'task_achi');
- }
- /**
- * @return \sm_task_achi task_achi item数据
- */
- public static function task_achi_getItem($itemid) {
- return self::get_hash_item('task_achi', $itemid);
- }
- /**
- * 宝箱
- * @return \box
- */
- public static function box() {
- static $a = null;
- return self::initValue($a, 'box');
- }
- /**
- * @return \sm_box box item数据
- */
- public static function box_getItem($itemid) {
- return self::get_hash_item('box', $itemid);
- }
- /**
- * 宝箱的奖池
- * @return \boxpool
- */
- public static function boxpool() {
- static $a = null;
- return self::initValue($a, 'boxpool');
- }
- /**
- * @return \sm_boxpool boxpool item数据
- */
- public static function boxpool_getItem($itemid) {
- return self::get_hash_item('boxpool', $itemid);
- }
- /**
- * 英雄————神血系统
- * @return \heroextra_godblood
- */
- public static function heroextra_godblood() {
- static $a = null;
- return self::initValue($a, 'heroextra_godblood');
- }
- /**
- * @return \sm_heroextra_godblood heroextra_godblood item数据
- */
- public static function heroextra_godblood_getItem($itemid) {
- return self::get_hash_item('heroextra_godblood', $itemid);
- }
- /**
- * 碎片
- * @return \segment
- */
- public static function segment() {
- static $a = null;
- return self::initValue($a, 'segment');
- }
- /**
- * @return \sm_segment segment item数据
- */
- public static function segment_getItem($itemid) {
- return self::get_hash_item('segment', $itemid);
- }
- /**
- *
- * @return \gate_world
- */
- public static function gate_world() {
- static $a = null;
- return self::initValue($a, 'gate_world');
- }
- /**
- * @return \sm_gate_world gate_world item数据
- */
- public static function gate_world_getItem($itemid) {
- return self::get_hash_item('gate_world', $itemid);
- }
- /**
- *
- * @return \gate_city
- */
- public static function gate_city() {
- static $a = null;
- return self::initValue($a, 'gate_city');
- }
- /**
- * @return \sm_gate_city gate_city item数据
- */
- public static function gate_city_getItem($itemid) {
- return self::get_hash_item('gate_city', $itemid);
- }
- /**
- * 神秘商城道具表-by goodstype
- * @return \secretshop_goodsType
- */
- public static function secretshop_goodsType() {
- static $a = null;
- return self::initValue($a, 'secretshop_goodsType');
- }
- /**
- * @return \sm_secretshop_goodsType secretshop_goodsType item数据
- */
- public static function secretshop_goodsType_getItem($itemid) {
- return self::get_hash_item('secretshop_goodsType', $itemid);
- }
- /**
- * 神秘商城刷新价格表
- * @return \secretshop_refresh
- */
- public static function secretshop_refresh() {
- static $a = null;
- return self::initValue($a, 'secretshop_refresh');
- }
- /**
- * @return \sm_secretshop_refresh secretshop_refresh item数据
- */
- public static function secretshop_refresh_getItem($itemid) {
- return self::get_hash_item('secretshop_refresh', $itemid);
- }
- /**
- * 神秘商城道具表-by typeId
- * @return \secretshop_typeId
- */
- public static function secretshop_typeId() {
- static $a = null;
- return self::initValue($a, 'secretshop_typeId');
- }
- /**
- * @return \sm_secretshop_typeId secretshop_typeId item数据
- */
- public static function secretshop_typeId_getItem($itemid) {
- return self::get_hash_item('secretshop_typeId', $itemid);
- }
- /**
- * 客户端版本信息
- * @return \clientVersionHistory
- */
- public static function clientVersionHistory() {
- static $a = null;
- return self::initValue($a, 'clientVersionHistory');
- }
- /**
- * @return \sm_clientVersionHistory clientVersionHistory item数据
- */
- public static function clientVersionHistory_getItem($itemid) {
- return self::get_hash_item('clientVersionHistory', $itemid);
- }
- /**
- * 分区列表
- * @return \zonelist
- */
- public static function zonelist() {
- static $a = null;
- return self::initValue($a, 'zonelist');
- }
- /**
- * @return \sm_zonelist zonelist item数据
- */
- public static function zonelist_getItem($itemid) {
- return self::get_hash_item('zonelist', $itemid);
- }
- /**
- * 兑换码礼包
- * @return \tokenGift
- */
- public static function tokenGift() {
- static $a = null;
- return self::initValue($a, 'tokenGift');
- }
- /**
- * @return \sm_tokenGift tokenGift item数据
- */
- public static function tokenGift_getItem($itemid) {
- return self::get_hash_item('tokenGift', $itemid);
- }
- /**
- * 活动配置
- * @return \activity
- */
- public static function activity() {
- static $a = null;
- return self::initValue($a, 'activity');
- }
- /**
- * @return \sm_activity activity item数据
- */
- public static function activity_getItem($itemid) {
- return self::get_hash_item('activity', $itemid);
- }
- /**
- * 碎片融合的概率表
- * @return \segment_ronghe
- */
- public static function segment_ronghe() {
- static $a = null;
- return self::initValue($a, 'segment_ronghe');
- }
- /**
- * @return \sm_segment_ronghe segment_ronghe item数据
- */
- public static function segment_ronghe_getItem($itemid) {
- return self::get_hash_item('segment_ronghe', $itemid);
- }
- /**
- * 碎片_按品质索引
- * @return \segment_byPinzhi
- */
- public static function segment_byPinzhi() {
- static $a = null;
- return self::initValue($a, 'segment_byPinzhi');
- }
- /**
- * @return \sm_segment_byPinzhi segment_byPinzhi item数据
- */
- public static function segment_byPinzhi_getItem($quailty, $itemType) {
- return self::get_hash_item('segment_byPinzhi', $quailty)->$itemType;
- }
- /**
- * 宝箱经验卡掉落数据
- * @return \boxJingYanCards
- */
- public static function boxJingYanCards() {
- static $a = null;
- return self::initValue($a, 'boxJingYanCards');
- }
- /**
- * @return \sm_boxJingYanCards boxJingYanCards item数据
- */
- public static function boxJingYanCards_getItem($itemid) {
- return self::get_hash_item('boxJingYanCards', $itemid);
- }
- /**
- * 活动: 在线礼包
- * @return \activity_onlinegift
- */
- public static function activity_onlinegift() {
- static $a = null;
- return self::initValue($a, 'activity_onlinegift');
- }
- /**
- * @return \sm_activity_onlinegift activity_onlinegift item数据
- */
- public static function activity_onlinegift_getItem($itemid) {
- return self::get_hash_item('activity_onlinegift', $itemid);
- }
- /**
- * GM号的UID
- * @return \GM_uids
- */
- public static function GM_uids() {
- static $a = null;
- return self::initValue($a, 'GM_uids');
- }
- /**
- * 活动, 全服注册礼包
- * @return \activity_reggift
- */
- public static function activity_reggift() {
- static $a = null;
- return self::initValue($a, 'activity_reggift');
- }
- /**
- * @return \sm_activity_reggift activity_reggift item数据
- */
- public static function activity_reggift_getItem($itemid) {
- return self::get_hash_item('activity_reggift', $itemid);
- }
- /**
- * 公会捐献卡牌奖励
- * @return \guilddonatereward
- */
- public static function guilddonatereward() {
- static $a = null;
- return self::initValue($a, 'guilddonatereward');
- }
- /**
- * @return \sm_guilddonatereward guilddonatereward item数据
- */
- public static function guilddonatereward_getItem($itemid) {
- return self::get_hash_item('guilddonatereward', $itemid);
- }
- /**
- * 公会等级相关数据
- * @return \guildlevel
- */
- public static function guildlevel() {
- static $a = null;
- return self::initValue($a, 'guildlevel');
- }
- /**
- * @return \sm_guildlevel guildlevel item数据
- */
- public static function guildlevel_getItem($itemid) {
- return self::get_hash_item('guildlevel', $itemid);
- }
- /**
- * 公会礼包
- * @return \guildlibao
- */
- public static function guildlibao() {
- static $a = null;
- return self::initValue($a, 'guildlibao');
- }
- /**
- * @return \sm_guildlibao guildlibao item数据
- */
- public static function guildlibao_getItem($itemid) {
- return self::get_hash_item('guildlibao', $itemid);
- }
- /**
- * 玩家初始化数据
- * @return \primordial_data
- */
- public static function primordial_data() {
- static $a = null;
- return self::initValue($a, 'primordial_data');
- }
- /**
- * 英雄技能升级的限定
- * @return \heroextra_skill_lv_limit
- */
- public static function heroextra_skill_lv_limit() {
- static $a = null;
- return self::initValue($a, 'heroextra_skill_lv_limit');
- }
- /**
- * @return \sm_heroextra_skill_lv_limit heroextra_skill_lv_limit item数据
- */
- public static function heroextra_skill_lv_limit_getItem($itemid) {
- return self::get_hash_item('heroextra_skill_lv_limit', $itemid);
- }
- /**
- * 武器类道具
- * @return \item_weapon
- */
- public static function item_weapon() {
- static $a = null;
- return self::initValue($a, 'item_weapon');
- }
- /**
- * @return \sm_item_weapon item_weapon item数据
- */
- public static function item_weapon_getItem($itemid) {
- return self::get_hash_item('item_weapon', $itemid);
- }
- /**
- * 礼包类道具
- * @return \item_package
- */
- public static function item_package() {
- static $a = null;
- return self::initValue($a, 'item_package');
- }
- /**
- * @return \sm_item_package item_package item数据
- */
- public static function item_package_getItem($itemid) {
- return self::get_hash_item('item_package', $itemid);
- }
- /**
- * 强化类道具
- * @return \item_stones
- */
- public static function item_stones() {
- static $a = null;
- return self::initValue($a, 'item_stones');
- }
- /**
- * @return \sm_item_stones item_stones item数据
- */
- public static function item_stones_getItem($itemid) {
- return self::get_hash_item('item_stones', $itemid);
- }
- /**
- * 药水类道具
- * @return \item_pills
- */
- public static function item_pills() {
- static $a = null;
- return self::initValue($a, 'item_pills');
- }
- /**
- * @return \sm_item_pills item_pills item数据
- */
- public static function item_pills_getItem($itemid) {
- return self::get_hash_item('item_pills', $itemid);
- }
- /**
- * buff类道具
- * @return \item_buffcard
- */
- public static function item_buffcard() {
- static $a = null;
- return self::initValue($a, 'item_buffcard');
- }
- /**
- * @return \sm_item_buffcard item_buffcard item数据
- */
- public static function item_buffcard_getItem($itemid) {
- return self::get_hash_item('item_buffcard', $itemid);
- }
- /**
- * 碎片类道具
- * @return \item_segment
- */
- public static function item_segment() {
- static $a = null;
- return self::initValue($a, 'item_segment');
- }
- /**
- * @return \sm_item_segment item_segment item数据
- */
- public static function item_segment_getItem($itemid) {
- return self::get_hash_item('item_segment', $itemid);
- }
- /**
- * 道具通用字段表
- * @return \item_base
- */
- public static function item_base() {
- static $a = null;
- return self::initValue($a, 'item_base');
- }
- /**
- * @return \sm_item_base item_base item数据
- */
- public static function item_base_getItem($itemid) {
- return self::get_hash_item('item_base', $itemid);
- }
- /**
- * 子技能表
- * @return \subSkill
- */
- public static function subSkill() {
- static $a = null;
- return self::initValue($a, 'subSkill');
- }
- /**
- * @return \sm_subSkill subSkill item数据
- */
- public static function subSkill_getItem($itemid) {
- return self::get_hash_item('subSkill', $itemid);
- }
- /**
- * 当前版本(时间戳)
- * @return \ver
- */
- public static function ver() {
- static $a = null;
- return self::initValue($a, 'ver', false);
- }
- /**
- * 客户端配置数据
- * @return \client
- */
- public static function client() {
- static $a = null;
- return self::initValue($a, 'client', false);
- }
- }
|